1)how to Display the File Dialog Box, in MFC ?
Answer / 106743013743
Ex:-
void Ctharam::OnBnClickedFileBtn()
{
CFileDialog *dlg = new CFileDialog(TRUE); // TRUE means Open
dlg->DoModal();
}
code by Ctharam
| Is This Answer Correct ? | 2 Yes | 0 No |
what are the feauters of CObject
1)How to load an icon on a button as Dynamically ?
How can we create thread in MFC framework?
Explain about MDI and CMultiDocTemplate ?
What function is used to disable a control at runtime?
List out the parameters of WinMain Function.
How to update windows title bar dynamically?
How do I create a dialog box in mfc?
what is functioning of DIalodDataXchange ..?
What is the base class for MFC Framework ?
Hi All, I have created one MFC Dialog Based application.now if i am running the application its working fine,instead of closing he application i minimized the application,if i run the application again,i am getting the Dialog. I want to prevent the calling of application multiple times. please give me the code and let me know in which method i need to make changes. Praveer
19)how to set Back Ground Picture to a Dialog Box in MFC ?