Results 1 to 5 of 5

Thread: install maker

  1. #1

    Thread Starter
    Member
    Join Date
    Aug 2003
    Posts
    55

    Unhappy install maker

    hallo

    i need an install maker software , so what is the best & proffisional software on the net

    which must contain Uninstall with completly Free to edit and add windows & elements to the setup package and also contain a command Line Option

    please help

  2. #2
    Super Moderator manavo11's Avatar
    Join Date
    Nov 2002
    Location
    Around the corner from si_the_geek
    Posts
    7,171

    Re: install maker

    I'm not sure if it has the command line option, but Inno Setup covers the rest of you needs

    Also, moved to Application Deployment.


    Has someone helped you? Then you can Rate their helpful post.

  3. #3

    Thread Starter
    Member
    Join Date
    Aug 2003
    Posts
    55

    Question Re: install maker

    i downloaded INNO setup and it contain a Command Line Parameter but you cant change or edit the setup windows like add new images or texts to it.


    thanks

  4. #4
    I'm about to be a PowerPoster! Joacim Andersson's Avatar
    Join Date
    Jan 1999
    Location
    Sweden
    Posts
    14,649

    Re: install maker

    Quote Originally Posted by Redbaron2
    i downloaded INNO setup and it contain a Command Line Parameter but you cant change or edit the setup windows like add new images or texts to it.
    That's not true! You can do that using Pascal Script. The following is an example you can use under the [code] section of an InnoSetup script to add a Label with some text to every page during the setup.
    Code:
    [code]
    procedure InitializeWizard();
    var
      lblCopy : TLabel;
      btnCancel : TButton;
    begin
      btnCancel := WizardForm.CancelButton;
      lblCopy := TLabel.Create(WizardForm);
      lblCopy.Caption := 'Copyright © CompanyName 2005';
      lblCopy.AutoSize := True;
      lblCopy.Left := WizardForm.ClientWidth - btnCancel.Left - btnCancel.Width;
      lblCopy.Top := btnCancel.Top + (btnCancel.Height-lblCopy.Height) / 2;
      lblCopy.Parent := WizardForm;
    end;
    Last edited by Joacim Andersson; Feb 28th, 2005 at 07:06 PM.

  5. #5

    Thread Starter
    Member
    Join Date
    Aug 2003
    Posts
    55

    Unhappy Re: install maker

    the problem is i dont know anything about Pascal Script
    iam looking for something easy not complex

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