Randem Systems Support Board

InnoScript => InnoScript - General Questions, Report Bugs, Problems etc... => Topic started by: davethomson on October 06, 2014, 12:04:27 AM

Title: Can't Figure This Out.
Post by: davethomson on October 06, 2014, 12:04:27 AM
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
Title: Re: Can't Figure This Out.
Post by: Randem on October 06, 2014, 03:13:33 PM
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)

Title: Re: Can't Figure This Out.
Post by: davethomson on October 06, 2014, 10:36:55 PM
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.