FileForums

FileForums (https://fileforums.com/index.php)
-   Conversion Tutorials (https://fileforums.com/forumdisplay.php?f=55)
-   -   INNO TROUBLESHOOT - Questions Here (https://fileforums.com/showthread.php?t=93193)

pakrat2k2 13-07-2013 21:10

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.

red01 13-07-2013 22:18

Quote:

Originally Posted by pakrat2k2 (Post 420980)
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.

yeah its true and its also true that i am new to inno script.
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.

pakrat2k2 16-07-2013 12:02

1 Attachment(s)
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 ?!? :confused::confused: se screenshot below

Razor12911 20-07-2013 06:32

@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.

altef_4 20-07-2013 10:11

Quote:

Originally Posted by pakrat2k2 (Post 421059)
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 ?!? :confused::confused: se screenshot below

constants work with flag external

Razor12911 20-07-2013 23:48

But pakrat you can try windows constants.

Google for them.

Here are some that I can remember

%windir%
%systemroot%
%temp%

Razor12911 21-07-2013 11:48

Quote:

Originally Posted by red01 (Post 420977)
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.

Thats easy.

Read the inno setup documentation.

Here, look for these.

Readini
Writeini
Getinistring
Getiniint
Getinibool
Setinistring
Setiniint
Setinistring

Google for examples.

buttignol 22-07-2013 09:27

1 Attachment(s)
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;


Razor12911 22-07-2013 09:36

Quote:

Originally Posted by mausschieber (Post 420710)
no one an answer for me

how can i insert hompage and browse button
in autorunscript

thanks for help me

will help you.

In a couple of days along with what you asked(system page fix).

Razor12911 22-07-2013 09:38

Quote:

Originally Posted by buttignol (Post 421225)
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;


TasksList.Transparent:=True;

but actually, it's not TasksList which makes the Grey Field.

It's a form, just find out what it is.

buttignol 22-07-2013 09:53

1 Attachment(s)
Thank Razor12911 just is not showing anything that appears only
SelectTasksLabel

Razor12911 22-07-2013 10:16

hmm, I see. Why don't you come up with a panel which will be the base for the text, or use botva2 functions and procedures.

buttignol 22-07-2013 10:47

Quote:

Originally Posted by Razor12911 (Post 421232)
hmm, I see. Why don't you come up with a panel which will be the base for the text, or use botva2 functions and procedures.

You have an example script of how to use botva2

Razor12911 22-07-2013 12:15

look around in this thread for botva2 example script. I think I posted it or instructed how it's used.

Either way, why don't you remove the image as background, you should place it on welcome page then use the wide small wizrd image on top of the wizardform, it's just a suggestion. Else you can place a text background specially designed for text so that it can be clearly seen whilst using the full image.

buttignol 22-07-2013 17:59

Quote:

Originally Posted by Razor12911 (Post 421235)
look around in this thread for botva2 example script. I think I posted it or instructed how it's used.

Either way, why don't you remove the image as background, you should place it on welcome page then use the wide small wizrd image on top of the wizardform, it's just a suggestion. Else you can place a text background specially designed for text so that it can be clearly seen whilst using the full image.

Thank Razor12911'll try with the botva2 and I want to put a different image for each page


All times are GMT -7. The time now is 19:29.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
FileForums @ https://fileforums.com