Category Archives: Visual Basic 6 (VB6)

Hyper_Map

Build image maps from .gif pictures for people to click on various areas of your picture and jump to different links. Original Author: Max Seim Assumptions Assumes you know HTML. The program outputs a text file that you cut and paste into your HTML code for your website. Attachments File Uploaded Size CODE_UPLOAD3207222000.zip 9/3/2020 3:45:00 PM 33826

Advanced VB Based Toolbar ActiveX Control

This is a complete commericial quality toolbar control for use with VB6 (VB5 users will need to create replacements for Replace and Split functions). It is completly owner drawn, and has no requirements on Common Controls, IE or whatever. As much as possible, API is used to greatly enhance and optimise the control. Buttons can be standard buttons,… Read More »

Message Scroller Control (Text Marquee)

What? Another marquee? Yep. Put into 1 class and 1 usercontrol file. Can contain separate text “blocks” each with it own forecolor. Use the mouse to drag the display from left to right (or right to left) during the scrolling (just in case you missed out something that scrolled away). Continuous scrolling (does NOT wait if the last… Read More »

Base Changing

Lately, I’ve seen a couple binary convertion functions. I decided to “up” how powerful the converters are. I’ve created a base convertion that can convert 2 (2 is used to create binary) to 9. There is also a converter to convert everything back to normal. So, let’s say you want to convert 150 to binary, and put it… Read More »

Recent Files accessed in a

In a Drop Menu in one of your programs, you can list the last eight files the user opened. This will allow the user to quickly access a recent file again. I literally copied a sample from the VB5.0 package and eliminated the uneeded code. Original Author: Patrick K. Bigley Attachments File Uploaded Size CODE_UPLOAD2769172000.zip 9/3/2020 3:45:00 PM 4083

a The easiest way to send mail!

I have seen some e-mail stuff on this site, but all are so freakin complicated. This is simple and VERY easy to use! Original Author: Dustin Davis Code Dim sRes As StringPrivate Sub Command1_Click()Winsock1.RemotePort = 25Winsock1.RemoteHost = your_mail_server_here ‘use your mail serverWinsock1.ConnectDo Until Winsock1.State = 7 ‘7=connected  DoEventsLoopsRes = “0”Winsock1.SendData “MAIL FROM: ” & your_email_here & vbCrLfDo Until sRes =… Read More »

That’s how a Keylogger is done in VB ;)

You were waiting for it didn’t you? NO MORE TIMERS and GetAsyncKeyState.About 40 lines in VB (excl. declares) and a DLL. Logs ALL keys except PrintScreen.Is this the end of the war of keyloggers? 🙂 (I hope not). Original Author: Konstantin Tretyakov Side Effects It may make a GPF when stepping through the Window_OnMessage procedure. Attachments File Uploaded Size… Read More »

A good fakemail program

(My first submission to PSC). It is a complete fakemail application, which allows you to send e-mail using any e-mail address. Also includes Name of sender and Name of receiver + subject line! Log window shows all actions taken by the program. Original Author: Dominique Poot Inputs – SMTP server– Name of sender + e-mail address– Name of receiver… Read More »

An Advanced Scientific Calculator

Hi folks. This is an advanced scientific calculator version -2 . Performs trignometric , logarithamic , exponential functions , memory operations. Also it can store infinite number of values in memory u can view and copy down the values from memory to your display. Compleete source code is avail in ZIP. Thanks for your cooperations …..also don’t forget… Read More »

Photo to ASCII-art converter

This code converts picture files to .TXT files. Works best with photo’s. Start a new project, insert a picturebox, and past the code in the code-window, HAVE FUN !! Original Author: Sneechy Inputs You need a picture file (I only tested with .BMP’s and .JPG’s) Assumptions There is an API used in this one, to get the colorcode from… Read More »