0
How to enable Mouse Wheel Scrolling in VB6How to enable Mouse Wheel Scrolling in VB6

This article will guide you through on how to enable Mouse Wheel Scrolling in VB6. 1. You need to download the Microsoft's VB6 Mouse Wheel Addin. 2. Run the Self-Cabinet Extractor and Unzip the necessary files.    You may change the destination to …

Read more »

0
Make an application on top of another window in VB6Make an application on top of another window in VB6

Maintaining an application on top of other applications, regardless if they were present on the screen or are called later is. VB6: Maintaining an application over the others     * In a general module     * In the opening form     * Calling the funct…

Read more »

0
Compact a JET database using ADO in VB6Compact a JET database using ADO in VB6

The following routines demonstrates how to compact a JET database using ADO: Option Explicit 'Purpose     :  Compact a JET (Access) database using ADO 'Inputs      :  sDatabasePath                   The path to the database path eg. C:\nwind.mdb '   …

Read more »

1
Open an External File, URL, Email and System Apps in VB6Open an External File, URL, Email and System Apps in VB6

The ShellExecute function allows you to open external application, specific URL location, email address or launch system applications upon clicking on a single button. 1. Start a new Standard Exe Project. 2. Add this code in General Declarations. Pr…

Read more »

0
Auto-adjust Column Width of a Listview Control in VB6Auto-adjust Column Width of a Listview Control in VB6

The following function auto adjusts column width of listview controls in vb6. Just copy and paste the code below on your project and call the function after loading data on your listview control. Private Declare Function SendMessage Lib "user32" Ali…

Read more »

1
VB KeyAscii Code and ValuesVB KeyAscii Code and Values

Visual Basic KeyAscii Values can range from 0 to 255.  Here is a chart which shows all possible KeyAscii values along with the character which they represent.To type out any of these characters without pressing the actual character you can do this.H…

Read more »
 
123 ... 11»
 
Top