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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Opening a form by itself.

Status
Not open for further replies.

krwyth

MIS
Mar 12, 2003
9
0
0
US
I would like to have an access form open independantly of access (so that you do not see the access application in the background). I'm pretty sure I have seen this done but can not find the topic in help.

Can anyone point me in the right direction? TIA
 
I don't believe this is possible unless your talking about making the application an executable. If so look up mde.

hth
 
This can be done so that access isn't exacly visible... It will be on the start bar, but you can have a form open (change the form to a pop up form), and minimize the access program... The form you have open should still be visible... Look into it...

--James
junior1544@jmjpc.net
Life is change. To deny change is to deny life.
 
Hi,

I believe that you are looking for this code:

'Author: Dev Ashish

To show the database window, run
Docmd.SelectObject acTable, , True

To Hide the database window, run
Docmd.SelectObject acTable, , True
Docmd.RunCommand acCmdWindowHide

HTH,

jbehrne If at first you don't succeed, call in an airstrike. - Murphy's Laws of Combat Operations
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top