MouseMove, MouseDown and MouseUp Events (Continue)
Lets check out these events parameters.
Private Sub Command1_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
Each one of these events gets the same parameters:
Button, Shift, X and Y.
The Shift parameter is the same as the KeyDown
event's Shift paramater.
For example, if you'll press the Shift button while clicking
the mouse, the Shift value will be 1.
The Button parameter value is 1 if you've clicked
the left mouse button, and 2 if you've clicked the
right one.
The X and Y parameters are the X and Y coordinates of
the mouse cursor, relative to the upper left button corner.
The coordinates of the upper left button corner are (0, 0)
The coordinates of the Bottom Right button corner are (Button Width, Button Height)
You can try a little example.
Put the following line in the Command Button's MouseMove event:
Print X, Y
This line will print the X coordinate, and next to it
the Y coordinates (For example, the line:
Print "Hello", "World"
will print: Hello World).
Popular Posts
-
Getting Started (Continue) Look at the form with the title bar Form1. This is how your program will look like. Everything you will place on ...
-
4.3 Using the FCL “Give a man a fish and you feed him for a day. Teach a man to fish and you feed him for a lifetime.” The IO strea...
-
Data Form Wizard Visual Basic also allows us to work with DataBinding with it's built-in feature "Data Form Wizard". We will h...
-
Tutorials Chapter 1 : What is SQL Server? Chapter 2 : Compare SQL Server and MS Access Chapter 3 : What is MSDE ? Chapter 4 : SQL Server Edi...
-
Simple Binding Generating DataSet To generate a DataSet, select Data->Generate DataSet from the main menu. From the dialog that opens, as...
-
Console Applications Console Applications are command-line oriented applications that allow us to read characters from the console, write ch...
-
Input/Output with files C++ provides the following classes to perform output and input of characters to/from files: * ofstream: Stream c...
-
Abstract Classes An abstract class is the one that is not used to create objects. An abstract class is designed to act as a base class (to b...
-
OOP Basics Visual Basic was Object-Based, Visual Basic .NET is Object-Oriented, which means that it's a true Object-Oriented Programming...
-
A "service" is an application that can start automatically when the computer starts. There are two start up modes: 1. Automatic - ...
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment