19)how to set Back Ground Picture to a Dialog Box in MFC ?
Answer / 106743013743
Use SetBackGroundPicture()
Ex: in OnInitDialog(),
SetBackgroundImage(IDB_CITY);
| Is This Answer Correct ? | 3 Yes | 0 No |
What is the difference between workrer thread and UI thread
What is the command routing in MFC framework?
What MFC base classes provide support for ActiveX controls?
What is userdefine Messages in MFC?
How to setup a timer?
What is LPCTSTR? What does LP denote it?
What is the difference between GetMessage and PeekMessage ?
General purpose classes in MFC
What is #progma and where it is used?
Will there be any difference in the image buffer size if it is loaded in from CString to LPTSTR using GetBuffer()? lptstr = string.GetBuffer(0);
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
1)At run-time, you can change the icon by calling the LoadIcon() function?