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
It is a Slider UserControll Original Author: Loreno Heer Attachments File Uploaded Size CODE_UPLOAD2671122000.zip 9/3/2020 3:45:00 PM 2876
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
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
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 »
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 »
Seems VB generate predefined values when use functions RND and RANDOMIZE(6.0),here is minimal improvement which generate You really reandom value… Original Author: Tair Abdurman Code ‘generate random value between minVal and maxVal inclusive’or return -1 if any errorPublic Function GenerateRandom(minVal As Long, maxVal As Long) As Long intr = -1 maxVal = maxVal + 1 If maxVal > 0 Then If minVal >=… Read More »
This is something I made after seeing people request a way to make transparent forms. The nice thing about this though, is that it makes it so that all the controls are still visible! And it works with transparent shapes and lines too! This is a great way to make your programs stand out from the rest, you… Read More »
This module enables you to manage file types programmatically (by accessing the Windows Registry). For example change Text Documents (.txt) to open with a text editor other than Notepad; Change the icon of eg. Text Documents. And a whole lot more.I hope you find this useful! Original Author: Jan Botha Inputs All functions have their own input parameters which… Read More »
Finds out all possible combinations and permutations of any size from a set of characters which you can choose. Alternatively you can use the combinations thus derived to perform bruteforce attacks against another program or you may even add code directly to manipulate the words derived.You can make a dictionary and also there is a demo mode and… Read More »
This code is an ActiveX that let you put any icon image on the System Tray. Just select the image and the tooltip at the Properties Sheet and execute the ColocarIcono procedure. That’s all. (It’s a new version of a previous project published here. Spanish Version) Original Author: Uriel Hernandez Robledo Inputs An icon imageThe ToolTip Attachments File Uploaded… Read More »