Form WITH Minimize, but NOT close?

M

mdb

Can anyone suggest how I might achieve having a Minimize button, but NOT a
maximize or close button on a form?

Thanks!

-mdb
 
H

Herfried K. Wagner [MVP]

mdb said:
Can anyone suggest how I might achieve having a Minimize button, but NOT a
maximize or close button on a form?

Add the code below to your form and set the form's 'MaximizeBox' property to
'False':

\\\
Protected Overrides ReadOnly Property CreateParams() As CreateParams
Get
Dim cp As CreateParams = MyBase.CreateParams
Const CS_DBLCLKS As Int32 = &H8
Const CS_NOCLOSE As Int32 = &H200
cp.ClassStyle = CS_DBLCLKS Or CS_NOCLOSE
Return cp
End Get
End Property
///
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top