Category Archives: Microsoft

MAPI Mail

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. Original Author: Donathan Hutchings Assumptions This dll needs the Maicrosoft MAPI control installed on the machine. Attachments File Uploaded Size CODE_UPLOAD3308292000.zip 9/3/2020 3:45:00 PM 6165

GPF Error Logger

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. Original Author: Donathan Hutchings Attachments File Uploaded Size CODE_UPLOAD3310292000.zip 9/3/2020 3:45:00 PM 6958

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 »

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 »

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

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 »

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

* Make Your Own *WAV* Player! *

This is the code to *PLAY*, *STOP*, and *LOOP* WAV files. Its really easy! even for a beginner! You can make your own WAV Player! Original Author: Matt Evans API Declarations Declare Function sndPlaySound Lib “winmm.dll” Alias “sndPlaySoundA” (ByVal lpszSoundName As String, ByVal uFlags As Long) As Public Const SND_SYNC = &H0Public Const SND_ASYNC = &H1Public Const SND_NODEFAULT =… 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 »