Category Archives: Visual Basic 6 (VB6)

Disable Right Mouse Click in Webbrowser Control

Processes Mouse actions for Webbrowser Control enabling you to disable the action. This is an update due to requests from people that could not get it working. I have included a sample project to show it working. Original Author: Chris Bint Assumptions This example code places a HOOK into the message queue. When a new message is received it… Read More »

!!!*Hide the Mouse Pointer!! EASY!*!!!

This simple code hides the mouse pointer when you want to. (o: Original Author: SeeD Inputs Make a new project. Add a module. Add 2 Command Buttons. Code ‘put this in your moduleDeclare Function ShowCursor& Lib “user32” _(ByVal bShow As Long)’Add this code to Command1.Private Sub Command1_Click()ShowCursor (bShow = True)End Sub’Add this to Command2.Private Sub Command2_Click()ShowCursor (bShow = False)End… Read More »

The Most Simple CoolBar (no subclassing)

Create a Coolbar (like MS Office 97) from a normal VB toolbar.It’s not necessary to subclass the form or something like that, just a few lines of code, and that’s it. Original Author: Damian Janowski Attachments File Uploaded Size CODE_UPLOAD293.zip 9/3/2020 3:45:00 PM 4921

Form Trick

When your user closes your form, it shrinks and slowly drifts off the screen in the direction of YOUR choice! (o: A simple code! (o: Original Author: SeeD Assumptions OK, do this:1) Start up a new project in your Vb.2) Add a timer – set it’s interval to 23) Add the code below to the timer. (o: Code ‘Add… Read More »

A HIGHLIGHTED LABEL

This code was publshed before, but this is a much simpler way. This code is very cool! When you move a mouse over a label, the text lights up! When you move your mouse off of the label, the text turns back to its original color. VERY COOL, VERY EASY! Original Author: SeeD Inputs Follow these easy directions (o:1)… Read More »

ASP Code Library and Viewer

This zip file contains ASP codes for Accessing Microsoft Access Database, Microsoft Text driver, Cookies, CDO mail component and many … Original Author: Ramesh Thiruchelvam Attachments File Uploaded Size CODE_UPLOAD1649.zip 9/3/2020 3:45:00 PM 9692

(Screen Saver) diffuseGravity

This screen saver simulates 4 particles with gravity, and draws color changing lines between them. Gravity, refresh, and number of color bars are fully configurable, and you end up with some VERY neat pictures. I used the screen saver template at vbhelper.com as a starting point. Original Author: John Stalcup Inputs You have to click the left or middle… 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 »

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 »