change mouse-cursor

  • Thread starter Thread starter Maria
  • Start date Start date
M

Maria

Hello !

I try to change the cursor on the form like this :

Me.Cursor = Cursors.WaitCursor
'reading from database
'showing file
Me.Cursor = Cursors.Arrow


But this doesn't change the cursor at all

I have also tried this :

Me.Cursor = New Cursor("wait01.cur")


But nothing happens..

Can anyone help me ?
 
Maria said:
Hello !

I try to change the cursor on the form like this :

Me.Cursor = Cursors.WaitCursor
'reading from database
'showing file
Me.Cursor = Cursors.Arrow


But this doesn't change the cursor at all

I have also tried this :

Me.Cursor = New Cursor("wait01.cur")


But nothing happens..

Can anyone help me ?

I can't reproduce the problem with Framework 1.1 on WinXP. The cursor
changes as expected.

--
Armin

How to quote and why:
http://www.plig.net/nnq/nquote.html
http://www.netmeister.org/news/learn2quote.html
 
Curious. Grasping at straws here, but you're sure the mouse settings are
correct? Check Mouse pointer settings in Control Panel?
 
Back
Top