Category Archives: Visual Basic 6 (VB6)

Mini WinHacker 95 (now may be called also 98)

On the whole this program was written under the impression of theWinHack (v1 beta) (I am sorry for taking the name, I do notclaim to have the trademark) by Wedge Software.I also added the “Window Manager” feature to it.I think it may be useful to anyone:–If you are not a programmer, then you may use it’s features.–If you… Read More »

A Handle Tree Creator

This application generates a tree from ALL windows running in windows.You can find the handle of every window, see its position, hide it etc.Nice tool for finding handles, but also for impressing your friends, when you hide a button in e.g. Word!!! Original Author: Pascal van de Wijdeven Side Effects A hidden window has to be made visible again,… Read More »

Automatic E-Mailing

A simple example that allows the user to click a command button to bring up your MSOutlook, etc. with the specified E-Mail address in it’s right box. This is a very useful piece of code that allows those that use your software to send you comments with a click of a button. Original Author: Jason L Brimblecombe 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 »

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 »

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 »

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 »

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 »

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 »

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 »