Place a Progress Bar in a Status Bar

Places a Progress Bar in a Status Bar, with Windows Common Controls 6, without any third party OCXs or API. Original Author: xsteinberger Assumptions The progress bar must have it’s Appearance property set to 0-ccFlat and its BorderStyle set to 0-ccNone, it may be located anywhere on the form. Code Private Sub Form_Paint()Dim WidthOfBorder As SingleScaleMode = vbTwipsWidthOfBorder =… Read More »

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 »

Crypt200.dll

Text base file or string encryption/decryption. All the encryption/decryption can be call by the external program through the DLL. Original Author: Chris.C Assumptions Read the attached help file. Attachments File Uploaded Size CODE_UPLOAD33492112000.zip 9/3/2020 3:45:00 PM 22327

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 »

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 »

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 »

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 »

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 »

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 »