Is there a way to allow the Maximize/Minimize properties to be present within the Panels Type Dialog?
CA Plex 7.21
All Supported Operating Systems
The dialog window is equipped with the system Close button. It is usually modal, in which case the user is not allowed to continue any other operation until the dialog box is dismissed.
To achieve this requirement, the following source code object will be helpful.
{
HWND myhWnd= ::GetActiveWindow();
DWORD style = GetWindowLongPtrA(myhWnd, GWL_STYLE);
style |= WS_MAXIMIZEBOX;
style |= WS_MINIMIZEBOX;
SetWindowLongPtrA(myhWnd, GWL_STYLE, style);
}
To get the buttons to respond, you will need to enable the Max/Min button events by applying the THICK FRAME Plex panel property