R
RB Smissaert
How can I determine the system.cursor in Word?
It always gives me 2, the normal cursor:
Sub test()
'Application.System.Cursor = wdCursorWait '0
'Application.System.Cursor = wdCursorIBeam '1
'Application.System.Cursor = wdCursorNormal '2
Word.Application.System.Cursor = wdCursorNorthwestArrow '3
MsgBox Word.Application.System.Cursor 'this will still give 2
End Sub
RBS
It always gives me 2, the normal cursor:
Sub test()
'Application.System.Cursor = wdCursorWait '0
'Application.System.Cursor = wdCursorIBeam '1
'Application.System.Cursor = wdCursorNormal '2
Word.Application.System.Cursor = wdCursorNorthwestArrow '3
MsgBox Word.Application.System.Cursor 'this will still give 2
End Sub
RBS