Particle Engine

This program draws a stream of particles eminating from your cursor.They will proceed to fall to the bottom of the screen and bounce around. This is fully customizeable and would make a Great screen saver. UPDATED. LOTS OF OPTIONS!!!! Original Author: Michael Pote Attachments File Uploaded Size CODE_UPLOAD40973202000.zip 9/3/2020 3:45:00 PM 6147

Quoted-Printable — Encode and Decode

Very fast function to encode or decode Quoted-Printable.VB6 only, but you can make it work with other versions, with a 3rd party replace function. Original Author: AndrComm Inputs Just pass it the string to be encoded, or to be decoded. Returns The encoded, or decoded string. Code Public Function DecodeQP(ByRef StrToDecode As String) As StringDim sTemp As StringDim i… Read More »

Make ANY Folder The Root Of Windows Explorer

My Code calls The Windows Explorer with the switch “e,/root,” and makes any folder you want the root of the windows explorer Original Author: Jim Side Effects It’s a little slow calling the explorer cause i shell it, if you know better please edit at will Code ‘it’s a module’i went a little DIM crazy with the’variables but it’s… Read More »

Control Registration Wizard

Used to register and unregister OCX and DLL files for use with Visual Basic 5.0 and other programming languages that support OCXs and DLLs. Original Author: Drae Calistair Assumptions Careful what controls and dlls you unregister, as they may be necessary for Windows operation, or for Visual Basic to run. Side Effects Registering controls and dlls allows them to… Read More »

Pong 2000 with Sound,Bitblit and AI instructions

!Pong 2000 with Sound,Bitblit and AI instructions, Made so you guys can start to program correctly. Those of you that ask how I do it, well here is the source code for you to ponder over…. Have fun, coz I do. Original Author: Derek Hall Attachments File Uploaded Size CODE_UPLOAD481.zip 9/3/2020 3:45:00 PM 14730

RPG GAME: Version 2: Updated again

This is the same version of the game I submitted last time, but I’ve removed the timer and now it uses a while loop for character movement, so it runs MUCH faster. Original Author: Matthew Eagar Assumptions You should be a good – intermediat programmer to understand any of this and be able to put it to good use.… Read More »

Create Multiline Message Boxes!

Creates multiline MsgBoxes Original Author: Ian Gorse Assumptions Just paste the code any where you want Code ”There it iswrap$ = Chr$(10) + Chr$(13)MsgBox “Line number 1” + wrap$ + “Line Number 2”

Basic Sound Engine

Play wave files with one command Original Author: Neil Ramsbottom Inputs You can either specify a Sound Event number, or a filename Assumptions Thanks to Gordon Stewart, author of 4000AD for the base API function. Side Effects None known Attachments File Uploaded Size CODE_UPLOAD476.zip 9/3/2020 3:45:00 PM 1751

A great pong game, fully working this time, Zip!

This is a fully working pong game, almost identical to the origional one. It has a fairly good (but very basic) computer player, and the ball deflects at different angles depending on how far away from the center of the paddle it is.Ok, I just re-wrote this in VB3 so that every body can have access to it,… Read More »

Make your own screen saver

This gives the basic code for making a windows screen saver. Very easy to understand and use!! Original Author: DoWnLoHo Assumptions you have 2 forms named frmConfig and frmMain Code Sub Main()Dim strCmdLine As String  strCmdLine = Left(Command, 2)If strCmdLine = “/p” Then’    End’on select of your screen saverElseIf strCmdLine = “/c” Then’Call Load(frmConfig)’  frmConfig.Show’Function to call when’Settings”  button is pushedElse’Call Load(frmMain)  ‘  frmMain.Show’your screen… Read More »