Browsing Visual Basic 6
Get the "Real" Hand Cursor
This small piece of code will set the cursor to the hand cursor that is shown when you hover above a hyperlink.
Translucent Windows - Simpler
Creates a translucent window.
Sweet! Rainbow Paint
It's like that ad for "rainbow art" or whatever.
Detecting if connected to LAN or WAN
One line of code will tell you if you are connected to LAN or WAN(Internet).
Create Dir (Folder)
this code creates folder with any number of subfolders beneath it.
Best Auto Complete
Creates an Autocomplete drop down boxOriginal Author: MorpheousAssumptions1 text boxCode'This program needs a textbox ('Text1') on a formPrivate Const SHACF_AUTOAPPEND_FORCE_OFF = &H80000000Private Const SHACF_AUTOAPPEND_FORCE_ON = &H40000000Private Const SHACF_AUTOSUGGEST_FORCE_OFF = &H20000000Private Const SHACF_AUTOSUGGEST_FORCE_ON = &H10000000Private Const SHACF_DEFAULT = &H0Private Const SHACF_FILESYSTEM = &H1Private Const SHACF_URLHISTORY = &H2Private Const SHACF_URLMRU = &H4Private Const SHACF_USETAB = &H8Private Const SHACF_URLALL = (SHACF_URLHISTORY Or SHACF_URLMRU)Private Declare Sub SHAutoComplete Lib "shlwapi.