how i can display only the form without the MS Access window?

H

HANA

Hi

i want to display my form only without Ms Access window I want my form to on
the disktop

can any one help

thanks
 
W

Wayne-I-M

Hi Hana

On the tools menu - select the Startup and select the options you (don't)
want to show.

To restore the settings (to see the windows screen again) simply press the
shift key as you are opening the d base

Hope this helps
 
H

HANA

Hi Wayne
thanks but i think that you messd understand me i want my database to
display only the form window when users open it,
without showing the user the Microsoft Access window in the background or the
database window? & i used Dav Ashish VB codes but allways there is some
thing wrong in my steps i don't know what it is
if you can tell me how to do it step by step..... i i'll be thankful for you
 
K

Krizhek

Set the window to pop up and use the below command when the form is loaded.

DoCmd.RunCommand acCmdAppMinimize

You will have to do some changes to how your forms opened but this should
get you the result you want.
 
B

Bob Miller

If you add:
DoCmd.Maximize
immediately before Krizhek's code, the form will cover the whole
screen.
Just be sure you have a way of closing or minimizing the form or you
may have to use the Task Manager to close it.
Also, any forms being opened from this form will need to be popup also.
I don't believe other objects (tables, queries, or reports) can be
opened for viewing on "top of" this form. You should be able to send a
report to a printer though.
Thanks Krizhek for putting us on this tidbit! I will be using this a
lot in the future.
Bob
 
H

HANA

Hi & thanks verey mush for help i will do it all over agean & if i had any
problem i will back to you:)
 
H

HANA

Hi Mr. Bob

will there is some change but there is problem!!!!
ther is something wrong in this code"Me.Visible = True
DoEvents
fSetAccessWindow Switch_HIDE" it alwaeys give me this massge "variable not
defeined"
did this mean that i did not Call this code?
 
Top