How I can remove or hide some components from window (buttons, combobox etc)?
If you mean at runtime ShowWindow(hWnd, SW_HIDE);
TimoVJL, thanks! That's what I need. But how can I show hidden component again?
ShowWindow(hWnd, SW_SHOW);
Look here (http://msdn.microsoft.com/en-us/library/windows/desktop/ms633548(v=vs.85).aspx)
Thx!