|
-
Apr 4th, 2008, 08:32 PM
#1
Thread Starter
Hyperactive Member
Minimize form
I have a form without the border, and i want to put a button the the top panel on the form so that once its clicked, the form will be minimize.. How can that be done?
-
Apr 4th, 2008, 08:37 PM
#2
Re: Minimize form
Me.WindowState = vbMinimized
-
Apr 4th, 2008, 09:47 PM
#3
Thread Starter
Hyperactive Member
Re: Minimize form
its minized but i cant see it at the taskbar.
-
Apr 4th, 2008, 10:03 PM
#4
Re: Minimize form
 Originally Posted by wence
its minized but i cant see it at the taskbar.
Changing the BorderStyle property may also change the setting of the ShowInTaskbar property, so you probably need to set the ShowInTaskbar property back to True.
-
Apr 5th, 2008, 03:56 AM
#5
Re: Minimize form
Typically what is shown in the taskbar is the windows caption. A borderless form does not have a caption.
-
Apr 5th, 2008, 04:45 AM
#6
Re: Minimize form
Set the ShowInTaskBar property to TRUE (after setting BorderStyle to None… it gets reset automatically if you change it).
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
|