Console Problem

  • Thread starter Thread starter Uzi Baruch
  • Start date Start date
U

Uzi Baruch

Hi

is there a way to remove the console control box (i.e not enable the close
button and title)

Thanks,
Uzi
 
Hi, Uzi

You can disable control box and menu items using standard Win32 API
GetSystemMenu and DeleteMenu, however this will not remove UI elements form
console - will only disable them.

I did not do that for title though
HTH
Alex
 
There's properties on a form for removing the ControlBox, MinimizeButton,
MaximizeButton and Text (title, which you remove by setting to an empty
string).
 
Back
Top