Is it possible to change the MultiLine style on a textbox or can it be only set during window creation?
I thought I could something like
long tStyle=0;
tStyle=GetWindowLong(m_hwnd,GWL_STYLE);
if ((tStyle | ES_CENTER)==tStyle)
{
tStyle = tStyle ^ ES_CENTER;
}
tStyle=tStyle | ES_RIGHT;
SetWindowLong(m_hwnd,GWL_STYLE,tStyle);
