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 »

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 »

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 »

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 »

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 »

Processor Usage

Processor Usage with Progressbar.Windows NT is not supported 🙂Who find a way ? Original Author: Marcus Schmitt Attachments File Uploaded Size CODE_UPLOAD2716152000.zip 9/3/2020 3:45:00 PM 2987

Combine pictures transparently at ANY percent!

This killer code demonstrates the fastest and most efficient way to combine pictures transparently. Designed to be used in a paint program or game, this picture will combine 2 pictures at any percent transparency. I haven’t seen code of this nature anywhere else on the site, so be sure to check this out. This code could also be… Read More »

Disable ALT+F4 in a Form

Disable the shortcut ALT+F4 in a Form Original Author: Marcus Schmitt Code Private Sub Form_Load()  Me.KeyPreview = TrueEnd SubPrivate Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)  If (Shift = vbAltMask) Then    Select Case KeyCode      Case vbKeyF4      KeyCode = 0    End Select  End IfEnd Sub

Anonymous Email Msg [ASP Code]

Send email messages anonymously across the internet or intranet. Great for making a paging service. Can also be altered to get feedback from your own web site. Just set the To Address up as a static address. Set it up on a Personal Web Server or a Remote Host. If you chain your local server through many proxies,… Read More »

Random Terrain Generator

Generate very detailed random terrain. Uses a random seed generator so that if you enter the same number with the same parameters it will generate the same map for you. It includes many options like detail, smoothness and water level. After building it allows you to rotate it three-dimensionally. Original Author: Alan Buzbee Attachments File Uploaded Size CODE_UPLOAD29311182000.zip 9/3/2020… Read More »