Click here to Skip to main content
15,885,546 members
Articles / Programming Languages / Visual Basic
Tip/Trick

Disable the Close box on a form

Rate me:
Please Sign up or sign in to vote.
4.97/5 (27 votes)
18 Feb 2012CPOL 84.4K   15   14
Disable the Close box on a form

If you want to prevent the user from closing your form until he has dealt with something really important, you can set

Form.ControlBox=false

but this also removes the Min, Max, and system menu from the form as well.
You cannot (it seems) remove just the Close box, but you can disable it, and it alone. To disable and grey out the Close box, override the CreateParams getter:

protected override CreateParams CreateParams
    {
        get
        {
            CreateParams parms = base.CreateParams;
            parms.ClassStyle |= 0x200;  // CS_NOCLOSE
            return parms;
        }
    }

WARNING:

  1. If you do this, all normal methods of closing the form become unavailable to the user. Use this only when it is really needed.
  2. Remember to provide some way to close the form (and test it!)

History

2016-07-20 Typo fixed - thanks Brisingr Aerowing!

2010-01-26 Original version

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
CEO
Wales Wales
Born at an early age, he grew older. At the same time, his hair grew longer, and was tied up behind his head.
Has problems spelling the word "the".
Invented the portable cat-flap.
Currently, has not died yet. Or has he?

Comments and Discussions

 
GeneralReason for my vote of 5 I found it helpful. Hence voted 5. Pin
ProEnggSoft24-Feb-12 18:50
ProEnggSoft24-Feb-12 18:50 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.