
How change the title of an MFC application?
The easiest way I know of is to add a string resource with an ID of
AFX_IDS_APP_TITLE, and set that to the name you want the application to
display. You can also accomplish this by manipulating the
CWinApp::m_pszAppName member variable, but the string resource technique is
easier IMO. The following MSDN article may be helpful:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wcem...
cwinapp_44.asp
--
Nathan Lewis
Check out the WinCE CAB Manager - the ultimate CAB file utility!
Available only from OCP Software - http://www.ocpsoftware.com
Quote:
> Did any body know how to change the title of an MFC application?
> I tried Document::SetTitle(CString) but it doesn't work.