Results 1 to 5 of 5

Thread: >>>>>>>Full Screen Form Q<<<<<<<<<

  1. #1
    Guest
    If you set Form's BorderStyle property to none and window state to vbmaximized then the form appears as fullscreen without showing the startmenu etc. How can I make it to show the start menu????? I want to create my own Form (already did) and I need to add a maximization to it and it can't be FullScreen (I want to see start menu). Thanks for any help

  2. #2
    Good Ol' Platypus Sastraxi's Avatar
    Join Date
    Jan 2000
    Location
    Ontario, Canada
    Posts
    5,134
    Why don't you make the form, and use the api to show the startmenu after the form is loaded.

    Code:
    Private Sub Form_Load()
    'your code here
    End Sub
    -or-

    Code:
    Private Sub Timer1_Timer()
    'your code here
    Timer1.Enabled = False
    End Sub
    All contents of the above post that aren't somebody elses are mine, not the property of some media corporation.
    (Just a heads-up)

  3. #3
    Guest
    ...and the API to do it would be ... (your answer here)
    Sorry no idea.

  4. #4
    Guest

    other problem

    If I'll show the start menu after my form is loaded (or during that event) it won't stop it from disappearing after my form will get focus again (basically my form will be FullScreen every time it gets focus)

  5. #5
    Guest

    Talking Never Mind

    If I show it as vbNormal at startup and then resize it vbMaximize then everything is OK.
    NO MORE FULLSCREEN

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