I would be very grateful for all help.
Disabling buttons that appear on window
Hi, How can I disable the close, minimize and maximize buttons that appear on the right top corner of a window? I wish to force the user to press the Exit button placed on form.
Johnny GCPosted May 19, 2008, 12:38 PM
on the form`s properties tab there is a property under WindowStyle called "ControlBox", set it to false or use code like:
public Form1()
{
InitializeComponent();
this.ControlBox = false;
}