Sample Code 
-
This function takes one color type variable and returns the hex code in a string.. 
-
This function is used for VB.Net developers. It is useful for Date validate when the date format is "dd/MM/yyyy" or "dd/MMM/yyyy". Time validation is also useful for Validating the given time in the format of "HH:mm:ss"
. 
-
This coding is useful for VB Developer who are interesting to create Dynamic menu.
Steps:
Add form - Name - frmMain
Image List - Name - imglstImages
Label - Name - lblLabel
Class- mcPopupMenu. 
-
A small function to convert decimal integer values to a binary string.
The number of bits can be optionally specified but this will be increased if insufficient.. 
-
A VB6 version of Jon Person's .NET NMEA Interpreter Class as referenced in
'How to Write a GPS Application'.
GPStest.zip contains the class and a simple project demonstrating implementation.. 
-
This code snippet demonstrates how to open, read and write to excel files. The concept is very simple. Totally aimed at beginners and well commented!. 
-
This is a simple piece of code to add continuously "disappearing" effect on your forms.. 
-
I hereby submit Messenger client side Coding . This is very useful for Beginners who are going to develop Messenger in VB. In this coding also i was using WinSock control. Datas are transfer between RemotPort.. 
-
This code uses API calls to Hide/Unhide icons on the desktop. This code uses FindWindowEx & ShowWindow API Calls to do the job.. 
-
What do you do when you want to work with numbers that have a total length of digits that reach into the billions? You sure can't store those in a conventional variable, or perform normal operations on them. This module demonstrates how to perform these.. 
-
Adding the horizontal scroll bar to a list box dynamically taking into account its font (using the IFont interface) and the vertical scroll bar visibility (by analyzing the WS_VSCROLL flag of the listbox styles). 
-
This source code will show you how to list all the computers on your local network. 
-
Demonstrates how to send & receive emails from a POP3 server using the Winsock control.. 
-
This short snippet of code will return the parent directory of a directory input, or the directory of a filename input.. 
-
This code will save the treeview node when click add region/branch in Access format. When run the program the treeview will load the Access file.. 
-
Simple snippet of code to compact and repair any MS Access database.. 
-
ADO class containing useful functions - counting records, creating database from scratch, openning/closing database, filling listbox/combo box with an sql statements, manipulating records....and much more.. 
-
How to obtain the binary string for the ASCII code of a character.. 
-
Demonstrates how to make a form in VB transparent.. 
-
Discusses some unexpected implications of using the 'On Error Resume Next' statement in Visual Basic applications.. 
-
Demonstrates some VB code to register your application to automatically startup (in the registry).. 
-
Too all you newbies out there, This is something I wrote for a friend of mine, teaching how to use the basic extraction-from-db utilities. It shows how you can link an Access database using the ADODC Component. It includes thorough explanations and examples.
It really is teaching the basics of ADODC components - nothing fancy - I just remembered my own time as a beginner, trying to search for new ways to learn. I hope it will help you :)
~moo. 
-
Converts an Integer up to 65535 to a String of Binary digits. . 
-
This function will check whether a printer is connected/installed the system. 
-
The problem with Win32 tooltips is that you can attach it only to a control that provides the hwnd property returning the Win32 handle of the control. The following trick allows you to create real Windows tooltips for VB intrinsic controls which do not have this property.. 
-
Add Quick MP3 Audio Functionality to your Programs - A tutorial on adding MP3 audio, without the use of the Windows Media Component. Uses MCI, so users of the Multimedia Control should have an idea of what to expect. . 
-
This code will search a folder and all sub folders for a specified file or filter.. 
-
This code will allow you get the free disk space on a drive which is over 2 Gb in size.. 
-
VB's built in round function will round numbers like 12.085 down to 12.08. This is not correct in all cases as this number should be rounded up to 12.09. This round function allows for this.. 
-
How to load an M3U playlist for use in a media/music program.. 
-
Uses the mciSendString API to play media files via the MCI.. 
-
With this code you can highlight VB code. keywords, sub names, and function names are included as well as comments.. 
-
This fairly short piece of code allows the program to check whether a trial period of any length has expired, notifying the user how many days are left. The user is given the option to register the program or just not use it any more. It uses the VB registry setting functions. Encryption can be added when saving to the registry so that almost nobody at all can use the program for longer than the trial period.. 
-
This program tests your ability to react with the mouse to graphical information displayed on the screen e.g. on a game.. 
-
This code can send simple text emails easily. It uses MAPI controls to send an email.. 
-
That is some simple code to detect whether a particular .exe is running.. 
-
To create tooltip for list-view items, the code checks the item under the mouse pointer in the MouseMove event of the control. It uses for this purpose the LVM_HITTEST message that returns the index of the item at the specified position. The message is sent using the SendMessage API function. The lParam parameter of the function contains the reference to the LVHITTESTINFO structure; you must fill in the pt field of this structure with the coordinates of the mouse pointer before you invoke SendMe. 
-
This source code shows how to check if a Dynamic-Link-Library (DLL) is registered and ready for use on your system via windows API.. 
-
If you are familiar with Java programming then you would probably know that one has to code in some text editor and then use Command Prompt to compile and run them by using the same old commands. Now that is indeed very annoying and of course there are many editor which allow you to compile and show the output of your code right there and then. Here I am going to show you how you can do this in Visual Basic. The program will ask for JDK Path and the Path of your code.
. 
-
Ever wanted to register a COM Component programatically but didnt quite like shelling to regsvr32.exe? This snippet is your new best friend, it will allow you to register and unregister any COM component:D. 
-
This short example illustrates the sending of email using Collaboration Data Objects.. 
-
Ever wanted to have your program in the explorer popup menu? Here's a sample application to help you.. 
-
How to check that a string is a properly formatted email address.. 
-
This code shows you how to create a table and it's indexes in a database at run time.. 
-
A beginners code to learn how to create a new key for your app in HKEY_LOCAL_MACHINE like "the real programmers" do, and not using VB's rather lame option.. 
-
How to convert a HTML colour code to a RGB format.. 
-
A simple function to convert Binary numbers to Decimal numbers.. 
-
This program takes in a name for the control, properties of the control and type of control, and displays the control to the screen. Shows how to create controls at runtime. . 
-
These groups of Procedures will allow you to Open Databases, Run SQL Statements, as Well as Execute Stored Procedures without hassle.... 
-
This will allow you to create a Virtual Drive on your computer, making a particular folder appear with its own drive letter.. 
-
Demonstrates using the Windows Media Player control to create an MP3 player including theme generation, volume control, and random selection of songs.. 
-
This is an ExceptionHandler, what is an Exceptionhandler? Once the wExceptionHandler is installed it will allow you to catch and trap those errors that Windows will throw at your application (Eg. Access_Violation) Which doesnt get treated by the Visual Basic Error handler, making your application bullet proof!. 
-
Automatically create nested folders using this simple procedure. 
-
This is a simple color converter, Using a textbox control to display the color, three text boxes for Red, Green and Blue values, also 3 sliders if the exact rgb color is not known. 
-
Prevent Multiple Instances of a 32-bit VB Application. 
-
A generic implementation of the infamous quick sort algorithm.
Uses a simple callback mechanism allowing any data type inculding UDT's and objects to be sorted quickly and efficiently.. 
-
Here are some examples of sorting algorithms in Visual Basic. It includes the Quick Sort, the Selection Sort, and the Bubble Sort. Bonus code is included for using the Quicksort on a 2-dimensional array, sorting by one of the dimensions.. 
-
Two functions that allow the calculation of the colors between any given two colors. The color gradient can be customized.. 
-
In most setup programs you will see the form start as black at the bottom of the form and fade into a light blue at the top of the form. This code shows you how to do just that, with any colour you want!. 
-
A sample program to teach how to add an icon to a menu item. It will show you how to add an icon beside the Save, New, Open, etc. in a menu bar.. 
-
How to detect when a Listview's subitem has been clicked.. 
-
You know how some programs (like when Windows copies a file) the filename is too long, so Windows shortens it to "C:\Wind...\help.txt"; well, this is how to do it.. 
-
Do you want to create your own title bar for forms in your VB application? Here's how.. 
-
An example for using RegisterHotKey and Keybd_event...
And a nice utility to help you use cheats on games!. 
-
This is simple code that can load, convert and save any picture. It will take any colour bmp and convert it to a black & white picture. This can be used for creating old-fashioned photos from modern full colour ones.. 
-
This code will show you how to use forms in multi instances, meaning you can create many instances of a control at runtime but yet only need create the form once at design.. 
-
This is an addition to my collection of the Windows Inet DLL functions. Shows how to Auto-Dial without the user having to insert usernames and passwords. All Automated!. 
-
This is a program that can draw any 3D wireframe object that you can simply make using the functions in the code. You can rotate the 3D shape around one axis or the program can rotate the shape automatically.. 
-
This browser doesn't use anything but a picture box and a winsock control.
. 
-
Transfer a file over a network with this activeX ocx control. Use this control instead of winsock, and call the upload or download subroutine, its that simple!. 
-
Shows how to create "talking pop ups" by using resource files.
----Full Code Included---. 
-
-How to ..... bitmaps,icons,dialogboxes,Menues..etc..from Executeables or Res files... 
-
This code will enable your software to create a file/folder shortcut (*.lnk file) using Visual Basic and the Windows Script Host Runtime Library. 
-
This code Checks for newer version of your app using ms agent & inet control. 
-
Find where two lines intersect just by giving this function two X and Y coordinates on the two lines.. 
-
Class module implementing a buffer of characters with useful features.
May contain up to 2^31 characters, with size control, full/partial push,
overrun/underrun events and auto-pop.. 
-
This form will help a programmer to maintain version control text files for their projects.
A programmer-defined command line argument allows programmer to change file
directly within the developed program.
. 
-
Shows how to make flat a flat textbox, form, or anything else with a .hwnd property.. 
-
This is a VERY basic example for the absolute beginner out there...
Best update this as I found the copyright data for it...
. 
-
Simple code to reverse the characters in a string. 
-
Replace the First Character to UCase. 
-
A simple color picker and pick-color-by-pixel tool for designers needing RGB or HEX color codes. Now updated to version 3.0. 
-
Easy way to add lots of events to the webbrowser control. 
-
A small uninstaller example I made for windows!
It detects installed programs and let you uninstall them.. 
-
Ever wanted to have an instance of Excel appear inside yout MDI app? Here you go. 
-
Simple web server with limited Perl script support for VB6. 
-
How to get a file/folder list. 
-
This will sort a treeview nodes children in reverse order (Z-A). 
-
I have used two Picture Boxes and two Timers in this source.
The purpose of the code is to display how to use the mouse to draw in a picture box, and at the same time display a movie effect in the second picture box as if you where in fact drawing in this instead.
Not only that but you can also see the rewind effect (available as on a VCR) on the second Picture box.
Here follows a brief description of what it does.
1st Draw any picture you’d line using your mouse over the firs. 
-
This is how to read the children nodes of a treeview. 
-
How to install ODBC connections remotely using the Registry API, connect to a network machine, and install users System DSN's without having to travel around sites.. 
-
A Simple VB Game.. 
-
The faster and optimized version of loading fonts into your Comboboxes... forget Screen.FontCount and Printer.FontCount, use this API function and you will notice not only its fast as hell(about 98% faster) but its more efficient too!. 
-
This is a conversion tool which will convert a existing text file to a html file. Presently made conversion can be viewed as a html file side by side.
Way to navigate::
Though a guided voice will help you through the navigation, but I would like to give the clear instruction.
1st choose the directory
2nd choose the file
3rd click the Open button
4th select word(s), line(s) from the text
5th select tag like "Bold","Italics" etc from combo box
6th click Change button to put html tag in. 
-
How to load very large files in chunks... 
-
how to create a key, ie. in the Form_load statement of a form so your app starts with windows every time the user reboots the machine.. 
-
I'm working on a real keylogger, and I was researching how to do them, and after a bit of thinking I came up with this code... . 
-
A simple way to closing an application unnoticed if you know the WHOLE caption and it's correct spelling.. 
-
How to use the windows net send command from a Visual Basic program.. 
-
These two routines will scan a path and add files/folders to a treeview control.
It will also scan subfolders.. 
-
Scrolling/Bouncing Text. 
-
Get the number of seconds the system has been idle for and the last idle time. Includes sample code + full source! Very small file only 24k!!! Let me know what you think: jbajada@yahoo.com. 
-
You can replace text at runtime using the replace function.. 
-
Xplayer Control was mainly done to replace mediaplayer.ocx. This does almost all the work done by the mediaplayer (at least this was the intention with it). . 
-
Some simple code for multiple undo/redo in Text boxes. 
-
pwManager application decodes SNMP trap information. Use pwManager to decode Trap information from SNMP Agents from multiple hosts.. 
-
Select a colour using the Common Dialog control, and automatically convert it to the HTML hex code. 
-
Make a picture in a picturebox appear when viewed with red filter glasses.. 
-
Sample code on how to detect if a column header is being clicked, and respond to that action.. 
-
Winzips description to how to use VB with Winzip from the command line. 
-
Remove invalid UUE headers to make them readable by WinZIP and other UUE parsing applications.. 
-
How to play GIF files without using any 3rd party controls. 
-
How to pause the code within an event/procedure whilst keeping your application and other controls responsive.. 
-
A neat little function to fully justify text when printing. 
-
Put Windows XP-style controls in your own VB application!. 
-
SyncDir Class - to synchronise files in two directories. A class module (source) that provides a way of synchronizing files in two folders and optionally their subfolders with matching names.. 
-
Example of using MSFlexGrid control instead of list box, to allow formatting of lines of text in the list.. 
-
How to start a program such as the calculator, and then end it at the command of the user from your own Visual Basic program.. 
-
This neat ready-to-use code lets you build relative references to files (like the ones used in HTML pages).. 
-
Frustrated with the label control's inability to wrap text? Use this bit of code and worry no more.... 
-
How to print documents using the WebBrowser control. 
-
Sample code for a colour picker, and calculating the HTML (Hex) code for the colour. 
-
Print all the Table names and their respective Column names in whatever database you choose. 
-
How to read various Values from the Registry. 
-
This code creates a folder by giving it the folder's full path. It checks all parent folder(s), and creates them if they don't exists using recursion. Very useful for Setup programs.. 
-
Create your own Web Robot that searches the net your way. Enter the keywords and the relevance level and the bot will do rest of the job.. 
-
A simple piece of code that can capture live video from a web cam.. 
-
In response to a many VB programmers wanting a better alternative to using resource files to store theirbmps,wavs, etc. . 
-
Smoothly rotate colours in a Picture Box. 
-
Sample code to make a console mode application. 
-
An example was to demonstrate how to get the HTML that is the basis behind AOL's RICHCNTL via the Windows clipboard.. 
-
4 array functions search, append, remove, and dimensions. 
-
This example turns the duration information of the Windows Media Player (in seconds) into minutes and seconds. 
-
Tired of the same old square Frame? This short code creates a frame with rounded corners to make your application unique. 
-
This example shows you how to add all the fonts on your system to a treeview control.. 
-
Last submission I showed you how to connect to your EU's ISP or DUN, now this bit of code will show you how to detect an active connection using the WinInet API.. 
-
This piece of code will allow you to let the EU[End User] connect to their ISP within your application and return a Boolean value to say if its connected or not..... 
-
How to print a web page from the WebBrowser control. 
-
Use the tag properties of the MDI Child form and a control on the form to store a saved and changed ('dirty') status.. 
-
How to retrieve the Hostname and IP Address of your computer using Windows API.. 
-
Make component persistable by storing the information in property bags.. 
-
Automatically login to the MSN Messenger Application. 
-
This project will show you how to create reports in VB using the data report utility, this utility is very easy to use and it only takes minutes to create flexible reports using this utility.. 
-
Send instant messages to your main server (WMS application) using winsock. 
-
This is a short application showing you how to create a small telephony application.. 
-
How to search the registry for your ComputerName. 
-
Encryption by multiplying matrixes. 
-
How to change the order of items in an array from ascending order to descending order. 
-
How to add items to a List/Combo box without duplicating items. 
-
How to remove the selected items in a listbox. 
-
How to open an item in the Control Panel. 
-
How to program the office assistant. 
-
How to join two files together. 
-
This subroutine will generate a list of files and folders/subfolders without using Windows API. 
-
A quick and easy way to pass a Recordset to the ListView Control and format control's content using Data-Aware Classes.. 
-
How to add a horizontal scrollbar to a listbox. 
-
An example of how to sort an array in Visual Basic. 
-
A basic tutorial on how to make your programming faster and save space. Teaches the basic usage of modules and how they can help you, and some other useful info.. 
-
Get the current line, column, number of lines and first visible line in a RichTextBox. 
-
An alternative method for creating a shortcut in Visual Basic. 
-
A function to return the difference between two dates, in hh:mm format.. 
-
This simple project that retreives all the links in a html file. 
-
How to join/append two strings together in VB. 
-
How to retrieve file information such as file size, modified date, and its attributes in VB. 
-
A neat bit of code to load a file into a listbox, and then save it again.. 
-
Some sample code that searches & replaces text in a textbox or file. 
-
How to use the NOT boolean operator to easily toggle visibility.. 
-
Capitalizes the first characters of each word setting all the other to lowercase. 
-
The fast API way to add fonts to a listbox/combobox. 
-
Retreive the windows version, service pack and build number using this code. 
-
Use this simple code to compress strings by finding patterns. Decompression code is also included.. 
-
How to the values of environment variables such as the windows directory on NT systems. 
-
Resolve a host name to it's IP address, and an IP address to its host name with this re-usable class module. 
-
Grab this re-usable code for retrieving the computer name. 
-
How to count the number of lines in a multi-line textbox. 
-
How to work around the Tabbed Dialog control tab glitch when hosting ActiveX controls. 
-
Retrieving cursor information from a Rich Textbox control. 
-
Save and read conditional formatting as strings. 
-
How to open and close a CD-ROM, and create an icon in the system tray. 
-
How to declare Public numeric constants in a Visual Basic class module. 
-
This little routine will unload all the forms upon an application exit.. 
-
Add a control or class module that creates the ability to use Undo and Redo.. 
-
This little source code shows you how to print 3D text on a form.....Just a bit!. 
-
Strip all spaces from a string and concatenate them into one long string.. 
-
This code will change the font of the command button to bold when the mouse moves over it and it will become default when the mouse moves out.. 
-
This simple code shows you how to disable/enable the Ctrl+Alt+Del keys. 
-
This simple code will tell you if you are connected to the internet, and what method you use to connect.... 
-
This trick show you how to add display all the fonts, which you have installed on your system, in a combobox... 
-
Learn how to create a basic DVD player in VB.. 
-
Make two listboxes scroll together. 
-
This is a simple code that demostrates the usage of internet transfer control to retrieve HTML code from a web page.. 
-
This code will show you how to make all the system fonts appear in a list box, then preview them!. 
-
This Source code will show you how to make tips of the day.. 
-
Shorten a file location in a label with .... 
-
Many countries' international settings specify a space as the digit group separator. The problem with this is that in a multi-line text box the lines could be broken in the middle of a number, which . 
-
Thought this was impossible? Find out how with the AddressOf operator, and a bit of Windows API!. 
-
How to change the color of a progress bar (BarColor and BackColor).. 
-
Snarf the Gazette local news website, convert to iSilo format and install on Palm Pilot. It also creates a website on your hard drive, for off-line viewing. This exec32 script demonstrates how to use . 
-
VB myth #3: UBound() returns the number of items in an array. 
-
VB myth #2: Use MoveFirst before looping through ADO/DAO recordsets . 
-
VB myth #1: There's only one way to code numeric conditional expressions. 
-
How to display a VB form without know it's name at design time. 
-
How to transfer formatted Rich Textbox text into Microsoft Word. 
-
A tip for determining the size of a VB dynamic array. 
-
Create a screen that prevents users from using the PC, until they enter a valid password. 
-
How to add your applications icon to the system tray. 
-
Load data between two databases online. 
-
Add scrolling text to your application. 
-
Examples of a connectionless recordset. 
-
How to create an animated moon effect!. 
-
Shows you how to add another item to an application's system menu. 
-
Shows you how to start moving a form if it hasn't got a title bar. 
-
Find out how to create a custom shaped form!. 
-
A neat trick to allow you to use numeric keys in the ListView control. 
-
This code shows you how to launch a program and then wait until it is closed.. 
-
How to find out the registered owner, organisation, product id etc of windows from the registry. 
-
This code shows you how to display a popup menu in VB. 
-
A more efficient way to test whether an object supports a particular interface. 
-
Entering parameters into a DAO parameter query. 
-
How to launch a PC's default browser with ShellExecute API. 
-
An Object Orientated way to pass Visual Basic variable values to a form. 
-
How to decipher MP3 Tag information with Visual Basic. 
-
Make LBound() and UBound() even more efficient. 
-
Programmatically ferret out control arrays from regular controls. 
-
Using LBound() and UBound() when iterating Visual Basic arrays. 
-
With statement precedence in Visual Basic. 
-
How to 'Pause' your application using the Sleep API. 
-
Move files to the Recycle Bin with VB and Windows API. 
-
How to build a data-shaped SQL clause for VB. 
-
How to display UserControl property settings in the Property Window. 
-
How to compact and repair databases via ADO's JRO. 
-
How to avoid cascading UserControl Change() events. 
-
This code shows you how to display a background image in the ListView control.. 
-
How to use the AppActivate statement. 
-
How to create a Split function that converts delimited text to an array. 
-
Get to know the VBE's event objects. 
-
Let users add tab spaces in VB's Rich Textbox control. 
-
Monitor a notebook computer's battery information with SysInfo. 
-
How to create a splash page using the Flash plug-in. 
-
Public variables vs. Get and Let statements. 
-
Uncover internal DLL functions with Dependency Walker. 
-
Prevent multiple instances of your VB application. 
-
Manipulate Lotus Notes services and databases. 
-
How to detect when a UserControl gains and loses focus. 
-
How to compact and repair Access databases using DAO. 
-
Avoid variable type comparison glitches in textboxes. 
-
How to add and remove records using the Data Control. 
-
How to make the PC's internal speaker beep, even when there is a sound card installed.. 
-
How to automatically close a message box after a number of seconds.. 
-
How to add a custom item onto a programs system menu. 
-
How to display a HTML Help topic by specifying its context id. 
-
How to display a HTML Help topic by specifying its filename. 
-
How to shutdown, restart or log off the PC. 
-
How to start and then close an application using code. 
-
How to validate your text box, and only accept numbers in a text field. 
-
A better way to gather multi-selected VB ListBox items. 
-
How to create a directory tree like in Explorer. 
-
How to extract the icon from a file. 
-
How to produce an integrated file, folder and drive dialog box. 
-
How to disable the Ctrl+Alt+Del and Alt+Tab commands. 
-
How to get the disk capactiy and remaining free space. 
-
How to enable the user to drag and drop items between list boxes. 
-
A rudimentary encryption/decryption example. 
-
A simpe error handling example. 
-
How to retreive file attributes (hidden, system etc). 
-
An example calculator. 
-
How to prompt for a file to open, and load it into a textbox. 
-
How to prompt for a file to delete, and then delete it!. 
-
A (very) basic HTML editor!. 
-
Read and write to INI files using this module. 
-
A program demonstrating the ListView control. 
-
How to add margins to a textbox using SendMessage. 
-
How to set values in the hi-word and lo-word, and retreive them again. 
-
An example of a MDI (multi-document interface) program. 
-
How to create your own 'tutorial' to demonstate features in your application. 
-
How to provide status messages when the mouse is over menu items. 
-
How to prevent a form from being resized outside specified values. 
-
This demonstrates displaying some message boxes using MsgBox. 
-
How to avoid confusion when evaluating the VBE's code line counts.. 
-
An example network browser. 
-
How to display a popup menu. 
-
How to create your own progress bar control. 
-
How to loop through all the files and subfolders contained within a folder. 
-
How to send a file to the recycle bin. 
-
A visual basic module allowing you to convert a formatted RTF file to HTML!. 
-
How to capture a screen shot of a window or the desktop. 
-
How to create irregularly shaped forms!. 
-
A simple stop watch / clock program. 
-
An example of subclassing. 
-
How to create an Insert Symbols dialog. 
-
How to prevent phantom apps when using VB 6.0's DataReport. 
-
An example of using Polymorphism. 
-
How to use control arrays. 
-
How to determine if a font is truetype or not. 
-
How to give the Inet control the time it needs to execute commands. 
-
A quick way to empty the MSFlexGrid control. 
-
A simple example of exchanging data across a network using the WinSock control. 
-
A basic example on how to transfer files across the network using the WinSock Control. 
-
How to dial a telephone number using the MS Comm control. 
-
An example program using the MS Comm control. 
-
How to enumerate the windows using the EnumWindows API. 
-
An example program using the Toolbar control. 
-
How to evaluate string formulas in VB. 
-
Hide the mouse cursor in a Visual Basic application. 
-
Use VB's ADOX to determine if internal database objects exist. 
-
Display animated GIFs in VB using the WebBrowser Control. 
-
How to read Registry values in VB without complex API calls. 
-
How to refer to a DE Command's recordset in VB 6.0. 
-
A simple web browser built using the Web Browser control. 
-
Detect if you have an active connection to the internet. 
-
An example of a bound form using the ADO control. 
-
How to draw a fading background, like in many setup programs. 
-
A simple example of how to colour all HTML tags, leaving the text black!. 
-
How to show the Open, Save, Select Color and Print common dialogs.. 
-
An example using the Microsoft Coolbar Control. 
-
How to make a combo box automatically drop. 
-
Another example of how to colour HTML tags. 
-
How to count the number of lines in a text file. 
-
Evaluate mathematical expressions on-the-fly. 
-
A simple example of using the DataControl to browse a database. 
-
How create a mailto: email link, just like on a webpage. 
-
An example that shows how to display the "Browse for Folder" dialog, and how to retreive "special folder" paths. 
-
How to display the Browse for Folder dialog. 
-
Changes the screen resolution. 
-
How to clear the recent documents list. 
-
Restrict the movement of the mouse to a certain area. 
-
Allows you to copy files to the clipboard just like Explorer. 
-
How to ensure that the Inet control has all its data before parsing. 
-
How to use Preserve and the ReDim statement to resize arrays whilst preserving existing items. 
-
How to make the PC beep. 
-
How to change the drop height and width of a ComboBox. 
-
How to setup up WYSIWYG printing in a RichTextBox. 
-
How to create a shortcut to another file. 
-
How to add a file to the recent documents list.. 
-
How to disconnect from the Internet. 
-
How to loop through all the fonts on the computer and add them to a listbox. 
-
How to retreive a list of the running programs and their paths.. 
-
How to add pop-up menu support to the Rich Textbox control. 
-
How to find the paths of special folders such as My Documents and the Start Menu. 
-
How to add a hyperlink in your application. 
-
How to find out if a font is a TrueType font or not. 
-
How to load the contents of a file into a text box. 
-
How to add items to a combo box using the contents of a file. 
-
How to save the items in a combo box to a file. 
-
An example of how to 'print' text onto a form.. 
-
How to generate random numbers using Randomize and Rnd.. 
-
How to save the text in a textbox to a file. 
-
How to display an Open dialog box, without using the Microsoft common dialog control!. 
-
How to display an Open and Save dialog box, without using the Microsoft common dialog control!. 
-
How to count the number of records in the Data Control. 
-
An example of how to detect if a sound card is installed on a PC.. 
-
How to prevent a form being closed by pressing the X button. 
-
How to enable items on a TreeView to be moved around using drop & drag. 
-
How to determine if the Caps Lock is on or off. 
-
How to determine the colour depth of the current screen (ie 256 colours, 16bit etc). 
-
How to determine the resolution of the current screen (ie 600x800). 
-
How to hide the mouse cursor. 
-
How to create a Hot Key for your application. 
-
A module containing the declarations you need for using HTML Help Files. 
-
A neat module that lets you read and write INI files. 
-
How to simulate keyboard events. 
-
How to determine whether the system is using Large Fonts or Small Fonts. 
-
A Mouse Move module letting you simulate the user moving the mouse. 
-
How to create a mouse out event. 
-
How to open a file, url or email address with its default program. 
-
How to play a MIDI (sound) file.