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 is Multithreading
Tell me about different kinds of synchranization objects ?
Name the Synchronization objects?
What is the difference between regular dlls and extended dlls?
what is message loop how mfc does it internally?
how many types of messages are their
Difference between Debug and Release versions?
What is a message map?
How can update edit control data of an executing application from other application?
1)How to change a text of a button as Dynamically?
What is the difference between workrer thread and UI thread
Why not virtual functions to handle messages?