PDA

Click to See Complete Forum and Search --> : Mouse Pointer over Textbox


Serge
Nov 2nd, 1999, 12:10 AM
Youc can change the Screen.MousePointer property:


Private Sub Form_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Screen.MousePointer = vbDefault
End Sub


Private Sub Text1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Screen.MousePointer = vbUpArrow
End Sub



Look in help for MousePointer property. IT will tell you what standard cursors that are available.


Regards,

------------------

Serge

Software Developer
Serge_Dymkov@vertexinc.com
Access8484@aol.com

Henri
Nov 2nd, 1999, 11:37 AM
In some applications, the arrow mousepointer automatically positions itself over a textbox. What command can I use in VB6 to achieve this?
Thanks.