Mar 14, 2003 #1 M Miura Active member Joined Mar 13, 2003 Messages 27 Hi, How can I hide/disable the mousepointer? for a ScreenSaver ? Thanks, Lars J
Mar 15, 2003 #2 Nerseus Danner Joined Oct 22, 2002 Messages 2,547 Location Arizona, USA User Rank *Expert* You can set the forms Cursor property to Cursors.None (I think). _ner
Mar 17, 2003 #3 B bpayne111 Well-known member Joined Feb 28, 2003 Messages 326 Location BFE Me.Cursor.Hide
Mar 17, 2003 #4 Nerseus Danner Joined Oct 22, 2002 Messages 2,547 Location Arizona, USA User Rank *Expert* Whoops, no such thing as Cursors.None. bpayne111 is close, just leave off the Me, as in: Cursor.Hide() and Cursor.Show() -Nerseus
Whoops, no such thing as Cursors.None. bpayne111 is close, just leave off the Me, as in: Cursor.Hide() and Cursor.Show() -Nerseus
Mar 19, 2003 #5 M Miura Active member Joined Mar 13, 2003 Messages 27 Thanks, I will try to get more into this Framework Miura