dynamically set the text on the top of a dialog box
C / C++ / MFC
3
Posts
3
Posters
0
Views
1
Watching
-
Does any one know how to dynamically set the text on top of a dialog box? a sample code would be great! Thanks!
What's the "text on top of a dialog box"? Caption? If yes, use SetWindowText for that. Tomasz Sowinski -- http://www.shooltz.com.pl
-
Does any one know how to dynamically set the text on top of a dialog box? a sample code would be great! Thanks!
YourDialogClass::OnInitDialog() { SetWindowText(_T("Your Title")); } Stephen Kellett -- C++/Java/Win NT/Unix variants Memory leaks/corruptions/performance/system problems. UK based. Problems with RSI/WRULD? Contact me for advice.