Quote Originally Posted by aLonBalon
I need a framework line like shown in with "chat" tag. Is there a function for this ?
That is a GroupBox control, which is nothing more than a "BUTTON" control with the BS_GROUPBOX, WS_CHILD, and WS_GROUP styles.

i.e.
Code:
CreateWindow("BUTTON", "Text_Displayed", BS_GROUPBOX | WS_CHILD | WS_VISIBLE | WS_GROUP,
              10, 10, 200, 130, hwnd, NULL, hInst, NULL);