Category Archives: Visual Basic 6 (VB6)

Guest Book CGI

Contains two CGI VB projects that implement a Basic Guest Book Also contains a short tutorialon how CGI works in VB. Unless you are familiar with CGI and VB Please read CGIinfo.docbefore you jump to the code. Original Author: Jack Rizzo Inputs See code and documentation Assumptions A basic understanding of HTML Returns See code and documentation Side Effects… Read More »

An Adventure : Break my encryption program!!!

The best encryption program I ever saw on the internet. You write text and password(ALL characters are allowed) and then you save it to an encrypted file. This is VERY GOOD protection for files and it comes with a form of (encrypted)file manager.***BONUS*** for SUPER skill programmers : I added a file called trythis.txt. Try to decrypt it!!!THIS… Read More »

The ‘Same’ Game

This is a simple, but addictive game. The object is to clear the screen of all of the blocks. You may only select blocks that have neighboring blocks of the same color. This is not an original idea. I saw the game on a B&W handheld PC, and wanted to have it in color on my ‘work’ computer.… Read More »

Net Watcher 1.5

This project of mine logs every internet connection and saves it into the access database. It is hidden when started but you can press F9 to see when it was connected/disconnected since the program was started in a listbox. Its a really good project which illustrates diffrent techniques in diffrent subjecs such as database, listbox, internet etc. Original… Read More »

MAPI Mail (Cont.)

Several of you have requested a sample program to demonstrate how to use the MAPI Mail dll I submited. I have included in this zip file an almost completed email program. The Send and Receive function are fully functional along with multiple attachments. Original Author: Donathan Hutchings Assumptions The sample program requires the VB6 common dialog (SP3), VB6 common… Read More »

VB6 recent files organizer

My program help you organize your VB6 recent files list. It allows you to delete and move the files in the recent files lists to fit your needs.I should also give some credit to the person who wrote the cReadWriteEasyReg.cls , I down loaded from this great web site 🙂make sure Visual Basic is close before runing VB6RecentFileOrg.exe… Read More »

LZSS Compress/Decompress

This is a standard LZSS compression/decompression engine. It is written in VB for learning purposes, and should be converted to C/C++ if it is to be used with large amounts of data. It uses a dictionary compression algorithm (like ZIP,ARJ and others) and works the best on data with a lot of repetitions. Original Author: Jesper Soderberg Inputs sCompData… Read More »

System Information Viewer

Allows programmers to access Windows version information using the properties of a class module. This includes Windows version (95, 98, NT), browser version, Netscape Navigator version, registered company and user.Also included is cRegistry class to access the registry. This code was downloaded from VBAccelerator. VB Accelerators page is http://www.vbaccelerator.com/. Original Author: Sloan Kelly Inputs n/a Assumptions n/a Returns n/a… Read More »

FindSystemFolders

Returns the path to a system folder, based on input. This code is based on a submission by ‘Don’. Originally the code only found the System Folder on the machine. I have added all of the system folders (MyDocuments, System, Cookies, etc), and made it into a class/dll for ease of use. The code is relatively self explanatory,… Read More »