VB Project Source Code

Showing posts with label Mouse location tutorial vb.net. Show all posts
Showing posts with label Mouse location tutorial vb.net. Show all posts

Monday 1 June 2015

Mouse Location tutorial vb.net

Mouse Location tutorial vb.net



Public Class Form1

    Private Sub Form1_MouseMove(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Me.MouseMove
        Label1.Text = "X   " & e.Location.X & "   Y   " & e.Location.Y
    End Sub......