Re: changing the application name
- From: "Scott McPhillips [MVP]" <org-dot-mvps-at-scottmcp>
- Date: Fri, 15 Apr 2005 18:38:28 -0500
Koti wrote:
hi frank,
your code is working very well for SDI and MDI
But before that name, i there is a name "Untitled", i have to remove that.
Override the PreCreateWindow function like this to get rid of the MFC-generated standard window title:
BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
{
cs.style &= ~FWS_ADDTOTITLE;
return CFrameWnd::PreCreateWindow(cs);
}-- Scott McPhillips [VC++ MVP]
.
- References:
- changing the application name
- From: Koti
- Re: changing the application name
- From: Frank Hickman [MVP]
- Re: changing the application name
- From: Koti
- Re: changing the application name
- From: Frank Hickman [MVP]
- Re: changing the application name
- From: Koti
- changing the application name
- Prev by Date: Re: Losing UDP packets with MFC Sockets
- Next by Date: Re: changing the application name
- Previous by thread: Re: changing the application name
- Next by thread: ISAPI Filter - HTTP_USER_AGENT
- Index(es):