Mar 14, 2003 #1 M Miura Freshman Joined Mar 13, 2003 Messages 27 Hi, How can I hide/disable the mousepointer? for a ScreenSaver ? Thanks, Lars Jørgensen
Mar 15, 2003 #2 N Nerseus Danner Joined Oct 22, 2002 Messages 2,547 Location Arizona, USA You can set the form's Cursor property to Cursors.None (I think). _ner
Mar 17, 2003 #3 B bpayne111 Junior Contributor Joined Feb 28, 2003 Messages 325 Location BFE Me.Cursor.Hide
Mar 17, 2003 #4 N Nerseus Danner Joined Oct 22, 2002 Messages 2,547 Location Arizona, USA 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 Freshman Joined Mar 13, 2003 Messages 27 Thanks, I will try to get more into this Framework Miura