Why this doesn't work?
public CMyTestView: class CView
BOOL CMyTestView::PreCreateWindow(CREATESTRUCT& cs)
{
// TODO: Modify the Window class or styles here by modifying
// the CREATESTRUCT cs
cs.cy = 400;
cs.cx = 200;
return CView::PreCreateWindow(cs);
}
the windows is always big, witdh = 1000.( use mouse clikc to check position).
thanks
