Position of Minimised Form

  • Thread starter Thread starter d
  • Start date Start date
D

d

Hi,
I have a form that user can minimise once they have select filter
information for a report.
My problem is when the form is minimised it obscures the page select
controls of the report.

Has anyone got any code suggestion so that the minimised form can be
reposition to say the bottom right-hand side?

Thank you for any help
 
Hi,
I have a form that user can minimise once they have select filter
information for a report.
My problem is when the form is minimised it obscures the page select
controls of the report.

Has anyone got any code suggestion so that the minimised form can be
reposition to say the bottom right-hand side?

Thank you for any help

Why minimized? Why not just make it not visible?

To make a form not visible from an event on that form:
Me.Visible = False

To make the form Visible again from an event on a different form or a
report:
forms!FormName.Visible = True
 
Back
Top