form visibility problem

  • Thread starter Thread starter mon
  • Start date Start date
M

mon

I have a macro which prints reports from a form. I set
the form visible property to no otherwise the report is
under the form. I would like the form to be visible once
the report is closed. How do I do that? Thanks, Mon
 
try adding a procedure to the report's On Close property to show the form,
as

Private Sub Report_Close()

Forms!FormName.Visible = True

End Sub

hth
 
thanks hth - that works.
mon
-----Original Message-----
try adding a procedure to the report's On Close property to show the form,
as

Private Sub Report_Close()

Forms!FormName.Visible = True

End Sub

hth





.
 
Back
Top