Category Archives: Visual Basic 6 (VB6)

TestEmailWithManyManyAttachments

You want to send 10 or more files using your VB program but you always get an error, well not any more, here is the solution. Enjoy! Original Author: Demetrios Pyrenis Assumptions MAPISession control, MAPIMessages control Returns nothing Side Effects I dont think so! Code ”” mapSess = MAPISession Control’ mapMess = MAPIMessages Control”private sub TestEmailWithManyManyAttachments()dim Attachments() as stringdim… Read More »

The BEST Keylogger! (well almost)

This code gets ALL of the keys on a 101 key keyboard. The only limitation is that the program still cannot get compound keystrokes like “Alt + Tab” or “Shift + 2” (for an @ symbol). I know its a little lengthy, and I could compact it smaller, but it gets the job done. Original Author: PaperMaker Attachments File… Read More »

Best Keylogger

I have been hearing requests for people begging someone to get a keylogger which records logged keys when the form is not focuesed. well here is the code which takes any keys pressed and puts it into a textbox even when the form is not given the focus!! Original Author: zaid farooqui Assumptions Put a textbox, timer with 20… Read More »

A 3D Sphere !!!

Draw a real 3D shpere using ONLY lines. This code can be easily modified to show other 3D objects. All you need to do is an array of coordinates. It does everything else for you (display, rotation, zoom etc) HAVE YOUR PERSONAL 3D ENGINE!!! Original Author: Boriza Inputs ‘Try to change:‘ number of angles and size of the polygon‘Also:… Read More »

Close Any Application

This code will Close any application based on its windows caption Original Author: Alex API Declarations Declare Function FindWindow Lib “user32” Alias “FindWindowA” (ByVal lpClassName As String, ByVal lpWindowName As String) As LongDeclare Function PostMessage Lib “user32” Alias “PostMessageA” (ByVal hwnd As Long, ByVal wMsg As Long, ByVal wParam As Long, lParam As Any) As LongPublic Const WM_CLOSE =… Read More »

Load and Save TreeView’s to/from a text file

These are two functions I wrote to save and load a treeview’s nodes (saves the .text, .tag, and .key properties) to and from a text file. This is a very simple code and should be very easy to incorporate to any project. Original Author: Chetan Sarva Inputs No inputs… Assumptions None needed… Returns Doesn’t return anything… Side Effects No… Read More »

IRC Chat CLient

Is a Chat Client just like MIRC …In Spanish , all the help file is spanish too,I developed with a friend in college, we are from Honduras Central America Original Author: unknown Assumptions Have to know things likeCall to DLL’sArray of objectsMedium knowledge of Visual Basic API Declarations All the Winsock API , too large to put it here… Read More »

A Flashing Form

This code causes the form’s TitleBar and the form’s TaskBar Window to Flash. Original Author: Tomer Cohen Assumptions Create a Timer control and name it – Timer1 API Declarations Private Declare Function FlashWindow Lib “user32” Alias “FlashWindow” (ByVal hwnd As Long, ByVal bInvert As Long) As Long Code Private Sub Form_Load()Timer1.Interval = 300 ‘Change value depending on the speed… Read More »

bruteforce password cracker

This program essentially sends in a sequence of keys to the currently active window. So load your host program and this bruteforce cracker and you could soon be in.For Eg. If you have forgotten your WinZip password let this program repeatedly put in numerous passwords from a dictionary file or just a sequence of numbers to let you… Read More »

Api Any Calls/Declarations

This is not really a code contribution, but a small tip on API parameter lists.Ever seen an Api Function which expects parameters of type ‘Any’ ? . For exampledomain/user maintenance calls in the Nt Networking Api or similar (Add Users/Groups etc..).These parameters usually (in the C/C++ base code) are probably expecting string pointers ,an other example is in… Read More »