schnullernase
Goto Top

GetCursorPos liefert immer 0

Ich will in VB2005 die Cursorposition abfragen.

Die Funktion GetCursorPos liefert immer 0, egal wohin ich die Maus bewege.

Die Deklaration:

Private Structure POINTAPI
Dim x As Int32
Dim y As Int32
End Structure

Private Declare Function GetCursorPos Lib "user32.dll" (ByVal lpPoint As POINTAPI) As Int32


Die Nutzung der Funktion:

Private Sub Form1_MouseMove(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Me.MouseMove
Dim CP As POINTAPI
GetCursorPos(CP)

TextBox1.Text = CP.x
TextBox2.Text = CP.y
End Sub

für die Werte CP.x und CP.y bekomme ich immer 0.

Kann mir jemand helfen?

Content-ID: 90523

Url: https://administrator.de/contentid/90523

Ausgedruckt am: 22.11.2024 um 22:11 Uhr

Logan000
Logan000 24.06.2008 um 13:32:10 Uhr
Goto Top
Moin

Warum nicht so?
Private Sub Form1_MouseMove(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Me.MouseMove
  TextBox1.Text = e.x
  TextBox2.Text = e.y
End Sub

Gruß L.
Schnullernase
Schnullernase 24.06.2008 um 13:40:41 Uhr
Goto Top
Besten Dank, funktioniert super