Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Minamize "hyperlink" form

Status
Not open for further replies.

cwash

Technical User
May 27, 2002
45
0
0
US
I have a (access 2000) form with several individual hyperlinks to their respective reports (click a link to open a report). how do i get the 'hyperlink form' to close or minimize when a hyperlink to a report is clicked.

right now, when a hyperlink is clicked and the report opens, the hyperlink form remains on top of the report.

TIA
 
Hey,

You should be able to do this:

DoCmd.Minimize
DoCmd.OpenForm "YourNewForm"

The first line of code will minimize the currently selected form.

HTH,

Doc Tree
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top