Results for "Volume: 2002C"
This program lets you walk through a 3D Maze, it also has a ton of options including a maze editor! Just have fun with it.
Generates a random string of numbers, letters and symbols, then places it in a string. Once this has been done 3399 times (or times set by user) it writes the string to a file under the variable filelocation
This code will change the color of the "Blue Screen Of Death"
This is a dynamic link library that sends and receives electronic mail from a MAPI compliant email client. It comes complete with error checking and multiple attachments.
This is a dynamic link library that catches up to 40 general protection fault errors that VB doesn't catch and allows for normal error handling in your code. A test application is provided to demonstrate this.
When using Autonumber fields in a database for a UID, you might need this value after you add the record, for that record. This is my example of how to get that value back from the database after it is added using DAO or ADO.
Reproductor de Sonidos, mp3, wav, etc. Incluye el Codigo fuente del Ocx
Uses SetWindowLong to turn a PictureBox into a "Child Form". Rather amazing to an unexperienced programmer. PS. Visit my new site: http://smartsite.cjb.net
Demonstrates how you can minimize your app to the system tray and reactivates it by double clicking on its registered file type in Windows Explorer, without leaving the second instance running. Covers three techniques: 1-Hooking; 2-Registry functions; 3-SystemTray functions. VB6 tested OK.
Replaces a character in a string with another character. Pretty simple to understand. Uses a For...Next loop.
Notice: THIS CODE HAS BEEN FIXED! PLEASE READ THE COMMENTS AT THE BOTTOM OF THE PAGE TO SEE WHAT WAS WRONG BEFORE. Create real C++ style command buttons with ONE line of code!!! You can use this code on any of your commands buttons. You will loose any images and the BackColor of the button, but that really doesn't matter because you can 'paint' images onto the button using the API. Make sure you set the style property to 'Graphical' or this will not work!. OK here is how it works. You see, by default Visual Basic's command buttons are drawn with the 'Default Push Button' style, which makes them flat and ugly when pushed. But when you set the style to 'Graphical' its really just a C++ button with a single pixel outline drawn around it. This code basically just stops the button from drawing that line to create a sunken style button. This code is not compatible with Visual Basic 4.0/32 because its buttons don't have the style property. However, in Visual Basic 4.0 you can apply the code to an option button and it will appear as a C++ push button (they both have the same basic events and properties: Click, MouseMove, etc...) which is a 'rigged' kind of way of getting it in to Visual Basic 4.0...hehe. I wrote this code because I got tired of all the people trying to create C++ style buttons with CreateWindowEx and Message Hooks, and all that other difficult stuff.
This ActiveX allow you to use animated gifs in your applications. I saw examples of modules before but not ActiveX.You can make OCX file from this and use it in other applications.
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/.
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, however, I have added comments, just in case.
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.
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 files. This project can also show you how to use the listbox
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 CODE YOU MUST SEE!!!!
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. It uses a complex sorting algorythem, which could possibly be used for sorting non-linear arrays of data.
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.
Text base file or string encryption/decryption. All the encryption/decryption can be call by the external program through the DLL.