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

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 »

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 »

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

Using VB code to access MS Word Functions

This code is an example of how to use various functions contained within the Word Application object. To use this code you must first set a reference to the word libary then declare a word application object. This code shows how to use the search/replace functions, how to bold items, how to do a “Save As” from the… Read More »

_a simple game programming tutorial

Transparent sprite animation over background. A collision detection (COLLIDE.BAS) module/engine which will make collision detection more easier. Original Author: martin casta??eda Attachments File Uploaded Size CODE_UPLOAD1746.zip 9/3/2020 3:45:00 PM 14096

How to fade one image into another image

Ever wanted to fade one image into another image? Like fade a picture of yourself into a picture of a goat? If so, check this example out. It shows you how to fade one image frame by frame into another image. Original Author: Patrick Gillespie Side Effects Fading will take awhile on slow computers Attachments File Uploaded Size CODE_UPLOAD1716.zip… Read More »

App list and Kill

List all apps running (Including windows stuff!) And kill the processes..This is a modification of the killapp project. Be careful not to kill stuff like explorer as you will need to restart machine… Fun all the same Original Author: Hawkzsta Assumptions If explorer is killed you will need to restart… Returns A list of processes running which can be… Read More »

Create a DLL easy as 123 !

Step by step Insctructions on how to create an ActiveX DLL File Original Author: Marc F. Assumptions You Need to know Basic Navigation in VB Code You can download this code in Windows Write Format. Its easier to read !Contact me with any questions. Marc 3dtech@thelakes.net Create an ActiveX DLL FileFollow these steps.1. Open VB and select to create… Read More »

Read Only Grid

gridClass is a read-only grid comprised of text box arrays. I use itto display information from an Access database and it was developed afterexpriencing total frustration with the grid provided with VB6. It could bemodified to be updatable and I may find time at a future date to do that. Original Author: Steven C Attachments File Uploaded Size CODE_UPLOAD1700.zip… Read More »