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 28 of 54) 1607 Result(s) found 

 

StringFromBSTR - Convert a BSTR to a VB string
Total Hit (4313)
Rating
CopyURLToFile - Download a file from the Internet via FTP or HTTP
Total Hit (4810)
Rating
GetInsertKey - Get the current state of the Insert key
Total Hit (3274)
Rating
ShowPrinterProperties - Display printer's Properties dialog
Total Hit (8185)
Rating
ComboBoxExtendedMatching - Extended Matching mode for ComboBox controls
Total Hit (1631) «Code LangId=1»' Enable extended matching to any type combobox control ' ' Extended matching means that as soon as you type in the edit area ' of the ComboBox control, the routine searches for a partial match ' in the list area and highlights the characters left to be typed. ' ' To enable thi ....Read More
Rating
DuplicateComboBox - Fast copy of the contents of a ComboBox control
Total Hit (3149) «Code LangId=1» Private Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal _ hWnd As Long, ByVal wMsg As Long, ByVal wParam As Long, _ lParam As Any) As Long Private Declare Function LockWindowUpdate Lib "user32" (ByVal hwndLock As Long) _ As Long Const CB_R ....Read More
Rating
ReplicateString - Replicate a string a given number of times
Total Hit (2188) «Code LangId=1»' Replicate a string a given number of times Function ReplicateString(Source As String, Times As Long) As String Dim length As Long, index As Long ' Create the result buffer length = Len(Source) ReplicateString = Space$(length * Times) ' do the multiple co ....Read More
Rating
CheckUSState - Validate a US state initial
Total Hit (2621) «Code LangId=1»Public Function CheckUSState(ByVal State As String) As Boolean If Len(State) = 2 And InStr(",AL,AK,AZ,AR,CA,CO,CT,DE,DC,FL,GA,HI,ID,IL,IN,I" _ & "A,KS,KY,LA,ME,MD,MA,MI,MN,MS,MO,MT,NE,NV,NH,NJ,NM,NY,NC,ND,OH,OK,OR,P" _ & "A,RI,SC,SD,TN,TX,UT,VT,VA,WA,WV,WI,WY,", ....Read More
Rating
InstrTblRev - The last occurrence of a char in a table
Total Hit (1823) «Code LangId=1»' If INCLUDE is True or is omitted, return the last occurrence of a character ' in a group ' or zero if SOURCE doesn't contain any character among those listed in TABLE. ' If INCLUDE is False, return the last occurrence of the character in SOURCE ' that does not appear in TABLE. ....Read More
Rating
Display the "Shut down Windows" dialog
Total Hit (3266) To programmatically display the "Shut down Windows" standard dialog box you can use the SHShutDownDialog undocumented API function, whose declaration is: «Code LangId=1» Declare Function SHShutDownDialog Lib "shell32" Alias "#60" (ByVal lType As _ Long) As Long Its only argument can be ....Read More
Rating
Getting a pixel color
Total Hit (3857) The Point method returns the color value of a given pixel, but is rather slow because it has to convert its argument from twips (or whatever ScaleMode is currently active) to pixels, and also because its argument are treated as Single quantities, and must therefore converted. When you have to retrie ....Read More
Rating
A better beep
Total Hit (3943) If you aren't satisfied with the standard Beep command (who is?) you can use the Beep API function instead, that lets you control both the frequency (in Hertz) and the duration (in milliseconds) of the beep. Note that you need an aliased Declare to avoid a name conflict with the VB command: «Code ....Read More
Rating
Limit the length of the text in a TreeView node
Total Hit (4306) The TreeView control doesn't expose any property that lets you limit the amount of text users can type when editing a Node's label. However, you can do the trick with a couple of SendMessage API calls from within the BeforeLabelEdit event: with the TVM_GETEDITCONTROL message you retrieve the handle ....Read More
Rating
Quickly find which OptionButton is selected
Total Hit (1634) Often OptionButton controls are arranged in control arrays. To quickly find the index of the only selected OptionButton control you can use the following code: «Code LangId=1» ' assumes that the control array contains three OptionButton controls intSelected = Option(0).Value * 0 - Option(1).Va ....Read More
Rating
Show a custom caret
Total Hit (2571) VB gives you no control on the size of the text caret. At times it can be necessary to change its size, however, for example when you want to signal that the TextBox is in overwrite mode. Here's a routine that does the trick: «Code LangId=1» Private Declare Function GetFocus Lib "user32" () As ....Read More
Rating
Avoid append operations with the Replace function
Total Hit (2863) I find the Replace function very useful when I want to avoid too many append operations just to insert non-printable characters. For example, the following statement: «Code LangId=1» MsgBox "Disk not ready." & vbCr & vbCr & _ "Please check that the diskette is in the drive" & vbCr & _ ....Read More
Rating
Use ActiveControl to stop a loop
Total Hit (3026) Often your user interface includes fields whose contents mutually depends on other fields. A typical example is when you deal with conversions from one measurement unit to another. Let's say that you want to let your users enter a temperature either in Celsius or Fahrenheit degrees, so you provide t ....Read More
Rating
Working with Arc API (Arc, ArcTo, AngleArc)
Total Hit (4941) In this article we will explore 3 APIs (Arc, ArcTo and AngleArc). An arc is a portion or segment of an ellipse, meaning an arc is a non-complete ellipse. Because an arc must confirm to the shape of an ellipse, it is defined as it fits in a rectangle and can be illustrated as follows: «BR»«P Al ....Read More
Rating
How to format file/folder size into KB, MB or GB using StrFormatByteSize API
Total Hit (2637) Many functions (VB and API) return file/folder/drive size in bytes. To show this size user-friendly, you need to format it in KB, MB or GB. It's easy to do this with a simple math: 1KB = 1024 B, 1MB = 1024 KB etc. and many apps I've seen have a special function to perform this task. But there is a b ....Read More
Rating
How to retrive TCP Statistics for local machine using GetTcpStatistics API
Total Hit (3314) «b»Step-By-Step Example«/b» - Create a standard exe project - Add one timer and one listbox control on the form1 - Add the following code in form1 «code LangId=1»'user defined type required by GetTcpStatistics API call Private Type MIB_TCPSTATS dwRtoAlgorithm As Long '// timeout algor ....Read More
Rating
This is a link to a different site Mixing Assembly with VB for super fast operations
Total Hit (2677) This tutorial will guide you how to use assembly language with VB.
Rating
This is a link to a different site Connection strings for various OLEDB Data Providers
Total Hit (2633) OLE DB Providers for Active Directory Service, Advantage, AS/400 (from IBM), AS/400 and VSAM (from Microsoft), Commerce Server, DB2, DTS Packages, Exchange, Excel, Internet Publishing, Index Server, Microsoft Jet, Microsoft Project, MySQL, ODBC Databases, OLAP Services, Oracle (from Microsoft), Orac ....Read More
Rating
This is a link to a different site How to Show SubItem Icons in the ListView
Total Hit (792) In perhaps the strangest (and most useless) of extended example, this code adds to each subitem the same icon displayed as the main item icon. I have yet to determine how (or if) a subitem-specific icon can be shown instead of duplicating the main item icon, or frankly, why one would ever want this ....Read More
Rating
This is a link to a different site Determining if a Floppy Drive is Ready
Total Hit (1184) Visual Basic provides a few ways to test for the readiness of a removable drive both with intrinsic methods and with the assistance of the API. Each method has its advantages. Most developers are familiar with the first method around since VB1 - performing a simple Dir() against the drive, trappin ....Read More
Rating
This is a link to a different site ListView Demo 2 - Populating the ListView
Total Hit (1593) This page details the code required to populate the listview control with files matching the selected file spec using the APIs FindFirstFile, FindNextFile and the WIN32_FIND_DATA type. When the demo is completed, the final app will retrieve the users selection and populate the listview with selec ....Read More
Rating
This is a link to a different site Enumerating Windows Fonts - Callback vs. VB
Total Hit (1320) Enumerating Windows Fonts - Callback vs. VB
Rating
This is a link to a different site Moving, Clicking and Tracking the MousePointer in Code
Total Hit (2650) VB doesn't provide any way to determine where the mouse is regardless of which control its over. Neither does it allow you to move the cursor or emulate mouse clicks on objects. This tip provides a simple class which uses API functions to add this functionality. ....Read More
Rating
This is a link to a different site How to Shutdown the System in Windows 9x and NT
Total Hit (2790) This tip demonstrates how to shutdown, logoff and/or reboot a system. Shutting down a Windows 9x system is very straightforward - just one API call to ExitWindowsEx is all that is required. However, under NT it is a little more tricky. By default, no application processes under Windows NT have the p ....Read More
Rating
This is a link to a different site Softening, Blurring, Sharpening and Embossing images
Total Hit (1992) Describes the fundamental concepts behind producing many of the standard image processing operations: softening, blurring, sharpening and embossing images.
Rating
This is a link to a different site vbAccelerator CommandBar Control
Total Hit (1979) The vbAccelerator CommandBar control is a full toolbar/menu control which currently offers configurable styles, colours and a full-object model for configuring the buttons and menus. The control can draw in Office 2003, Office XP, MS Money and System styles, supports icons with alpha-channels and ru ....Read More
Rating


(Page 28 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.