how to hide access window

bee55

Registered User.
Local time
Today, 12:28
Joined
Oct 27, 2011
Messages
50
Dears,
i would like to hide the access window and only startup form should be appear.
your care will be apprciated
 
What version of Access are you using. The steps are slightly different depending upon the version.
 
Hmm, thats funny I found this thread, because just a few minutes ago, I posted this.
 
Your form has to be a Pop-Up and I believe Modal form, plus you will struggle to open more than one form at once. Also, you will struggle to open a report.

Bottom line is don't waste your time trying to implement this.

Attached is an example (Access 2007).
 

Attachments

I think you gave us the wrong link Alan. I don't see anything there about the db window.
 
How do you set up the function to work with 64 systems? I am running window 8 pro and Access 2010. I want just my user forms to show and not the access window.

Here it the code but I don't know how to set the function API to 64 bit users

Private Declare Function IsWindowVisible Lib "user32" (ByVal hwnd As Long) As Long

Changing the "user32" to user64 does not work? Anyone have suggestions on 64 bit systems?
 
Is Access 32? If so, I think it is the same.

Edit- I think it is the same either way.
 
yeah my bad, I meant how do I adapt the function to work on a 64 bit OS
 
I found it, I have to use ptrSafe in the function declaration.


Private Declare PtrSafe Function IsWindowVisible Lib "user32" (ByVal hwnd As Long) As Long
Dim dwReturn As Long
 

Users who are viewing this thread

Back
Top Bottom