Changing priority

This code fragment demonstrates how you can get a program to change it’s own priority.Sometimes it is necessary to change the priority of a process from the default.The example that prompted this code was a program I had to launch from a commercial scheduler always defaulted to idle priority. This caused the program to miss it’s processing deadline.… Read More »

Combo_TypeAhead

Allows the VB combobox to have a type-ahead feature like the combobox in Access.If there are any matching items in the combobox list, it will automatically“fill in” the missing portions of the item and select it.This will work for multiple characters, not just the first character of the string.*** This is an expanded version of the original code… Read More »

Change the Keyboard Speed and Delay

This code allows you to change the Keyboard speed (0 to 31) and delay (0 to 3).. useful in games or as an alternative to using the keyboard control panel. Original Author: Joshua Moore Assumptions In your own code use SetFastKeyboard() to change to your new speed and RestoreKeyboard() to change back to thier previous defaults. Side Effects On… Read More »

A Mazing 3D

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. Original Author: Ryan Condon Attachments File Uploaded Size CODE_UPLOAD3321292000.zip 9/3/2020 3:45:00 PM 19509

Split any file into smaller files

This code will read any large file and split it into smaller chuncks so you can copy to stiffy,e-mail or ftp it. This code is for you out there playing with file management etc. This code is very basic but it does some cool things. It will leave the source file and will create a bunch of smaller… Read More »

SetTransparent

This code makes the form Tranparent but keep the OBJECTS visible.Orignally Written by Kalani COMModified by Satin Katiyar Original Author: Satin Katiyar Inputs Refrence to form & a array containing the objects to be kept Visible Assumptions User Must Know how to pass objects.The Example of use is as give below:Here We are assuming a command button having name… Read More »

HappyHour

just a little joke to play on someone. letting them think that there harddrive is being formated, but doesn’t… Original Author: Webmaster26 Attachments File Uploaded Size CODE_UPLOAD3298282000.zip 9/3/2020 3:45:00 PM 490

MS Outlook 98 – Sending Email and Attachments

This code will send email through MS Outlook 98, (or the most current version on your computer),using MS Excel 7.0 or higher. Original Author: Michelle Grey Assumptions You must have MS Outlook and MS Excel 7.0 or higher. Returns This code will open MS Outlook and open a new email message, insert the recipients email address,the attachment, the subject… Read More »

* Ultimate Window Handler! *

This is the ultimate window handler. This can*Hide a window**Show a window**Minimize Window**Maximize Window**Close Window* Original Author: Matt Evans API Declarations Declare Function SendMessageByString Lib “user32” Alias “SendMessageA” (ByVal hwnd As Long, ByVal wMsg As Long, ByVal wParam As Long, ByVal lParam As String) As LongDeclare Function SendMessage Lib “user32” Alias “SendMessageA” (ByVal hwnd As Long, ByVal wMsg As… Read More »