Click here to Skip to main content
15,911,896 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralFileDialog - win32 Pin
Murlai22-Sep-04 21:34
Murlai22-Sep-04 21:34 
GeneralRe: FileDialog - win32 Pin
RChin22-Sep-04 22:06
RChin22-Sep-04 22:06 
GeneralRe: FileDialog - win32 Pin
Murlai23-Sep-04 17:37
Murlai23-Sep-04 17:37 
QuestionDo they have some relationship? Pin
Guoguor22-Sep-04 20:52
Guoguor22-Sep-04 20:52 
AnswerRe: Do they have some relationship? Pin
cmk22-Sep-04 22:04
cmk22-Sep-04 22:04 
GeneralRe: Pragma Pin
Ramkrishna Pawar22-Sep-04 20:44
Ramkrishna Pawar22-Sep-04 20:44 
GeneralSize of the Edit Control Pin
Neelesh K J Jain22-Sep-04 20:22
Neelesh K J Jain22-Sep-04 20:22 
GeneralRe: Size of the Edit Control Pin
Ivan Cachicatari23-Sep-04 16:43
Ivan Cachicatari23-Sep-04 16:43 
Hi,

In the Form View class add WM_SIZE message with classwizard and write this code to resize the edit control (IDC_EDIT1)

void CYourOwnFormView::OnSize(UINT nType, int cx, int cy) 
{
	CFormView::OnSize(nType, cx, cy);

	CWnd* wnd = GetDlgItem(IDC_EDIT1); // edit control

	if(wnd)
	{
		CRect rect,editrect;
		GetWindowRect(&rect);
		wnd->GetWindowRect(&editrect);
		
		editrect.left = rect.left + 10;
		editrect.right = rect.right - 10;

		ScreenToClient(editrect);
		wnd->MoveWindow(&editrect);
	}
}



Ivan Cachicatari
www.latindevelopers.com
GeneralThe difference between HWND and HINSTANCE Pin
Guoguor22-Sep-04 20:08
Guoguor22-Sep-04 20:08 
GeneralRe: The difference between HWND and HINSTANCE Pin
Arsalan Malik22-Sep-04 20:22
Arsalan Malik22-Sep-04 20:22 
GeneralRe: The difference between HWND and HINSTANCE Pin
Neelesh K J Jain22-Sep-04 20:28
Neelesh K J Jain22-Sep-04 20:28 
GeneralRe: The difference between HWND and HINSTANCE Pin
cmk22-Sep-04 22:12
cmk22-Sep-04 22:12 
Generaladd toolbar Pin
sana55022-Sep-04 19:53
sana55022-Sep-04 19:53 
GeneralRe: add toolbar Pin
KaЯl23-Sep-04 3:50
KaЯl23-Sep-04 3:50 
GeneralContect menu Pin
Yulianto.22-Sep-04 19:49
Yulianto.22-Sep-04 19:49 
GeneralRe: Contect menu Pin
toxcct23-Sep-04 4:19
toxcct23-Sep-04 4:19 
GeneralUnable to open a file Pin
Mughi22-Sep-04 19:47
Mughi22-Sep-04 19:47 
GeneralRe: Unable to open a file Pin
Yulianto.22-Sep-04 19:54
Yulianto.22-Sep-04 19:54 
GeneralRe: Unable to open a file Pin
Mughi22-Sep-04 20:45
Mughi22-Sep-04 20:45 
GeneralSolved Pin
Mughi22-Sep-04 21:39
Mughi22-Sep-04 21:39 
GeneralRe: Unable to open a file Pin
toxcct23-Sep-04 4:23
toxcct23-Sep-04 4:23 
GeneralOracle connection Error Pin
nareshos22-Sep-04 18:55
nareshos22-Sep-04 18:55 
GeneralWindows file-caching Pin
tbornemisza22-Sep-04 17:05
tbornemisza22-Sep-04 17:05 
GeneralRe: Windows file-caching Pin
tbornemisza22-Sep-04 17:15
tbornemisza22-Sep-04 17:15 
GeneralRe: Windows file-caching Pin
Anonymous22-Sep-04 17:23
Anonymous22-Sep-04 17:23 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.