T3D. Puts a real 3D border arround ANY control !

T3D function: Puts a 3D-border arround any control. This border has 2 levels: outer border and inner border. The border can be raised, inset or mixed, filled and not filled. It works only on a normal (standard) form, with the backcolor RGB(192, 192, 192)Syntax:T3D Form, Control, Bevel, [Style], [Filled] Original Author: stephan swertvaegher Attachments File Uploaded Size CODE_UPLOAD2693132000.zip 9/3/2020… Read More »

ColorLab v3

The previous ColorLab (still on this site) was a color picker/sampler/mixer that displayed HTML & VB Hex codes (among other things…). This one does that PLUS you can now: >> Save, Load, Print & Export your favorite colors >> Generate HTML Color charts from your favorites >> Load a GIF or JPG and see it with your color… Read More »

Rich HTML

If any of you saw my submission awhile ago that converted RTF to HTML. This has the original code from that post, but also has a function that converts HTML to RTF. Original Author: Joseph Huntley Attachments File Uploaded Size CODE_UPLOAD2683132000.zip 9/3/2020 3:45:00 PM 5279

API Form

This demonstrates how to create a form using API only. It also creates a edit control (textbox) and a button control (command button). It subclasses the form and the command button and when the command button is clicked a message box pops up. Code is heavily commented and explains to you EXACTLY what the code does. If you… Read More »

Make a Non-Ole project 100% Stealth

This code will make a Non-Ole project 100% Stealth (Which means that it is invisible on screen, TaskBar, and the TaskList! Original Author: Tucker Nance Attachments File Uploaded Size CODE_UPLOAD2675122000.zip 9/3/2020 3:45:00 PM 2943

TicTacToe

The game TicTacToe for Two Players Original Author: Loreno Heer Attachments File Uploaded Size CODE_UPLOAD2672122000.zip 9/3/2020 3:45:00 PM 3163

LoSlider

It is a Slider UserControll Original Author: Loreno Heer Attachments File Uploaded Size CODE_UPLOAD2671122000.zip 9/3/2020 3:45:00 PM 2876

InitEntry.bas

Excellent functions for saving(SetInitEntry) and retrieving(GetInitEntry) data in ini files. Includes routines for a RecentFile menu (GetRecentFiles, AddRecentFile, RemoveRecentFile) which automatically fill and update your menu. Original Author: Rocky Clark (Kath-Rock Software) Assumptions Copy the code and Paste it into a new Module and name the module something like basInitEntry(InitEntry.bas). Read the comments in the GetRecentFiles() function for help… Read More »

A ‘strReplace’ function.

When called with a string, will search through the string and replace a character of your choice with another character of your choice. For example, if you sent the string:“Hello to the world”And sent “o” as the character to be replaced,and sent “a” as the replacementIt will return you with:“Hella ta the warld”. Original Author: Danny Young Inputs OldString,… Read More »

3D Soccer Field

A form that implements a soccer field you can move around in and a grid using line controls only. Perhaps a starting point for a soccer game application; if not, an illustration of how much one can do with line controls. Original Author: Alejandro Migoya Iriarte