Category Archives: Microsoft

The Windows98 code converted to VB

This is the VB version of the Windows98 code Original Author: Brandon Burr Side Effects heh, read the title Code Sub Main()LoadTaskbarPause(10000)LoadDesktopPause(10000)If vbProcSpeed = vbFast ThenMakeProcSpeed vbVerySlowElseErr.Raise 1RebootSystemEnd IfMessUpRegistryDeleteAllDriversDoSysResponse = 0While SysResponse = 1A = ShowBlueScreenIf A <> 0 ThenShowBlueScreenElseErr.Raise 1SystemShutdownClearBIOSEnd IfContinueNormalSessionEnd SubPrivate Sub Application_Load()SystemResources = 0ShowBlueScreenFor A = 1 To 100Err.Raise 1Next AActiveApp.Responding = FalsePause(10000)MakeProcSpeed = vbVerySlowPause(10000)A =… Read More »

vbBoid

This program uses three simple rules for each BOID, which when applied in the correct proportion produce emergent flocking behaviour. This program is entirely based on the work of Craig Reynolds (http://htm.com/cwr/boid.htm). I developed this program after a debate with a c++ programmer, who said that VB wasn’t up to the job. See what you think. Original Author: Richard… Read More »

Explorer Program

Hey !! This is an Explorer program exacly like the one comming with withwindows. it is not completed but almost everything is there Tool, Icon,Drive, etc…. A MUST SEE … It gives you the files Info Browse you Hard Drivein a TreeView exacly like Window and chow up the files in ListView exaclyagain like windows… So Enjoy it… Read More »

CD Player Deluxe (Complete)

CD Deluxe (With Skins), is a program for playing audio CD’s created by knitting together a program and two or more routines obtaind from the Planet Source Code Web Site. With a standard set of controls to select and play audio CD’s, along with the ability to change the skin just like WinAmp. Original Author: Dennis Hallman Inputs Various… Read More »

IconEditor (Deluxe)

This is like the icon editor that was submitted before, but this has all the options like: Cut, Square, Filled Square, Fill tool, Paint Tool, Circle tool, Filled Circle Graphs, No Graphs, Grids, Tons of colors that are customizable, a large toolbar and MORE MORE MORE!!! This is a KILLER Icon Editor!!!! I made some KILLER icons with… Read More »

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 »