|
Posted by news.microsoft.com on August 9, 2006, 11:24 pm
Please log in for more thread options
Env: vs2005 + 5.0 sdk
use below code to create an editbox, but which comes with
a outside box.
I wanna know use which style to remove the outside box.
Thanks in advance.
leo
:
JUint32 dwStyle = WS_CHILD | ES_AUTOHSCROLL;
m_hWnd = CreateWindow(TEXT("Edit"), TEXT(""),
dwStyle,
//WS_CHILD | WS_VISIBLE,
rc.x, rc.y, rc.dx, rc.dy,
g_hMainWnd, (HMENU)102, g_pTNApp->g_hIntance, this);
|