Code Snippet for VB’s Split() Function

This is a one line code snippet to extract any section of a string using the Split() function. You can actually return the indexed section right in the same line as the Split() without having to assign the Split() to an array. Original Author: Rocky Clark (Kath-Rock Software) Code Place this line in your immediate window and run it.… Read More »

Fantastic 3D Engine!!!

It’s very cool and advanced 3D engine made in pure VB WITHOUT any 3rd party components. It’s not done by me, but I wanted to share it with you. It’s name is Dex3d and made by Jerry J. Chen. So all credits are for him. Original Author: unknown Attachments File Uploaded Size CODE_UPLOAD36502272000.zip 9/3/2020 3:45:00 PM 36934

Mp5-Webserver

Thats a little webserver for win95/98, running on port 80. It supports HTML, but no grafics. Original Author: unknown Attachments File Uploaded Size CODE_UPLOAD36472272000.zip 9/3/2020 3:45:00 PM 5860

A easy Scroll with 1 line of code

Scroll a label with just one line of code…great for showing credits!!!! Original Author: Steve Williams Inputs You will need a timer and set the interval to 1and of course a label with whatever you want to say. In this example position the label toward the bottom of the form Assumptions Put this in your timer eventBottom to Top… Read More »

Getting all windows

This code explains how to use the API call EnumWindows to change captions, minimize all windows, or anything you need to do with a handle.I explain many things you can do with the base of the code. Original Author: Tim Fischer Assumptions All explanation is in the module with the base function. Use the following to call get windows:… Read More »

HTML Filter

This code filters out the information you want out of homepages. There are simple functions that will help you to reach the information that you want to filter. You can get the page title, filter out the HTML tags and even find the text between keywords. The executable will help you to get started. Original Author: A. B. K.… Read More »

A TTT Millennium game

Artificial intelligence or just some thought and good coding?Be a JUDGE! You decide…New Version just updated code. When compiled the if * and * and * then failed to work correctly Original Author: Derek Hall Attachments File Uploaded Size CODE_UPLOAD40433172000.zip 9/3/2020 3:45:00 PM 72302

A ‘Parse’ function.

To split a string into pieces using a certain character as a delimiter. I do not want to get messages saying, “use the Split() function” as this isn’t present in VB5.Example of this is “hello to you”, with the delimiter as ” “. You’ll get back 3 variables, one containing “hello”, one containing “to” and one containing “you”… Read More »

FormShape Editor and OCX

You can edit the shape of your forms using mouse or images. The OCX attached makes the effect visible in design and runtime mode. Original Author: Florin Florea Assumptions This code is not 100% mine. The original code is called ANYSHAPE.ZIP, but unfortunately I don’t rememberwho the author is. If you recognize your code please e-mail me so I… Read More »

Numerals

Revised Roman Numeral generator. This version will in theory generate numbers in excess of 1000000 using the standard numbering conventions, i.e. 5000 is equal to a V with a line above and below.. Original Author: Mark Darlison Assumptions This code relies on the user NOT using True Type fonts. The problem lies in getting the lines to appear above… Read More »