How to remove the close box, but still keep the max and min box in

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

MyForm.ControlBox = false;
MyForm.MaximizeBox = true;
MyForm.MinimizeBox = true;

This is not working very well. The form shows without the whole controlbox (max, min, and close box), until you double click the form to maximize it. Then the form will show both the maximize and minimize box.

Any ideas? Thanks.
 
Back
Top