Category Archives: Visual Basic 6 (VB6)

a clean Text Encryption/Decryption module

This code will take your text and encrypt it so that it is completely non-readable. I am sure that is someone studied the output long enouch they might be able to break the code, but it would be tough. You can see how easy it actually is to encrypt/decrypt text. It cover all basic letters and most special… Read More »

A must have! Send HTML headers.

This is the data that you must send to a server when requesting an HTML page. If you are using a control such as the Microsoft Internet control then you do not need this. If you are building a source grabber or something like that, then you will need this. Original Author: gHost_44 Inputs at least some form of… Read More »

Show

These graphical example generates 1 to 4 explosions on the screen.Each explosion has 1 to 64 pieces.Each piece has 1 to 9 pixels.Every piece has its own direction (clockwise or not), and has its own rotating frequency. ALL THE PIECES ROTATING!NO API FUNCTION CALLS, JUST the PSET!!!It is a really first project of my own with VB5.Enjoy. Original… Read More »

A 500 forms example……for instance

This is just for expiremental purposes to learn howto instance a form and then how to free memory of theform objects after use. It will try to enumerate 500form objects.Note: Once you reach your maximum memory stack. Thecode will be errorhandled and will tell you how manyforms you can actually instance.I’ll bet that no one can actually get… Read More »

a 10 line encryption/decryption program

This is a encrypt/decrypt program thats only 10 lines long!!!all it uses is 2 simple fonts to encrypt, times new romand for the text and Money for the encrypted text! please tell me if you like it:) Original Author: uh oh Assumptions ‘1 text box‘2 command buttons (encrypt, decrypt) Code ‘add 2 command buttons’add 1 text box’coded by the… Read More »

Find local IP addresses (NOT with Winsock.ocx)

This code finds all local IP addresses by querying winsock.dll and returns them for your use. I got this off of the MSDN web site, so it is not my code. I just thought all of you would like to have it. =P Original Author: Digital SiN Assumptions Just put this into a module (.bas file) and call GetTheIP()… Read More »

Auto-Scrolling TextBox

Have you ever wanted an auto-scrolling text box? (U know, in MIRC and ICQ, the textbox scrolls by itself!) Here it is! Few lines, optimized and easy to use! If you have the higher versions of VB, you should set the textbox’s Locked Property to True, unless you want to make the textbox editable.‘[Replace Text1 with the name… Read More »

Changing behaviour of ComboBox and ListBox (Class)

Changing behaviour of ComboBox and ListBox (Class) Original Author: Chong Long Choo API Declarations Option Explicit‘ Name: Changing behaviour of ComboBox and ListBox‘ Author: Chong Long Choo‘ Email: chonglongchoo@hotmail.com‘ Date: 14 September 1999‘<————————–Disclaimer——————————->‘‘This sample is free. You can use the sample in any form. Use this‘sample at your own risk! I have no warranty for this sample.‘‘<————————–Disclaimer——————————->Private Declare Function… Read More »

Access tables with ADO

This project uses ADO to copy tables from one Access database to another.I did this up as a demo of ADO at work. It (probably) has no actual usebut demonstrates ADO connection.This is my first submission, so please, Be Gentle! Original Author: Da Breno Assumptions This only works for Access databases.Im working on an Oracle version as an actual… Read More »