Feeds:
Posts
Comments

Archive for April, 2006

Resizing Edit control

Here is an example of How to resize Edit control :
CRect rect;
((CEdit*)GetDlgItem(IDC_EDIT))->GetClientRect(rect); ((CEdit*)GetDlgItem(IDC_EDIT))->MoveWindow(rect.left + 20,rect.top + 34 ,rect.Width() – 170,20);

Read Full Post »

CstdioFile File;
::SetEndOfFile((HANDLE)File.m_hFile);

Read Full Post »