Position of Minimised Form

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
 
F

fredg

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top