|
-
Feb 3rd, 2000, 11:27 AM
#1
Thread Starter
New Member
How do I get forms to display as full-screen, i.e. there is no title bar, and only the contents of the form on the screen, with a black background (the background of the form could be set to black to do this part).
Can anyone give me a few tips?
Thanks,
Scott.
-
Feb 3rd, 2000, 01:04 PM
#2
Hyperactive Member
try this
Form1.WindowState = 1 '(maximized)
Form1.Appearance = 0 '(Flat)
Form1.BorderStyle = 0 '(None)
Form1.ControlBox = False
That should do it for you.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|