Fullscreen Forms

  • Thread starter Thread starter aemule
  • Start date Start date
A

aemule

Guest
Hi,

i don´t use Acess for ages and i'm start using it again because of my work!

I want to do a simple application in my work and want to have full control of it.
I want to start a form in fullscreen mode in top of MS Access itself.
Is this possible? And How?

I don't want to maximize the form with "DoCmd.Maximize" because it only maximize the form inside of the access.

I want a form in top of all windows, taskbar, access, etc.

Thanks!
 
You have to use the Maximize command along with setting the forms popup property to yes
 
Maximize form

In the design view click on the "Code" button

Look for the following:
Enter "DoCmd.Maximize"

Private Sub Form_Open(Cancel As Integer)
' Minimize the database window and initialize the form.
DoCmd.Maximize
' Move to the switchboard page that is marked as the default.
Me.Filter = "[ItemNumber] = 0 AND [Argument] = 'Default' "
Me.FilterOn = True

Save and close - Open your form
 

Users who are viewing this thread

Back
Top Bottom