How to replace a form's menu with one, created with WinAPI?
I create a menu with CreateMenu() func, popupulate it with items and then use SetMenu() to make it belonging to the form. But a VB form always sets its own menu back in some cases (when receives WM_ACTIVATE, or while resizing child windows).
Maybe is there a some more optimal way to set a menu, then subclassing a form and searching every message causing the form to set its own menu back?