Category Archives: Visual Basic 6 (VB6)

EasyCalulator

My version of an easy calculator. supports all the major functions and sin,cos, sqrt. Has an easily implimented memory function and running total. Original Author: J C Rock Attachments File Uploaded Size CODE_UPLOAD285.zip 9/3/2020 3:45:00 PM 4403

List Box Function Demonstration

Demonstrates basic fuctions such as Add, Remove & Clear; but also some advanced funtions that use API tricks to find the index value for a string (or partial string); change an item in the list without knowing the index value in advance; and display a tooltip containing the complete name for items too wide to fit in the… Read More »

A mouse module, FINALLY!!! Move,click, +more

This module has the following functions (pretty self explanitory): GetX, GetY, LeftClick, LeftDown, LeftUp, RightClick, RightUp, RightDown, MiddleClick, MiddleDown, MiddleUp, MoveMouse, SetMousePos Original Author: Arthur Chaparyan Assumptions You should know how to create and use a module. If you have any questions, please submit a comment, thanX API Declarations Public Declare Sub mouse_event Lib “user32” (ByVal dwFlags As Long,… Read More »

Boolean arithmetic

This program includes functions for performing Boolean (bitwise) AND, OR, and XOR; as well as left shift, right shift, and one’s complement. Right now, the subroutines are set up to use the values in the textboxes and output the results to another text box. However, you can easily modify them to take passed variables and return the results… Read More »

A Paint program

This program allows users to choose a color and pen size to draw on a picture box and the user can also make circles and fill the picture box with a certain color. ****UPDATED**** August 14. New tools include Circular Gradient maker and Gradient maker,eye dropper and I also put the tools into a list box so it… Read More »

helpful sleep API call to suspend actions

What this API call does is suspend ALL actions for a certain amount of milliseconds(1000 milliseconds=1 second)(duh…) Original Author: Derek Haas Assumptions Just dont enter a number that is huge, or else you will be waiting for a very long time Side Effects Dont enter a super large number. API Declarations Public Declare Sub Sleep Lib “kernel32” (ByVal dwMilliseconds… Read More »

DUN Automatic Redial If not connected to Internet

Automatically redials the specified DUN connection. Designed to keep you online 24/7. Also shows how to put your program in the system tray. shows adding and how to find out windows uptime. Original Author: Bhishan Hemrajani Inputs Name of DUN connection to use Attachments File Uploaded Size CODE_UPLOAD385.zip 9/3/2020 3:45:00 PM 8539

Battle Net Chat (REAL ONE !!) ZIP FORMAT

This is Battle Net Chat application allow you to connect chat execute command and more with the real Battle Net screen images and more…Please visit my new web site and see what you can do ! VB power !!! come and chat with me http://www.virtualgamer.t2u.com Original Author: HarveySolutions Attachments File Uploaded Size Battle_Net103952792002.zip 9/3/2020 3:45:00 PM 333159

Tank ’98

Have you ever played Scourched Earth, a game where two or more tanks strive to blow one another away? This is my version of that game, except not as many featrues. Take a look at it, for at leat it’s really cool. Please leave a comment. Original Author: Feuchtersoft Attachments File Uploaded Size CODE_UPLOAD256.zip 9/3/2020 3:45:00 PM 123945

Advanced Base Converter

Updated code! This function converts numbers into any base, and any base into decimal! Works frek-in’ awesome! Original Author: Feuchtersoft Assumptions Not all bases will work; there are not enough characters to be able to do every base. An error will occur when this happens. Returns ‘ The two functions given are reversible. For example:ConvertToBase(45, 16) = “2D”ConvertFromBase(“2D”, 16)… Read More »