Results 1 to 5 of 5

Thread: [RESOLVED] [Inno Setup Compiler 5] - How change the aplication name?

  1. #1

    Thread Starter
    PowerPoster joaquim's Avatar
    Join Date
    Apr 2007
    Posts
    3,961

    Resolved [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?
    VB6 2D Sprite control

    To live is difficult, but we do it.

  2. #2
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: [Inno Setup Compiler 5] - How change the aplication name?

    Moved To Application Deployment

  3. #3

    Thread Starter
    PowerPoster joaquim's Avatar
    Join Date
    Apr 2007
    Posts
    3,961

    Re: [Inno Setup Compiler 5] - How change the aplication name?

    Quote Originally Posted by Hack View Post
    Moved To Application Deployment
    sorry... but i was thinking that section was only for Visual Basic... but thanks
    VB6 2D Sprite control

    To live is difficult, but we do it.

  4. #4

    Thread Starter
    PowerPoster joaquim's Avatar
    Join Date
    Apr 2007
    Posts
    3,961

    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:
    Code:
    AppName=ola
    (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
    VB6 2D Sprite control

    To live is difficult, but we do it.

  5. #5
    PowerPoster Nightwalker83's Avatar
    Join Date
    Dec 2001
    Location
    Adelaide, Australia
    Posts
    13,344

    Re: [Inno Setup Compiler 5] - How change the aplication name?

    Quote Originally Posted by joaquim View Post
    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
  •  



Click Here to Expand Forum to Full Width