Category Archives: Visual Basic 6 (VB6)

A Drawer : All about the paint program codes!

You can get many kinds of codes about paint applications like pencil tool, line,eraser, picker, gradation, open files, and more. You can configure options. And more!You can also get filters! Enjoy it! Original Author: Jongmin Baek Attachments File Uploaded Size CODE_UPLOAD1327.zip 9/3/2020 3:45:00 PM 49264

A 3D rotation program

The purpose of this code is show how 3D graphics work. This program shows how to do 3D rotations, Backface removal, and shading. Original Author: Tim Talma Attachments File Uploaded Size CODE_UPLOAD1333.zip 9/3/2020 3:45:00 PM 7711

Dragging a form by a control

This code is reusable and small enough to paste into whatever you’re doing and instantly have a form that has no need for a title bar. Original Author: VB Pro API Declarations In the general declarations section, insert these lines: Declare Sub ReleaseCapture Lib “User” ()Declare Function SendMessage _Lib “User” (ByVal hWnd As Integer, _ByVal wMsg As Integer, _ByVal… Read More »

Converting long file names

VB4’s commands for dealing with file names (such as KILL, MKDIR, and FILECOPY) support long file names without programmer interaction. A number of the Win95 API functions will return only the short name, and you’ll notice a number of short file name entries if you’re digging through the registration database. Therefore, occasionally you’ll need to convert a short… Read More »

Cool screen wipes

You can achieve some cool form wipes with judicious use of the Move method. For example, to draw a curtain from right to left use this routine. It is also possible to wipe a form from bottom to top, and from both sides to the middle, using similar routines Original Author: VB Pro Code Sub WipeRight (Lt%, Tp%, frm… Read More »

AutoCompleter – Class Module

This code allows you to have an autocomplete function on any text boxes by creating an instance of the class module below and setting a text control on a form to is CompleteTextbox property. Ideal for those situations when you have multiple autocompletes. (Visual Basic 6 Only – Can easily be modified for 5.0 users) Original Author: dmbbob Inputs… Read More »

Docking Windows in an MDI Environment

This code enables you to have an MDI Child form “dock” with the MDI form like the toolbar found in the VB5/6 IDE and in various other applications. It can dock to any of the four sides of the form. Currently only support for one toolbar is there (i.e. the toolbar in VB as opposed to the project… Read More »

Avoiding use of null

How do you avoid the “Invalid use of null” error when reading null values from a database?If you try to retrieve a null value (empty field) from a database, you will get the error: “Invalid use of Null”. Here is one way to get around this problem: .. Original Author: VB FAQ Code TextBox.Text = MyTest.Fields(“TestFld”) & “”

A Super Easy Delay Timer

A delay timer so easy, this paragraph is longer. I had to submit this easy code because it is not on this website. Uses no API, and it is very handy!! Original Author: Patrick K. Bigley Assumptions Make a form with a command button ont it. Paste the code into the command button. This sample has a 3 second… Read More »

Sounds

Here is what I did to make my PC speaker beepat the frequency and length of time I want,using hardware direct control.It works fine in Win95 and Win98. Not in WinNT. Original Author: Jorge Loubet Assumptions Read comments of Win95IO.dll from SoftCircuits API Declarations In code, as private declarations Code ‘*****************************************************************’  October 17 1999- By Jorge Loubet’  jorgeloubet@yahoo.com’  Durango, Dgo. Mexico.’  Hola amigos… Read More »