|
|
Title | Make an annoying game that moves the cursor |
Keywords | game, annoy, annoying, SetCursorPos |
Categories | Puzzles and Games, API |
|
|
Ask a leading question. Then when the mouse moves over the No button, use SetCursorPos to move it to the Yes button.
|
|
Private Sub Command2_MouseMove(Button As Integer, Shift As _
Integer, x As Single, y As Single)
SetCursorPos Cx, Cy
End Sub
|
|
|
|
|
|