Results 1 to 5 of 5
  1. #1
    chiaro59 is offline Novice
    Windows XP Access 2007
    Join Date
    Oct 2014
    Posts
    14

    Form full screen

    Dear all,


    How can I get a form full screen ?
    Thanks.

  2. #2
    robrich22's Avatar
    robrich22 is offline Advanced Beginner
    Windows 7 64bit Access 2007
    Join Date
    Feb 2013
    Location
    Louisville, KY
    Posts
    41
    Quote Originally Posted by chiaro59 View Post
    Dear all,
    How can I get a form full screen ?
    Thanks.
    Call DoCmd.Maximize in the form's load event.

    Private Sub Form_Open(Cancel As Integer)
    DoCmd.Maximize
    End Sub

  3. #3
    chiaro59 is offline Novice
    Windows XP Access 2007
    Join Date
    Oct 2014
    Posts
    14
    Dear Robrich,
    I realize that i was not clear, I want to get a form full screen without tool bar.
    Thanks.

  4. #4
    robrich22's Avatar
    robrich22 is offline Advanced Beginner
    Windows 7 64bit Access 2007
    Join Date
    Feb 2013
    Location
    Louisville, KY
    Posts
    41
    Quote Originally Posted by chiaro59 View Post
    Dear Robrich,
    I realize that i was not clear, I want to get a form full screen without tool bar.
    Thanks.
    Code:
    Public Sub HideToolBars()
        Dim x As Integer
        
        For x = 1 To CommandBars.Count
            CommandBars(x).Enabled = False
        Next x
    End Sub
    
    Public Sub UnhideToolBars()
        Dim x As Integer
        
        For x = 1 To CommandBars.Count
            CommandBars(x).Enabled = True
        Next x
    End Sub

  5. #5
    chiaro59 is offline Novice
    Windows XP Access 2007
    Join Date
    Oct 2014
    Posts
    14
    Dear Robert,
    I was not clear,
    I want a form full screen of monitor, without other.
    Thanks

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Open Report In Full Screen (Not Maximized)
    By Trek-Fan in forum Reports
    Replies: 3
    Last Post: 07-29-2014, 02:22 PM
  2. Full Screen Form on Access 2007
    By fekrinejat in forum Forms
    Replies: 1
    Last Post: 02-08-2013, 02:53 PM
  3. Replies: 1
    Last Post: 08-09-2012, 08:56 PM
  4. Replies: 11
    Last Post: 06-05-2011, 09:51 PM
  5. form won't go "full screen"
    By stephenaa5 in forum Forms
    Replies: 3
    Last Post: 10-30-2009, 04:10 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums