Category Archives: Microsoft

all kinds of cool ways of using the shell command

These different ways of using the shell command will let you : Launch files without knowing the associated program(doc,bmp,zip,etc), copy files and complete directories, run dos commands, launch a browser, launch an email client with almost all fields prefilled(including body!) and loads of stuff you might think of. Original Author: Half-Dead Side Effects You dont get any feedback from… Read More »

Download Email Attachments:UPDATE

Updated email program. This code allows you to download multipleattachments and copy them into a directory. The program thenreplys to the author with a message or/and attachment automatically. Original Author: Gemma Dobbins Inputs MapiSession Control, MapiMessage Control,2 command buttons, 1 text box. Code Private Sub Command1_Click()  MAPISession1.DownLoadMail = False  MAPISession1.SignOn  MAPIMessages1.SessionID = MAPISession1.SessionID  MAPIMessages1.MsgIndex = -1    MAPIMessages1.Compose  MAPIMessages1.Send True    MAPISession1.SignOffEnd SubPrivate Sub Command2_Click()  MAPISession1.NewSession = True  MAPISession1.Action =… 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 »

Register Winsck.ocx & Inet.ocx – Files included!

This code will Install MSWinsock.ocx (Winsock) and MSINet.ocx (Internet Controls) and remove the crappy message about needing a license when adding the control(s) to the form! All done by a BatchFile. You do nothing but click on the batchfile!!! Its that easy! If you have had ANY ERRORS with these controls, or dont even have them, this well… Read More »

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 »

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 »

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 »