|
-
Sep 14th, 2000, 05:54 AM
#1
I need to minimise a form, without using the buttons on the app. bar. I was thinking something like:
Form1.minimize
but this doesn't work. Has anyone got any ideas?
-
Sep 14th, 2000, 05:56 AM
#2
Addicted Member
-
Sep 14th, 2000, 06:05 AM
#3
I always recommend using constants because the code is much clearer:
Code:
Form1.WindowState = vbMinimized
Form1.WindowState = vbMaximized
Form1.WindowState = vbNormal
-
Sep 14th, 2000, 06:10 AM
#4
Addicted Member
um...
dude, Form1.WindowState = 1 is a constant.
-
Sep 14th, 2000, 06:12 AM
#5
Of course it is! I meant using named constants.
-
Sep 14th, 2000, 06:16 AM
#6
Addicted Member
OK, I'll let you off...
this time.
Bwahahahahaha
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
|