Click to See Complete Forum and Search --> : [RESOLVED] [Inno Setup Compiler 5] - How change the aplication name?
joaquim
Nov 4th, 2010, 03:47 PM
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?
Hack
Nov 6th, 2010, 07:33 AM
Moved To Application Deployment
joaquim
Nov 6th, 2010, 03:50 PM
Moved To Application Deployment
sorry... but i was thinking that section was only for Visual Basic... but thanks
joaquim
Nov 6th, 2010, 06:16 PM
finally i found the problem...
heres the 2 ways:
if you have ISPP installed:
#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:
#define MyAppName "Ola"
instead "ola" you can use "catchdiamonds" or what you need... it's a string;)
and then you must delete these line:
AppId={{C60E17DE-F52C-490F-97A0-D61644CAACE3}
if you don't have the ISPP installed:
just change these line:
AppName={#MyAppName}
here i use a ISPP const, but you can use a string:
AppName=ola(without these simbols "")
the next lines must be changed too:
DefaultDirName={pf}\ola
DefaultGroupName=ola
for work in same folder. and the line:
AppId={{C60E17DE-F52C-490F-97A0-D61644CAACE3}
must be deleted.
thanks
Nightwalker83
Nov 6th, 2010, 07:46 PM
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.
vbforums.com
Copyright Internet.com Inc., All Rights Reserved.