Changing Window Title in Taskbar.
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
Hello All, How can I change window title shown as tool tip text in the Taskbar using MFC. With Thanks, Karthik.
Software - Bundle of bugs covered with features.
-
Hello All, How can I change window title shown as tool tip text in the Taskbar using MFC. With Thanks, Karthik.
Software - Bundle of bugs covered with features.
What shows in the tooltip is simply the current caption of your window. So you can use SetWindowText() to change it. Note, though, that this is not always advisable, especially if writing in MFC - the MFC framework handles the window title.