Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
VB VB (1648)
VB.net VB.net (736)
C# C# (15)
ASP.net ASP.net (779)
ASP ASP (41)
VC++ VC++ (25)
PHP PHP (0)
JAVA JAVA (4)
JScript JScript (5)
  Database
» SQL Server (708)
» ORACLE (5)
» MySQL (0)
» DB2 (0)
Automation
» C/C++/ASM (11)
» Microcontroller (1)
» Circuit Design (0)
OS/Networking
» Networking (5)
» Unix/Linux (1)
» WinNT/2k/2003 (8)
Graphics
» Flash (0)
» Maya (0)
» 3D max (0)
» Photoshop (0)
Links
» ASP.net (2)
» PC Interfacing (1)
» Networking (4)
» SQL Server (4)
» VB (23)
» VB.net (4)
» VC (3)
» HTML/CSS/JavaScript (10)
Tools
» Regular Expr Tester
» Free Tools

(Page 19 of 54) 1607 Result(s) found 

 

Print a text in a specific position, if you don't indicate the x or y parameter the current position will be used
Total Hit (2378)
Rating
How to read data from Excel file
Total Hit (3625) Many times we have requirements to load data from CSV file, text file or Excel file... In this article I will show a sample code which reads a specified rows and columns from excel file. «code LangId=1»Private Sub Command1_Click() ImportExcelToSQL "c:\temp\diamond_upload.xls", 0, 20, True ....Read More
Rating
How to Add/Remove NT user account programatically
Total Hit (5506) This article will show you use of NetUserAdd and NetUserDel API to add/remove useraccount. Windows NT and Windows 2000 exposes LanMan 32-bit Application Programming Interfaces (APIs) to provide network services. These APIs are called only from 32-bit programs running on a Windows NT or Windows 20 ....Read More
Rating
Taking advantage of EFS (Encrypted File System) APIs in Win2K/XP
Total Hit (4926) The Encrypted File System, or EFS, was introduced in version 5 of NTFS to provide an additional level of security for files and directories. It provides cryptographic protection of individual files on NTFS volumes using a public-key system. Typically, the access control to file and directory objects ....Read More
Rating
Interprocess communication using DDE (Dynamic Data Exchange) - Part2
Total Hit (9866) In our previous article «b»«a href='CodeDetail.aspx?CodeId=3767'»Interprocess communication using DDE (Dynamic Data Exchange) - Part1«/a»«/b» of this this series we learned about basic concept of DDE and we also saw that how to implement DDE Server using DDEML Apis. Now in this article I will show y ....Read More
Rating
How To Use High-Level Access Control APIs from Visual Basic
Total Hit (4559) The Win32 API provides two sets of APIs for working with security descriptors (SDs) and access control lists (ACLs). Low-level as well as high-level access control API sets provide an interface for working with SDs and ACLs. For Microsoft Windows 2000 and MIcrosoft Windows XP, the high-level access ....Read More
Rating
Chart Web Component with Visual Basic
Total Hit (1923)
Rating
Find if a value exists in an Array
Total Hit (1781)
Rating
SetWallPaper - Change the desktop's wallpaper
Total Hit (2063)
Rating
IsConnectedToInternet - Check whether there is an Internet connection
Total Hit (3348)
Rating
URLEncode - Convert a string for using on a URL query string
Total Hit (3309)
Rating
HTMLDecodeEx - Decodes HTML encoded strings
Total Hit (2373)
Rating
GetAppFilename - Return the application's file name and path
Total Hit (2347)
Rating
MakePath - Create a nested directory
Total Hit (1835) «Code LangId=1»' create a nested directory ' ' it's similar to MkDir, but it also creates ' all intermediary sub-directories Sub MakePath(ByVal path As String) Dim i As Integer, ercode As Long On Error Resume Next Do ' get the next path chunk i = InStr(i ....Read More
Rating
GetAllExecutableFiles - The list of all executable files in a directory tree
Total Hit (2694) «Code LangId=1»' Returns a collection with the names of all the executable ' files in a directory or a directory tree ' this includes all "exe", "bat", "com", "pif" files ' ' NOTE: Uses the GetFiles, GetDirectories, and GetAllFiles routines Function GetAllExecutableFiles(ByVal path As String ....Read More
Rating
SplitMultiSeparators - Split variation that works with multiple separators
Total Hit (1907) «Code LangId=1»' a variation of the Split function that works with more than one separators ' note that separators can consists of 2 or more chars ' Example: ' Dim res() As String ' res() = SplitMultiSeparators("one,two(three four)five", " ", ",", "(", ")") Function SplitMultiSeparator ....Read More
Rating
Make COM objects in a COM+ application visible to clients
Total Hit (1731) What I describe for COM+, applies to MTS with some slight differences as well. Registering COM objects remotely has been quite a pain before MTS showed up (remember the VBR file?). In COM+ it's very easy to do: 1) Right click on the COM+ application and choose export Choose application proxy, ....Read More
Rating
Correctly restore mouse cursor
Total Hit (3317) When you write lengthy procedures, it is a good habit to change the mouse cursor to an hourglass, and restore it to the original shape when the procedure exits. However, this cursor tracking may be rather difficult when the procedure has multiple exit points, or when it can exit abruptly because of ....Read More
Rating
Play an AVI movie
Total Hit (5120) If you want to play an AVI movie from VB you can use MCI functions. The main MCI function is mciSendString, that sends command strings to the system and execute them: «Code LangId=1» Declare Function mciSendString Lib "winmm" Alias "mciSendStringA" (ByVal _ lpstrCommand As String, ByVal lps ....Read More
Rating
Incremental searches within list boxes
Total Hit (2531) The DBList and DBCombo controls expose a MatchEntry property, that - when set to True - permits to perform quick incremental searches by simply typing the searched sequence of characters. If MatchEntry is set to False, any time the user presses a key, the next item that begins with that character be ....Read More
Rating
Fixed-length strings allocate and deallocate faster
Total Hit (2693) Fixed-length strings are generally slower than conventional strings, because all VB string functions and operators only recognize conventional strings, thus all fixed-length strings must be transparently converted to and from conventional strings. However, arrays of fixed-length strings occupy a ....Read More
Rating
Write concise code with the IIf function
Total Hit (2137) Use IIf when setting a value based upon an expression. This works only in situations where you have two choices, based upon the result of a Boolean expression. «Code LangId=1» 'long way If Var1 > Var2 Then Var3 = Var1 / Var2 Else Var3 = Var2 / Var1 End If 'this is more concise Var ....Read More
Rating
This is a link to a different site Customizing the ListView's Appearance via API
Total Hit (1565) Once again, the SendMessage API, in conjunction with the new extended style flags for the ListView control, provides a means to customize the appearance of the listview common control in a Visual Basic application. By combining the new LVBKIMAGE structure (Type), and specifying the LVBKIF_SOURCE_U ....Read More
Rating
This is a link to a different site How to Add Checkboxes to a ListView
Total Hit (1246) This page demonstrates adding the ability to have checkmarks to the left of the item icon in report view. Under Win95 the check boxes are not not pretty. By setting a ListView extended style bit using the API SendMessage with the message LVS_EX_CHECKBOXES, the ListView rows will have a left-most ....Read More
Rating
This is a link to a different site Changing Colours of a VB ProgressBar
Total Hit (1378) Here's a quick SendMessage method to change the bar and / or backcolours of both a VB5 or VB6 progress bar, or an API-created progress bar. Note that on XP, using the 'Silver' theme, the default bar colour is grey, not the usual blue.
Rating
This is a link to a different site Detecting Windows Settings Changes
Total Hit (2398) This tip demonstrates how to detect windows settings changes in your application. You will need to have installed and registered the Subclassing and Timer Assistant (SSubTmr.DLL for VB5 and SSubTmr6.DLL for VB6), available from this site at Subclassing without the crashes to run this sample. ....Read More
Rating
This is a link to a different site AVI Creation
Total Hit (2551) One thing that's always been tricky with AVIs is the lack of suitable software to create them. This article provides VB classes allowing 8-bit and 24-bit AVIs to be created, using any available Codec on the system. The demonstration project uses these classes to provide a pretty comprehensive progra ....Read More
Rating
This is a link to a different site vbAccelerator TabStrip Control
Total Hit (1870) This control provides a fully functional implementation of the ComCtl32 TabStrip control. The control implements all the latest features, including support for Owner-Draw tabs, and is entirely coded in VB
Rating
This is a link to a different site Add Your App to the Systray the Easy Way
Total Hit (2540) This sample application presents a small form which you can drop into your project to get immediate SysTray support. A lot of the source code I've seen for VB SysTray interfaces has used an OCX or DLL and subclassed for a SysTray message, however, it turns out you don't need to do this, because you ....Read More
Rating
This is a link to a different site Storing and Showing HTML Resources in a VB Application
Total Hit (1575) Since Internet Explorer 4, it is has been possible to display HTML directly from application resources using the res:// protocol. This article demonstrates how to embed HTML files and images into your application resources to use this function and encapsulate HTML files. ....Read More
Rating


(Page 19 of 54) 1607 Result(s) found  1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 ...

Recommanded Links

 

Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.