Changing Project Name

Hi All,

I have created a 'Dialog Based' project application in VC++ 6.0 (win2k). Its name is myproj.exe. When I run this executable the Dialog is launced.

When i right-click on the title bar of the dialog i get a pop-up box that show following 3 options.
Move
Close
About myproj...

How can i change the application name so that the new name appears on the above third option of the pop-up box.

Any help would be great.

naim1~
[492 byte] By [naim1] at [2007-11-19 16:00:52]
# 1 Re: Changing Project Name
OnInitDialog that menu is created.
strAboutMenu.LoadString(IDS_ABOUTBOX);
if (!strAboutMenu.IsEmpty())
{
pSysMenu->AppendMenu(MF_SEPARATOR);
pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
}

like this.

IDS_ABOUTBOX can be changed from the string resouce.
Then the name can be changed.

I think this will help.pls don't forget to rate this
regards.
hariCmenon at 2007-11-10 23:54:47 >