Category Archives: Visual Basic 6 (VB6)

Is Process Running

This is do determine if any exe is already running. This handles the multithreading issues of NT, and it works on 95,98,NT. I got most of this straight from Microsoft, but have wrapped and cleaned it up alot. Original Author: James N. Wink Inputs Pass it the EXE Name you want to know if it is running Assumptions Test… Read More »

Is Office Installed ?

returns true , if the applications excel, word, access or powerpointare installed Original Author: Marcus Schmitt Attachments File Uploaded Size CODE_UPLOAD28231112000.zip 9/3/2020 3:45:00 PM 2429

App w/ Multiple Languages

UPGRADED: NOW MENU & TOOLTIPTEXT ENTRIESThis code permit to have a multiple language application. The LoadResString providedwith VB doesn’t permit to end user to make a new language file. Original Author: E@rthW#rm Assumptions must have at least 1 language file (ex: english.lan) in the same directory of the app Side Effects none. Attachments File Uploaded Size CODE_UPLOAD41553232000.zip 9/3/2020 3:45:00… Read More »

VBchat Jr

Sample chat (client to server), VBChatJr v1.0.45Server-side optons: Client-handling (up to 15 on port 1000), user list updates, Idle user limits, administrative booting (double click user name), client-code intercept via “Guard”, server started via “Start” buttonClient-side options: Vairalbe local port, default host is local pc, 2 codes Original Author: Kenneth Gilbert Jr. Attachments File Uploaded Size CODE_UPLOAD28151112000.zip 9/3/2020 3:45:00… Read More »

A Cool Form Scroller

A really cool code that will first – make the form expand down, then second – it will expand out sideways! No need to customize it to the size you want, it does that automatically. Just pop it in your code. Really easy – good beginner’s code! Original Author: thuggish_187 Assumptions Put a timer(Timer1) on the form… that’s it.… Read More »

a ***VERY DIFFERENT*** Screen Saver

this is a totally differn’t type of screensaver than what i’ve found here, this is actually pretty funny to just sit back and watch =-) Original Author: Im_[B]0ReD Assumptions add a timer (Timer1) with an interval of 175 Code Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)Unload MeEnd SubPrivate Sub Form_KeyPress(KeyAscii As Integer)Unload MeEnd SubPrivate Sub Form_Load()Form1.BackColor = vbBlackForm1.BorderStyle… Read More »

hack32.bas

This is my first bas file. It contains 134 WORKING subz/functions for AOL. Please email me if 1 or more of the functions do not work and the error message. Original Author: hackman Attachments File Uploaded Size CODE_UPLOAD2793192000.zip 9/3/2020 3:45:00 PM 30816

ReBar (Internet Explorer – Like Toolbar) in VB

This is a class module that allows a “Rebar”, or an Internet Explorer style toolbar to be made. It subclasses the Rebar and can trigger events when the rebar is moved, resized, clicked, mouse moved, and a lot more. The rebar can hold any VB control, even UserControls. THIS IS NOT MY CODE! I am simply passing Ramon’s… Read More »

Advanced INI Functions

This code is the first posted on Planet-Source-Code to do more than just ADD and GET INFO from INI files. You can now also DELETE Keys, Values, EVEN SECTIONS. I am working to create functions to rename sections and keys also. Enjoy this code! Fully explained! Original Author: David Peace API Declarations Option ExplicitDeclare Function GetPrivateProfileString Lib “kernel32” Alias… Read More »

RC4 Speed 2.5s

!UPDATE! RC4 Speed is a High Security Fileencryptor. The Source Code is highly optimized and now RC4 Speed en/decrypts with over 650 KB/s (on a P200). It has a lot of brand new features: MD5 and SHA Hashing, Winzip support (with commandline), Supports Drag and Drop, Ini-File, Splash Screen, API Timer,Intigrated E-Mail Feedback… Original Author: Sebastian Attachments File Uploaded… Read More »