| | |
How can I get Mouse Position?
Please support our VB.NET advertiser: Intel Parallel Studio Home
![]() |
•
•
Join Date: Feb 2009
Posts: 2
Reputation:
Solved Threads: 0
Better still, use:
This gets the location relative to the container Form, not the screen.
Function:
Or
VB.NET Syntax (Toggle Plain Text)
dim mouseLoc as point = myControl.pointToClient(myControl.Cursor)
This gets the location relative to the container Form, not the screen.
Function:
VB.NET Syntax (Toggle Plain Text)
Private Function getMouseLoc() As Point getMouseLoc = Me.PointToClient(Me.Cursor.Position) Return getMouseLoc End Function dim mouseLoc as point = getMouseLoc()
Or
VB.NET Syntax (Toggle Plain Text)
Dim mouseLocX as integer = getMouseLoc.X Dim mouseLocY as integer = getMouseLoc.Y
•
•
Join Date: Oct 2009
Posts: 1
Reputation:
Solved Threads: 0
•
•
•
•
VB.NET Syntax (Toggle Plain Text)
Private Sub Form1_MouseMove(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles MyBase.MouseMove Label1.Text = "X." & e.X & vbCrLf & "Y." & e.Y End Sub
Last edited by DOT208; Oct 22nd, 2009 at 8:24 pm.
![]() |
Similar Threads
- set mouse position (VB.NET)
- Tkinter set mouse position? (Python)
- mouse position (Java)
- finding mouse position relative to my window (C++)
- Convert mouse position to Texture position on ball (Game Development)
Other Threads in the VB.NET Forum
- Previous Thread: Problem with VB 2008 program
- Next Thread: RichTextBox SpellCheck with GetSpellingError
| Thread Tools | Search this Thread |
"crystal .net .net2005 30minutes 2005 2008 access account arithmetic array assignment basic binary bing button buttons center check code combobox component connectionstring convert crystalreport data database databasesearch datagrid datagridview design dissertation dissertations dissertationthesis dosconsolevb.net dropdownlist excel file-dialog firewall folder ftp google hardcopy image images insert isnumericfuntioncall listview login math memory mobile ms navigate net networking opacity output passingparameters peertopeervideostreaming picturebox picturebox1 port print problemwithinstallation project reports" save savedialog searchbox serial soap sorting string table tcp temp text textbox timer toolbox trim update updown upload useraccounts usercontrol vb vb.net vb.netcode vb.netformclosing()eventpictureboxmessagebox vb.nettoolboxvisualbasic2008sidebar vb2008 vbnet view visual visualbasic visualbasic.net visualstudio web wpf





