i used to use GML and it had a variable called mouse_x
how can i get the mouses position in vb.net?
Printable View
i used to use GML and it had a variable called mouse_x
how can i get the mouses position in vb.net?
VB Code:
Dim points As Point points = Me.MousePosition MessageBox.Show("X = " & points.X()) MessageBox.Show("Y = " & points.Y())
thx alot.