ReportViewer winform control?

  • Thread starter Thread starter HockeyFan
  • Start date Start date
H

HockeyFan

Does anyone know if there's a way to override the cursor on the
winform ReportViewer control?
Currently, it wasn't to change to the hourglass even when the report
viewer isn't actually doing anything yet. I want it to be
Cursor.Default. The ReportViewer control has properties that suggest
that you can change this, but it doesn't appear to actually do it.
 
Does anyone know if there's a way to override the cursor on the
winform ReportViewer control?
Currently, it wasn't to change to the hourglass even when the report
viewer isn't actually doing anything yet.  I want it to be
Cursor.Default.  The ReportViewer control has properties that suggest
that you can change this, but it doesn't appear to actually do it.

Figured it out. Just in case someone else has this issue, the
following solves the problem.

ReportViewer1.UseWaitCursor = False
 
Back
Top