That is a GroupBox control, which is nothing more than a "BUTTON" control with the BS_GROUPBOX, WS_CHILD, and WS_GROUP styles.Originally Posted by aLonBalon
i.e.
Code:CreateWindow("BUTTON", "Text_Displayed", BS_GROUPBOX | WS_CHILD | WS_VISIBLE | WS_GROUP, 10, 10, 200, 130, hwnd, NULL, hInst, NULL);




Reply With Quote