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 »

blocks – a cool tetris clone

A cool tetris clone just like the original. Programming by Anton Gustavsson, graphics by Me. Original Author: Happy Lobster Attachments File Uploaded Size CODE_UPLOAD452.zip 9/3/2020 3:45:00 PM 7936

ASP Database Access (ADO) with Paging

Accesses any ODBC database using ADO. Records are displayed in a table withe rows that alternate colors. Paging control code allows the user to select which page in the recordset to go to. Current code has been tested with Microsoft Access and SQL 7.0. Original Author: Gary Day Assumptions Users whould have an understanding of database creation and ASP… Read More »

Basic RPG engine made entirly using bitblt

This is a RPG game made entirly using bitblt. It is very simplistic, and it’s main purpose is for those who are intermediat programmers, who want to learn how to program basic games. Also comes with a map editor, for editing existing maps, or for creating new ones. Original Author: Matthew Eagar Assumptions Needs to have a basic under… Read More »

Strip HTML

Strip HTML from a string with this function. That basically explains it’s all!! Original Author: DoWnLoHo Code Public Function StripHTML(sHTML As String) As StringDim sTemp As String, lSpot1 As Long, lSpot2 As Long, lSpot3 As LongsTemp$ = sHTML$DolSpot1& = InStr(lSpot3& + 1, sTemp$, “<“)lSpot2& = InStr(lSpot1& + 1, sTemp$, “>”)   If lSpot1& = lSpot3& Or lSpot1& < 1 Then… Read More »

Get and Save how many times your prog was loaded

This code will allow you to Save & Get how many times your program has been loaded.Add a few lines of code to your program’s main forms’ load procedure. Very easy to understand. Original Author: DoWnLoHo Returns Returns as Long Code Public Sub SetLoaded()’put this in your main forms’ Load procedure’this will set the countDim lTemp As Long, sPath… Read More »

500 Sprites

500 sprites using Bit Blit with collision detection.How many frames per second can you achive?No timer used…. Only a loop with Original Author: Derek Hall Attachments File Uploaded Size CODE_UPLOAD398.zip 9/3/2020 3:45:00 PM 5597

encryptAll

This simple encryption Function uses Xor encryption and itterative encoding to more securely encrypt a text string. Although the code is not unbreakable, it cannot be broken with a simple key. Itterative encoding ensures that code-cracking techniques, like character frequency study, will not work. It’s as easy as could be. Function can be easily modified to encode more… Read More »