Popup Forms and Reports

  • Thread starter Thread starter Garry
  • Start date Start date
G

Garry

Hi, my problem is that I am using a Tab Control as a Popup
Form. On the various tabs I have provision to print
reports. The problem is that the reports (in Print
Preview mode)remain behind the popup form (as they
should). Is there a way of bringing the report to the
front without closing the popup each time which then
requires it to be reopened on closing the report.
 
-----Original Message-----
Hi, my problem is that I am using a Tab Control as a Popup
Form. On the various tabs I have provision to print
reports. The problem is that the reports (in Print
Preview mode)remain behind the popup form (as they
should). Is there a way of bringing the report to the
front without closing the popup each time which then
requires it to be reopened on closing the report.
.
you could set the form's Visible property to False when
you open a report. just set each report's Close event to
change the form's Visible property back to True. the
amount of coding is the same, but the form will show
instantly instead of having to open and load again.
 
Back
Top