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
-
CONSTANTS,VARIABLES AND KEYWORDS: CONSTANTS: Two types of constants those are: a)primary constants b)secondary constants a)In primary consta...
-
Input/Output with files C++ provides the following classes to perform output and input of characters to/from files: * ofstream: Stream c...
-
package interfaceexercise; // Define an interface with three abstract methods. // Any class that implements this interface has to // impleme...
-
<%@page contentType="text/html" import="java.util.*" %> <!-- http://www.roseindia.net/jsp --> ...
-
# When the user submits form, his information is sent to the corresponding servlet file because we've set the ACTION attribute to point ...
-
Introduction: In this exercise, you will learn how to nvoke both static and non-static (instance) methods of a class. Please note that a st...
-
Syntax of JSP Scriptles are: <% //java codes %> JSP Scriptlets begins with <% and ends %> .We can embed any a...
-
2 Managed Code and the CLR Remember that managed code is code written for (and with) the .NET Framework. Managed code is called manage...
-
The Form's KeyPreview Property To understand this property, lets look on the following example: Start new project, and add 1 Command But...
-
2.1 Intermediate Language, Metadata and JIT Compilation Managed code is not interpreted by the CLR. I mentioned that earlier. But ...
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment