Die aber nicht funktionieren!
Mein Stand ist bis jetzt folgender:
Mein Stand ist bis jetzt folgender:
Code:
Public Class Form1
Declare Function GetAsyncKeyState Lib "user32.dll" (ByVal nVirtKey As Keys) As Short
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
If GetAsyncKeyState(VK_LBUTTON) = -32767 Then
tester1.Text = "linke maustaste gedrückt!"
End If
End Sub
End Class