Category Archives: Microsoft

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 »

Download e-mail attachments

This code enables you to download and send e-mail, which will automatically put yourattachments into a given directory. Original Author: Gemma Dobbins Inputs Mapisession control, mapimessages control, 2 command buttons and 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.DownLoadMail = True  MAPISession1.SignOn  MAPIMessages1.FetchUnreadOnly = True  MAPIMessages1.SessionID = MAPISession1.SessionID  MAPIMessages1.Fetch  On Error Resume Next  MAPIMessages1.AttachmentPathName = MAPIMessages1.AttachmentPathName… Read More »

A Winamp Module like no other

I was looking for a winamp code that went beyong the normal play, pause, and stop functions. When I couldn’t find it, i made it myself. This is the best winamp module on planetsourcecode, it does more than just play and stop, it can get song length, get song position, set the song position, get the status of… Read More »

Automatically Establish Dial-Up/RAS Connections

Auto Connect Software is very small application to auto connect to your RAS or VPN services. For each connection, it checks to see if the connection is established, and if it isn’t, it attempts to make a connection. It can work as a form or tray icon for using less memory. Original Author: unknown Attachments File Uploaded Size CODE_UPLOAD221612101999.zip… Read More »

Whois Software

This is a classical whois application to query on Internic (network solutions) for international domains or query for turkish domains on METU in turkey. Original Author: unknown Attachments File Uploaded Size CODE_UPLOAD221912101999.zip 9/3/2020 3:45:00 PM 2414