|
|
|
#1
|
||||
|
||||
|
no parent maybe.
remove this // //avisoLabel.Parent := WizardForm; to avisoLabel.Parent := WizardForm; |
| Sponsored Links |
|
#2
|
||||
|
||||
|
how can i insert hompage and browse button
in autorunscript thanks for help me |
|
#3
|
||||
|
||||
|
Hello.
I still have two little problem in my installer, if anybody know how to solve, i will appreciate the help: 1) Make rounded corners. Capturar 3.JPG 2) A scrip to make a progress bar with image PNG. Capturar.JPG Regards. |
|
#4
|
||||
|
||||
|
Thank Razor12911 not work
|
|
#5
|
|||
|
|||
|
hi everyone,
greeting I read the tutorials about Inno by REVO and i create setup.ini, setup.cab with all the files and other stuff. i am trying this for first time. i am new here and i am not an inno expert. i Dont KNOW How to make inno read values from setup.ini and setup.cab. will somebody help me.? |
|
#6
|
||||
|
||||
|
Quote:
http://fileforums.com/showthread.php?t=92805 |
| The Following User Says Thank You to pakrat2k2 For This Useful Post: | ||
red01 (13-07-2013) | ||
|
#7
|
|||
|
|||
|
Quote:
Thanks for your reply pakrat2k2 that converter by yener90 , i already try that and it works fine. I want to create a new script and i want to add setup.ini in that new script. i wanted to know how i can add that .ini files in new script. |
|
#8
|
||||
|
||||
|
Quote:
Read the inno setup documentation. Here, look for these. Readini Writeini Getinistring Getiniint Getinibool Setinistring Setiniint Setinistring Google for examples. |
|
#9
|
||||
|
||||
|
look in CIU 1.0.0.6 & see just how many lines of code there is. !!!!!!! Way too much work & too many months in perfecting that script, took yener90 MONTHS to get it where it is. And to just think its easy to use that ini file in another script, needs someone who is VERY good with INNO to understand how it all works. NOT for someone fairly new to inno scripts.
|
| The Following User Says Thank You to pakrat2k2 For This Useful Post: | ||
red01 (13-07-2013) | ||
|
#10
|
|||
|
|||
|
Quote:
I did not expect myself to become an expert .all i want is to try. I just want to start this. I know it will take time and efforts to very great extent for someone like me. Last edited by red01; 13-07-2013 at 22:20. Reason: :D |
|
#11
|
||||
|
||||
|
having issue with ISS accepting {userdocs} in [Files] section under Source ???
Have tried with/without " & Still same error.. ( files do exist there ). any suggestions as to what's wrong ?!? ![]() se screenshot below
|
|
#12
|
||||
|
||||
|
constants work with flag external
|
|
#13
|
||||
|
||||
|
But pakrat you can try windows constants.
Google for them. Here are some that I can remember %windir% %systemroot% %temp% |
|
#14
|
||||
|
||||
|
@pakrat,
Constants don't work under source directory, they only work under destination because it may vary therefore under source you must apply the direct directory without constants. And sorry for late reply, was kinda busy. |
|
#15
|
||||
|
||||
|
Friends need a help how to make transparent TasksList
as of the SelectTasksLabel I'm using this script without success Code:
var SelectTasksLabel,TasksList: TLabel; procedure InitializeWizard(); begin WizardForm.SelectTasksLabel.Hide; WizardForm.TasksList.Hide; SelectTasksLabel:=TLabel.Create(WizardForm); SelectTasksLabel.Left:=60; SelectTasksLabel.Top:=15; SelectTasksLabel.Width:=470; SelectTasksLabel.Height:=35; SelectTasksLabel.AutoSize:=False; SelectTasksLabel.WordWrap:=True; SelectTasksLabel.Transparent:=True; SelectTasksLabel.Font.Size := 10; SelectTasksLabel.Caption:=WizardForm.SelectTasksLabel.Caption; SelectTasksLabel.Parent:=WizardForm.SelectTasksPage; TasksList:=TLabel.Create(WizardForm); TasksList.Left:=60; TasksList.Top:=70; TasksList.Width:=400; TasksList.Height:=252; TasksList.AutoSize:=False; TasksList.Font.Size := 10; TasksList.Parent:= WizardForm.SelectTasksPage; end; Last edited by buttignol; 22-07-2013 at 09:32. |
![]() |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| INNO TROUBLESHOOT - Tutorials and Answers about INNO Setup | REV0 | Conversion Tutorials | 129 | 21-05-2021 05:51 |
| INNO TUTORIAL - Using Unicode and ANSI Versions of INNO Setup | REV0 | Conversion Tutorials | 51 | 26-03-2015 06:57 |
| Frequently Asked Questions | Joe Forster/STA | PC Games - Frequently Asked Questions | 0 | 29-11-2005 09:48 |