how to change the title of a dialog
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
How can I change the title of a dialog at runtime? I want to add a constructor to my dialog, so that I can set the title of the dialog, like
CMyDialog dlg(_T("Settings"));
. I save the title text in the constructor and want to set the title in theOnInitDialog
function, but how can I set the title? -- Nice greets, Daniel. -
How can I change the title of a dialog at runtime? I want to add a constructor to my dialog, so that I can set the title of the dialog, like
CMyDialog dlg(_T("Settings"));
. I save the title text in the constructor and want to set the title in theOnInitDialog
function, but how can I set the title? -- Nice greets, Daniel.