Let me start by showing part of InnoScript's output:
[Icons]
Name: {group}\DisplayCalendar ; Filename : {app}\Golf Course Calendar.exe; WorkingDir: {app}; IconFilename: {app}\calendar.ico;
Name: {group}\{cm:ProgramOnTheWeb, DisplayCalendar }; Filename: {app}\Golf Course Calendar.url; IconFilename: {app}\calendar.ico;
Name: {group}\{cm:UninstallProgram, DisplayCalendar }; Filename: {uninstallexe};
Name: {commondesktop}\DisplayCalendar ; Filename: {app}\Golf Course Calendar.exe; Tasks: Desktopicon ; WorkingDir: {app}; IconFilename: {app}\calendar.ico;
My program is "Golf Course Calendar" but it used to be called "DisplayCalendar". I changed all files & folders to the new name, changed the program name in the "Setting" but "DisplayCalendar" is still showing up in the above code. I have to manually replace "DisplayCalendar" with "Golf Course Calendar" in the .iss file as I can't figure out how the former is still there.
I would appreciate your expert help on this. Thanks. :D
You have to change the name in in your VB6 project file also. That is where the information is being take from... If you do not change it in the vbp file then every time you run InnoScript, the name will be taken from the VB6 project file. Here are some places to look in the VB6 IDE. Make sure you change the name in all places.
Project->Project properties->General (Look in Project Name: Area)
Project->Project properties->Make (Look in Title: and Type: Areas)
Embarrassed to say the least :-[ I completely forgot about the naming of the project in the VB file. Yes, that took care of the problem. Once again, thank you for you help. I couldn't have gotten this far in developing installation programs without your help.