|
-
Feb 28th, 2005, 06:01 PM
#1
Thread Starter
Member
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
-
Feb 28th, 2005, 06:10 PM
#2
-
Feb 28th, 2005, 06:36 PM
#3
Thread Starter
Member
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
-
Feb 28th, 2005, 07:03 PM
#4
Re: install maker
 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.
-
Feb 28th, 2005, 07:14 PM
#5
Thread Starter
Member
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|