A: A pop-up window is an overlapped window with optional title bar and border.
It is created by specifying WS_POPUP style in CreateWindow or CreateWindowEx function.
Notes
pop-up windows are generally used for dialogs and other temporary windows that appear outside an application's main window;
in practice is used the composite style WS_POPUPWINDOW instead of WS_POPUP;
this adds a border and system menu.
Bookmarks