![]() |
How to add web url in innosetup?
hello i am using istool to making setup.But i don't know how to add my web url at bottom left corner of my setup.Please help me.See image: https://s9.postimg.org/4y8doelnj/image.png
|
Code:
var |
Quote:
Code:
; Script generated by the Inno Setup Script Wizard. |
after the [Run] section add [Code] then paste the lines KaktoR posted.
dont forget to change http://fileforums.com to what you want it to be. |
Ok done thanks.And
-> what about that blue color how to add that?(at bottom in above image) -> And how to add welcome splash screen? |
how to insert the splash at the time of install?
Code:
|
1 Attachment(s)
I guess it's the background color for WizardForm.
Try to change it using this http://www.jrsoftware.org/ishelp/ind...etup_backcolor For splash screen you can use isgsg.dll library (attachment) How to use: Add isgsg.dll to script (in [Files] section) Add Splash.png to script (in [Files] section) Code:
procedure ShowSplashScreen(p1:HWND;p2:AnsiString;p3,p4,p5,p6,p7:integer;p8:boolean;p9:Cardinal;p10 :integer); |
Quote:
I tried adding splash script but it throwing me error.See this image: https://s9.postimg.org/r802zwavz/image.png And background color i checked but don't know where to and how to add in script please provide me full script with features(splash,and wizard background color) thank you! |
I am able to run all things now but separately.How to add all these code together.When i try to add it throw me error 'duplicate identifier initialwizard'.
|
Like error says "duplicate", you have to merge InitializeWizard proceure
And make only one [Code] section, not two. You have to merge them too. Code:
var |
Quote:
Please give me a tested script which contain that background color for WizardForm(i asked above).Thanks it will save your and mine time please give me a tested one. |
Quote:
procedure initializewizard(); begin with wizardform do begin Color := clBlue; end; end; |
1 Attachment(s)
I used "wizard forum desginer ' but i am not able to change text in text field.
See below image and tell me how to change field text? |
1 Attachment(s)
Here's the script that partially works, splash shows properly, but the part STB13 mentioned is in the script, but doesnt seem to display it.
|
1 Attachment(s)
Fixed
|
Quote:
1. unpacking portable.cmd 2. silent install.cmd https://s9.postimg.org/5y57ebg1r/111.png |
you can open both of those with notepad & see how they are written out.
|
jitender
Code:
[Setup] |
I have this code:
http://fileforums.com/attachment.php...9&d=1519677850 Now please Download above script and modify it and give me final one which create portable + silent install also.( i don't know coding otherwise i had modified it) |
jitender
Code:
#define MyAppName "My Program" |
Getting these question marks???
https://s17.postimg.org/9wqo7r4n3/aaal.png DO NOT QUOTE ENTIRE MESSAGE, JUST REPLY |
Portable := TNewRadioButton.Create(WizardForm);
with Portable do begin Parent := WizardForm.SelectDirPage; Left := ScaleX(110); Top := ScaleY(175); Width := ScaleX(100); Height := ScaleY(17); Caption := 'Portable'; Checked := CheckParam('/P'); OnClick := @NewRadioButton1Click; end; Installer := TNewRadioButton.Create(WizardForm); with Installer do begin Parent := WizardForm.SelectDirPage; Left := ScaleX(0); Top := ScaleY(175); Width := ScaleX(100); Height := ScaleY(17); Caption := 'Installer'; Checked := not CheckParam('/P'); OnClick := @NewRadioButton1Click; end; end; jitender + vint56 do NOT Quote messages ANY further, just reply to post. useless to keep quoting previous messages. |
So this script create two options in setup: 1)portable 2)silent install
So, it means if i select portable option then portable version of program will install or if i select silent then it will perform silent installation.Am i right? |
| All times are GMT -7. The time now is 21:50. |
Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
FileForums @ https://fileforums.com