I have a Crystal Reports control that is embedded in a Winform. When the application is run, the WaitCursor
(hourglass) is always shown over the Crystal Reports. Attempting to change the Cursor
property for the Crystal Reports Viewer Control in the Property Pane of Visual Studio has no effect (the setting remains WaitCursor
). Attempting to change the Cursor property in the Form_Load
event of the Winform or the Load
event of the Crystal Reports Viewer Control has no effect either.
Is there a way to force the cursor to Default
when the mouse cursor is over the Crystal Reports Viewer Control? This is Crystal Reports 2008.
NativeWindow
and listen in theWndProc
method for the event code for set cursor and then prevent it? – LoathingCursorChanged
event on the CR control? If CR repeatedly changes the cursor toWaitCursor
then you'll end up getting jitter changing back and forth. However, if they only set it once then maybe you can reset it immediately after. – LoathingControl.UseWaitCursor
property. Check in debug mode if it's true, and then set it to false. – LoathingControl.UseWaitCursor
was the problem. If you post an answer, I'll accept. Thanks. – Robert Harvey