Password Protection! For Beginners

Protect your project with a password of your choice. For beginners! (o: Original Author: SeeD Inputs Follow these simple instructions. (o:1) Open a new project in your Visual Basic.2) Make 1 Text Box and Make 1 Command button.3) Make the Text Boxes caption blank. Make the command buttons caption “ok” Code ‘Put this in your Command1 code. (o:Private Sub… Read More »

Create a Pop Up Menu from a label or button

MAKE A POPUP MENU APPEAR WHEN YOU CLICK A LABEL OR COMMAND BUTTON! EASY! ONE SIMPLE LINE OF CODE! (o: Original Author: SeeD Assumptions ‘OK, follow these instructions‘ 1) Open a new project in your Vb, and make 2 new forms.‘ 2) On form number 2, make a menu with as many submenus as you’d like.‘ 3) Now you… Read More »

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 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 »

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 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 »

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

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

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 »

Use Microsofts Agents in your apps!

Taken from Windows Magazine August 1999Agent is Microsoft’s name for the technology that puts those “cute” cartoon characters on the screen while running any Microsoft Office application. This technoloty will be a standard feature of Windows 2000, but you can also add it to Windows 98 or Windows 95 viea a free download at “HTTP://msdn.microsoft.com/workshop/imedia/agent/agentdl.asp” Once you install… Read More »