Results 1 to 3 of 3

Thread: Full screen??

  1. #1
    haravinth
    Guest

    Exclamation Full screen??

    How do i make full screen form???

  2. #2
    PowerPoster rjlohan's Avatar
    Join Date
    Sep 2001
    Location
    Sydney, Australia
    Posts
    3,205
    You just need to set the Width, Height, Top and Left appropriately:

    Code:
    Sub FullScreen()
       Me.Height = Screen.Height
       Me.Width = Screen.Width
       Me.Top = 0
       Me.Left = 0
    End Sub
    -----------------------------------------
    -RJ
    [email protected]
    -----------------------------------------

  3. #3
    l33t! MrPolite's Avatar
    Join Date
    Sep 2001
    Posts
    4,428
    if you dont want to change the resolution, just change the windowState property to vbMaximized and change the BorderStyle of your form to 0

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width