Hello. I'm actually from MSVC++/MFC world but I need to do some work on an application written under Borland C++. I need to overwrite window styles of the main window to use
WS_CHILD | WS_VISIBLE, the ext styles WS_EX_TOOLWINDOW and set the parent of the main window (don't ask me why I need to do such weird things, it's for a very specific application. In MSVC++/MFC this can be done inside a dedicated method of the main window class that is called right before the main window is created and that passes pointer to CREATESTRUCT as its argument. Is it possible to do something similar under Borland C++?
WS_CHILD | WS_VISIBLE, the ext styles WS_EX_TOOLWINDOW and set the parent of the main window (don't ask me why I need to do such weird things, it's for a very specific application. In MSVC++/MFC this can be done inside a dedicated method of the main window class that is called right before the main window is created and that passes pointer to CREATESTRUCT as its argument. Is it possible to do something similar under Borland C++?