Mauszeigerstartposition bei Windows XP Start verändern?
Ich möchte die Startposition des Mauszeigers verschieben. Z.B. nach oben links.
So das jedesmal, wenn Windows neu gestartet wird, der Mauszeiger sich dort befindet.
Hat jemand eine Idee, wie sich so etwas realisieren lässt?
So das jedesmal, wenn Windows neu gestartet wird, der Mauszeiger sich dort befindet.
Hat jemand eine Idee, wie sich so etwas realisieren lässt?
Bitte markiere auch die Kommentare, die zur Lösung des Beitrags beigetragen haben
Content-ID: 159432
Url: https://administrator.de/forum/mauszeigerstartposition-bei-windows-xp-start-veraendern-159432.html
Ausgedruckt am: 23.12.2024 um 09:12 Uhr
6 Kommentare
Neuester Kommentar
Hallo,
du könntest es ja mal mit diesem VBS probieren, wenn es in den Autostart legst.
wobei hier für dich eher der teil mit SetCursor Interessant ist...
du könntest es ja mal mit diesem VBS probieren, wenn es in den Autostart legst.
' Access the GetCursorPos function in user32.dll
Declare Function GetCursorPos Lib "user32" _
(lpPoint As POINTAPI) As Long
' Access the GetCursorPos function in user32.dll
Declare Function SetCursorPos Lib "user32" _
(ByVal x As Long, ByVal y As Long) As Long
' GetCursorPos requires a variable declared as a custom data type
' that will hold two integers, one for x value and one for y value
Type POINTAPI
X_Pos As Long
Y_Pos As Long
End Type
' Main routine to dimension variables, retrieve cursor position,
' and display coordinates
Sub Get_Cursor_Pos()
' Dimension the variable that will hold the x and y cursor positions
Dim Hold As POINTAPI
' Place the cursor positions in variable Hold
GetCursorPos Hold
' Display the cursor position coordinates
MsgBox "X Position is : " & Hold.X_Pos & Chr(10) & _
"Y Position is : " & Hold.Y_Pos
End Sub
' Routine to set cursor position
Sub Set_Cursor_Pos()
' Looping routine that positions the cursor
For x = 1 To 480 Step 20
SetCursorPos x, x
For y = 1 To 40000: Next
Next x
End Sub
wobei hier für dich eher der teil mit SetCursor Interessant ist...