Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to Disable the Windows Close Button 1

Status
Not open for further replies.

PRPhx

MIS
Jul 4, 2005
747
US
I have a project with several forms. I need to know how to disable the form's Close button (The one in the upper right hand corner) for all form's except my main form. Any ideas/code samples would be helpful!

I've searched the internet, but there isn't much availble for vb.net 2003.

Thanks in advance.
 
Put this in the code for the form that you want to have the close button disabled:

Protected Overrides ReadOnly Property CreateParams() As CreateParams
Get
Dim CS_NOCLOSE As Integer = Int32.Parse("200", Globalization.NumberStyles.HexNumber)
Dim cp As CreateParams = MyBase.CreateParams
cp.ClassStyle = CS_NOCLOSE
Return cp
End Get
End Property

I got this code from this link:

[URL unfurl="true"]http://www.techjamaica.com/forums/showthread.php?p=239827[/url]

I got this link as the first URL in a Google search for 'vb .net 2003 disable form close button'

I used to rock and roll every night and party every day. Then it was every other day. Now I'm lucky if I can find 30 minutes a week in which to get funky. - Homer Simpson

Arrrr, mateys! Ye needs ta be preparin' yerselves fer Talk Like a Pirate Day! Ye has a choice: talk like a pira
 
in the FormClosing event of the child forms, add the following:

Code:
If e.CloseReason <> CloseReason.ApplicationExitCall Then
  e.Cancel = True
End If



mr s. <;)

 
jebenson:
Thanks!! It worked perfectly! I tried different google searches. Guess just not the right one ....
 
Glad I was able to help! Yeah, it can be difficult sometimes to hit just the right words to get what you want from Google.

I used to rock and roll every night and party every day. Then it was every other day. Now I'm lucky if I can find 30 minutes a week in which to get funky. - Homer Simpson

Arrrr, mateys! Ye needs ta be preparin' yerselves fer Talk Like a Pirate Day! Ye has a choice: talk like a pira
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top