Category Archives: Visual Basic 6 (VB6)

UnRarControl

This control uncompresses rar files as welle as Sfx files ! Original Author: GreGleTurK Assumptions Manual included with package Attachments File Uploaded Size CODE_UPLOAD1803.zip 9/3/2020 3:45:00 PM 6645

Desktop screenshot with internet send

This will stretchblt the desktop into a picturebox! Next, if you have two instances running with the correct IP’s (use 127.0.0.1 if you only have one machine), a copy will be sent to the other (using winsock). Original Author: joe miguel Assumptions One instance must have a blank IP and the other must have that blanks IP API Declarations… Read More »

LongToRGB

Converts Long values (used by getpixel and other low level color functions) into RGB values that you can use. Useful if you want to manually remap an image or make some kind of color effect. Original Author: Reboot Inputs Long color value (from getpixel or rgb(), etc) Returns Three paramaters, r g and b, red green blue Code Private… Read More »

Access Table Tracking

This Application helps in tracking all the MSAccess databases and lists out the Tables in it along with the Fields in it. Original Author: R. Venkatraman Assumptions Copy the project. Select the drive you need to scan for the databases and run the application. Returns Lists out all the databases and tables with the fields and records. Attachments File… Read More »

Access 97 Password’s viewer

This simple program allows users to see the an Access 97 .mdb Password, to open it after. Original Author: Axlkike Inputs .mdb file Assumptions Buttons text and labels ar in spanish, but are very easy to read 😉 Returns Password Attachments File Uploaded Size CODE_UPLOAD1776.zip 9/3/2020 3:45:00 PM 4381

ECInet

This beta version of my networking component consists of two classes. The first “Email” sends email optionally with attachments encoded as base64 and compatible with the MIME 1.0 protocol. The other “Upload” allows for uploading of files through a web browser. Both were developed for use with Active Server Pages, but could be adapted for other uses as… Read More »

DirTreeView

This is Explorer-like drive/folder TreeView. No delay at startup (for the hell of read directory structure), because content of each folder is readed on “expand” event.You can also specify any path and this code automatically find the path in TreeView.Base for this code are taken from other submission on Planet-Source-Code.Thanks to all programmers for publish their codes on… Read More »

Create a DLL Easy as 123 (Part 2)

Step by step instructions to create an ActiveX DLL !In this lesson we will create a DLL to compact a Database ! Original Author: Marc F. Assumptions Basic Navigation in VB Attachments File Uploaded Size CODE_UPLOAD1751.zip 9/3/2020 3:45:00 PM 5432

Database Autocomplete TextBox Module (No API)

This is a veeeery simple code to make one autocomplete textbox that gets the first letters you typed and searches for the most similar word from a table and then completes the rest. No API Calls, No Classes, Only few lines of code in 2 events…Simply save it as a module (.bas) and add it to your project… Read More »

MDIChildMaker-Use ActiveX forms as MDI child forms

THE PROBLEM: VB allows regular forms to be instantiated from an ActiveX DLL…but does not allow MDI child forms to be instantiated from an ActiveX DLL! THE SOLUTION: MDIChildMaker! Now you can put your forms in a seperate ActiveX DLL and use them as MDI children forms in your main application’s MDI form! NOTE: This is not a… Read More »