Minimize a Form

G

Guest

Hello!

I have a Form with Modal = Yes.
How can I minimize one form (to be able to read a Report, please).
If to minimize form, they lose the data...

Thanks in advance.
an
 
G

Guest

Make the form not visible before you open the report

Me.visible=False
Docmd.OpenReport "ReportName"

On the close event make the form visible again
Forms![Formname].visible = True
 
G

Guest

O,

Your solution, work fine.
Many thanks.
an

Ofer said:
Make the form not visible before you open the report

Me.visible=False
Docmd.OpenReport "ReportName"

On the close event make the form visible again
Forms![Formname].visible = True

--
\\// Live Long and Prosper \\//
BS"D


an said:
Hello!

I have a Form with Modal = Yes.
How can I minimize one form (to be able to read a Report, please).
If to minimize form, they lose the data...

Thanks in advance.
an
 

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

Top