Category Archives: Visual Basic 6 (VB6)

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

Ini Functions(SIMPLE AND WITH SOURCE)

This code is used to read and write to a .ini file with 4 easy functions. The source included can be compiled as a ActiveX DLL. Source is Easyly Written Out. JUST LOAD AND COMPILE THE DLL Original Author: Neo Attachments File Uploaded Size CODE_UPLOAD1825.zip 9/3/2020 3:45:00 PM 2990

Automatic Form Shaper

This code will shape a form based on it’s .Picture property. It uses a transparent color and makes all areas of the form which is that color transparent. Extremely useful for programs to incorporate custom Themes. This code works best with smaller forms. The bigger the form, and the more complex of an image you use for the… Read More »

How To Create A Working Thread

Shows How To Create a thread and how to Operate on as well. Do a function in the background while your program shows a system modal or program modal. Allows you to create a thread set properties on it and figure out how they work.. This Program is a Multi-Threaded Program( It uses Two(2) Threads To Change Colors… Read More »

Add to WINDOWS POPUP Menus!!!

If you want to include your program name to the pop-up menus (the one that opens when you click the right button 🙂 ) in windows.It adds currently when you right-click the START BUTTON, in WINDOWS EXPLORER and the “My Computer” Icon. If you have anything to add please send me a copy. Original Author: linda samson Inputs Program… Read More »

Save .BMP to Access database

This code will save and retrieve bitmap graphic files from an OLE Object field inan Access 97 database. The same principle applies to earlier versions of Access/VB, but I haven’t tested them. You’ll need to use the appropriate DAO library. Let me know if you find a way to save other graphic formats. Original Author: Craig Boland Inputs A… Read More »

a Server that allows multiple connections!

Since I posted the code that shows people how to use the winsock control everyone has asked how to allow multiple connections! Well, i’ve finally done it. This shows you how to accept multiple connections with one winsock control!! Original Author: Dustin Davis Attachments File Uploaded Size CODE_UPLOAD1821.zip 9/3/2020 3:45:00 PM 3514