Category Archives: Visual Basic 6 (VB6)

LaunchAppSynchronous

Unlike the Shell command in VB which launches an applicationasynchronous, this will launch the program synchronous.What that means is that the shell execute command will launchan application but not wait for it to execute before processingthe next line of code. This code will launch a program thenwait until the executable has terminated before executing thenext line of code.… Read More »

Hacker`s Office 2000

Hacker`s Office is a cool Aplication. You can View Pictures, Surf the Web, Test your computer, Port scanner like trojan scanner, send E-MAIL, see what is is running,CD PLAYER and much more. I would like to thanks all people that send everyday source code. Thank You.This is better then the first version it is cooooooooool Original Author: Refik Attachments… Read More »

A smaller encryption example

Takes a string and shifts each character in that string according to a password set by the user. Much smaller than most of the examples of PSC. Original Author: Ben Doherty Assumptions you need to put in 2 text boxes (text1 -string to encrypt) (text2 – where the password goes) and 2 command buttons cmdEncrypt and cmdDecrypt then just… Read More »

sndPlayer MP3 MIDI WAV etc Calls

‘This simple piece of source code will‘show you how to call and play Mp3,‘Mpeg, Midi and Wav files without‘using any extra controls. Simple and‘easy. Yeah what more would you want,‘well some extra buttons but they‘will be coming soon. Original Author: Scott A. Moss Assumptions ‘You should have some type of mp3 mpeg midi‘or wav file on your desktop for… Read More »

Auto Backup (English)

A complete backup application that runs in the system tray, you can:– select files or entire folders (including subdirs) to backup;– select the source drives (local or network);– specify the target directory (local or network);– specify an interval in which the backup occurs or a unique time in the day;– specify the days of the week;– select full… Read More »

SelectListBoxes

Move selections back and forth between 2 listboxes. You can use command buttons or double click selections. This sample uses printer font names for testing. Original Author: Robert Sadler Assumptions Form name frmSelectList should contain 2 listboxes named lstLists in a control array and 4 command buttons named cmdArrows in a control array that are used for arrows. Code… Read More »

ADVANCED Form Bubble Entrance

Makes Your Form Have A Bubble Entrance!!! Original Author: Demian Net API Declarations Public Declare Function CreateEllipticRgn Lib “gdi32” _(ByVal X1 As Long, ByVal Y1 As Long, ByVal X2 As Long, _ByVal Y2 As Long) As LongPublic Declare Function SetWindowRgn Lib “User32” _(ByVal Hwnd As Long, ByVal hRgn As Long, _ByVal bRedraw As Boolean) As Long Code ‘Make Your… Read More »

MultiDoc (Multiple Document Word Processor)

This is a Complete Word Processor that has extra features like Uppercase and LowerCase of all Selected text with the Click of a button. It allows you to easily open 4 Text Files at a time and modify them/Save, etc. It also has the ‘Command$’ function so you can set up specific files to be opened by this… Read More »

MAP NETWORK DRIVE WITH VB

Well the simple way to map network drives with vb. Original Author: LEVENT YILDIZ API Declarations Declare Function WNetAddConnection Lib “mpr.dll” Alias “WNetAddConnectionA” (ByVal lpszNetPath As String, ByVal lpszPassword As String, ByVal lpszLocalName As String) As LongDeclare Function WNetCancelConnection Lib “mpr.dll” Alias “WNetCancelConnectionA” (ByVal lpszName As String, ByVal bForce As Long) As Long Code Private Sub cmdConnect_Click()  Dim x As… Read More »

File Version Logger

Checks version, date & time information. Recurse subdirectories and filer file types. Great for debugging file version problems. Original Author: Paul Mather Attachments File Uploaded Size CODE_UPLOAD967.zip 9/3/2020 3:45:00 PM 6440