I have an application which creates a report then displays it on screen using 'report.Show()'. This shows the report in it's own window, but is not modal. Meaning I can still click on the applications window. Is there a way to make the report shown in modal mode, so until I close the report I can't go back to the application?
Thanks
Show Report in Modal
-
- Posts: 33
- Joined: Sun Jul 02, 2006 6:06 pm
- Location: New Zealand
Show Report in Modal
calling
should show the Report as a Dialog where true is for the argument "bool modalDialog"
Regards,
Brendan
Code: Select all
report.Show(true);
Regards,
Brendan
-
- Posts: 33
- Joined: Sun Jul 02, 2006 6:06 pm
- Location: New Zealand
Show Report in Modal
That was easy! Thanks.