Changing the caption of start button
-
Desktop also a window in VC++. Can we write a program to capture it, and can we change the caption of start button. If so please tell me the procedure. Thanking you
It's possible, but this requires a lot of work, since the start button is an owner drawn button. You would need to subclass the button, then do your own painting. What you would need to do is enumerate the desktop windows child windows looking for the Shell_TrayWnd, then enumerate the Shell_TrayWnd's child windows looking for a window with the button class. Once you get that HWND, can then sublcass it into a CButton using CButton::Attach
-
Desktop also a window in VC++. Can we write a program to capture it, and can we change the caption of start button. If so please tell me the procedure. Thanking you
If you would like an example go to: http://homepage1.nifty.com/kazubon/tclock/indexe.html