a Slide Show program

This is a Slide Show program that u can use to make slide shows in your programs. It will teach you how to do that. It has multiple features such as, show infinate images, Pause / Resume slide show, timer settings, image file filters and so on! Very nice Original Author: Dustin Davis Attachments File Uploaded Size CODE_UPLOAD1025.zip 9/3/2020… Read More »

CPerformance

This class encapsulate QueryPerfomanceXXXAPI functions to mesure small time intervals. You can use this classto mesure how much time your code take. This function can mesure timeintervals near 0.1 ms , 10 times better then timeGetTime() API orGetTickCount() that have an error of 50ms.Example:Dim m_performance As CPerformanceDim i As integerSet m_performance = new CPerformancem_performance.StartCounter()‘Do somethingFor i = 1… Read More »

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 »

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 »

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 »

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 »

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 »

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 »

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 »