When I am displaying a report and call LL.Print having set the Cursor to Cursors.WaitCursor, the ListLabel object sets the cursor to Cursors.Default even though is it still getting data from the database and formatting the data for the report.
Is there a way to only set the cursor to Cursors.Default once List & Label has displayed (some of) the data (e.g. the first page)?
C# code snippet:
Cursor.Current = Cursors.WaitCursor;
ll.AutoDestination = LlPrintMode.Preview;
ll.Print();