|
-
Nov 4th, 2010, 03:47 PM
#1
Thread Starter
PowerPoster
[RESOLVED] [Inno Setup Compiler 5] - How change the aplication name?
i have 1 ISS file, but i need update it for another application(using some files that are in file and others). how can i update the application name?
-
Nov 6th, 2010, 07:33 AM
#2
Re: [Inno Setup Compiler 5] - How change the aplication name?
Moved To Application Deployment
-
Nov 6th, 2010, 03:50 PM
#3
Thread Starter
PowerPoster
Re: [Inno Setup Compiler 5] - How change the aplication name?
 Originally Posted by Hack
Moved To Application Deployment
sorry... but i was thinking that section was only for Visual Basic... but thanks
-
Nov 6th, 2010, 06:16 PM
#4
Thread Starter
PowerPoster
Re: [Inno Setup Compiler 5] - How change the aplication name?
finally i found the problem...
heres the 2 ways:
if you have ISPP installed:
Code:
#define MyAppName "Ola"
#define MyAppVersion "1.5"
#define MyAppPublisher "Cambalinho"
#define MyAppExeName "CatchDiamonds.exe"
[Setup]
; NOTE: The value of AppId uniquely identifies this application.
; Do not use the same AppId value in installers for other applications.
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
AppId={{C60E17DE-F52C-490F-97A0-D61644CAACE3}
AppName={#MyAppName}
AppVersion={#MyAppVersion}
;AppVerName={#MyAppName} {#MyAppVersion}
AppPublisher={#MyAppPublisher}
DefaultDirName={pf}\{#MyAppName}
DefaultGroupName={#MyAppName}
AllowNoIcons=yes
OutputDir=D:\Documents and Settings\Joaquim Miguel.CAMBALIN-806F02\Os meus documentos\CatchDiamonds\Setup
OutputBaseFilename=setup
Compression=lzma
SolidCompression=yes
you only need do 2 litle things:
change these line:
Code:
#define MyAppName "Ola"
instead "ola" you can use "catchdiamonds" or what you need... it's a string
and then you must delete these line:
Code:
AppId={{C60E17DE-F52C-490F-97A0-D61644CAACE3}
if you don't have the ISPP installed:
just change these line:
Code:
AppName={#MyAppName}
here i use a ISPP const, but you can use a string:
(without these simbols "")
the next lines must be changed too:
Code:
DefaultDirName={pf}\ola
DefaultGroupName=ola
for work in same folder. and the line:
Code:
AppId={{C60E17DE-F52C-490F-97A0-D61644CAACE3}
must be deleted.
thanks
-
Nov 6th, 2010, 07:46 PM
#5
Re: [Inno Setup Compiler 5] - How change the aplication name?
 Originally Posted by joaquim
sorry... but i was thinking that section was only for Visual Basic... but thanks
That section is for anything to do with application deployment! Such as languages such as VB, C#, etc or how to configure the setup program, etc.
when you quote a post could you please do it via the "Reply With Quote" button or if it multiple post click the "''+" button then "Reply With Quote" button.
If this thread is finished with please mark it "Resolved" by selecting "Mark thread resolved" from the "Thread tools" drop-down menu.
https://get.cryptobrowser.site/30/4111672
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|