Edit Control
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
hi guys, I need a help. How to set height of Edit Control? Please let me know if you have any advices or solutions. Thank you very much! Best Regard, KHLin.
You can set the height/width of the edit control using any of the following mehtods. BOOL MoveWindow(HWND hWnd, int X, int Y, int nWidth, int nHeight, BOOL bRepaint ); HWND CreateWindow(LPCTSTR lpClassName, LPCTSTR lpWindowName, DWORD dwStyle, int x, int y, int nWidth, int nHeight, HWND hWndParent, HMENU hMenu, HINSTANCE hInstance, LPVOID lpParam ); Cheers, Vishal