I’m trying to hide the menubar in a C++ application using the windows API. I’m using AppendMenu / RemoveMenu to edit items. But I’m sick of the whole menu based interface and I just want to hide the whole application menubar. How can I do that using the windows API?
Share
Call SetMenu with a NULL
HWNDparameter, according to the docs.