The main window of my utility app should not have an icon in the Title bar. If you do not specify your own icon for the compiler to use, a system default icon is used in the Title bar. The default icon can be suppressed using an extended window style:
Code:
SetWindowLongPtr_(WindowID(#Win), #GWL_EXSTYLE, GetWindowLongPtr_(WindowID(#Win), #GWL_EXSTYLE) | #WS_EX_DLGMODALFRAME)
That certainly works with the system default icon, but if an icon is specified in the compiler, it still appears on the Title bar, meaning that your own icon cannot be applied to the exe file if you want it omitted from the window title bar............
Anybody have a workaround without resorting to a 'Tool' window?