1)set the Title for The File DialogBox, in MFC?
Answer / 106743013743
void CtharamDlg::OnBnClickedFileBtn()
{
CFileDialog *dlg = new CFileDialog(TRUE);
dlg->m_ofn.lpstrTitle = L"It's Time to Open the File";
dlg->DoModal();
}
try it, surly execute
code by Ctharam
| Is This Answer Correct ? | 3 Yes | 0 No |
What are the differences between MFC Exception macros and C++ exception keywords?
Can you explaing the relashionship between document,frame and view ?
What is the initial function to be called in MFC and what it will do
What does mfc stand for?
What are the types of button controls?
I have 2 threads. One thread prints odd numbers and the second thread prints even numbers. Now, I have to execute the threads alternatively so that i can output 1,2,3,4,5,6,..... write code for this?
How you create a button dynamically?
What is LPCTSTR? What does LP denote it?
what is the use of AFX_MANAGE_STATE ?
What function is used to disable a control at runtime?
What is the difference between workrer thread and UI thread
visual Pogramming c++ coding for create a paint application.. (Please someone help me)