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

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

Create a form bigger than the screen!

The primary focus here is to allow you to display forms that are larger than the screen can show. Need an 8?¢” x 11″ Form? NO Problem!The size used in this example is 8?¢” x 11″, but it could just as easily be landscape, envelope, or any needed size. Original Author: VB Tips and Source Code Code Place a… Read More »

Determine when an app launches with SHELL is done

In VB3, you call GetModuleUsage() to determine when an app you started with the Shell command was complete. However, this call does not work correctly in the 32-bit arena of Windows NT and Windows 95.To overcome this obstacle, use a routine in both 16- and 32- bit environments that will tell you when a program has finished, even… 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 »

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 »

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 »

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 »

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 »

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 »