Go Back   FileForums > Game Backup > PC Games > PC Games - CD/DVD Conversions > Conversion Tutorials
Register FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Search this Thread Display Modes
  #646  
Old 13-07-2013, 21:10
pakrat2k2's Avatar
pakrat2k2 pakrat2k2 is offline
Moderator
 
Join Date: Apr 2005
Location: Canada
Posts: 7,209
Thanks: 3,040
Thanked 9,043 Times in 3,086 Posts
pakrat2k2 is on a distinguished road
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.
Reply With Quote
The Following User Says Thank You to pakrat2k2 For This Useful Post:
red01 (13-07-2013)
Sponsored Links
  #647  
Old 13-07-2013, 22:18
red01 red01 is offline
Registered User
 
Join Date: May 2013
Location: last aayam
Posts: 95
Thanks: 36
Thanked 9 Times in 8 Posts
red01 is on a distinguished road
Quote:
Originally Posted by pakrat2k2 View Post
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.

Last edited by red01; 13-07-2013 at 22:20. Reason: :D
Reply With Quote
  #648  
Old 16-07-2013, 12:02
pakrat2k2's Avatar
pakrat2k2 pakrat2k2 is offline
Moderator
 
Join Date: Apr 2005
Location: Canada
Posts: 7,209
Thanks: 3,040
Thanked 9,043 Times in 3,086 Posts
pakrat2k2 is on a distinguished road
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
Attached Images
File Type: jpg not-found.jpg (364.4 KB, 168 views)
Reply With Quote
  #649  
Old 20-07-2013, 06:32
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,749
Thanks: 2,170
Thanked 11,206 Times in 2,307 Posts
Razor12911 is on a distinguished road
@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.
Reply With Quote
  #650  
Old 20-07-2013, 10:11
altef_4's Avatar
altef_4 altef_4 is offline
Registered User
 
Join Date: Mar 2012
Location: Ukraine
Posts: 361
Thanks: 248
Thanked 1,022 Times in 239 Posts
altef_4 is on a distinguished road
Quote:
Originally Posted by pakrat2k2 View Post
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
constants work with flag external
Reply With Quote
  #651  
Old 20-07-2013, 23:48
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,749
Thanks: 2,170
Thanked 11,206 Times in 2,307 Posts
Razor12911 is on a distinguished road
But pakrat you can try windows constants.

Google for them.

Here are some that I can remember

%windir%
%systemroot%
%temp%
Reply With Quote
  #652  
Old 21-07-2013, 11:48
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,749
Thanks: 2,170
Thanked 11,206 Times in 2,307 Posts
Razor12911 is on a distinguished road
Quote:
Originally Posted by red01 View Post
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.
Reply With Quote
  #653  
Old 22-07-2013, 09:27
buttignol's Avatar
buttignol buttignol is offline
Registered User
 
Join Date: Sep 2012
Location: Brasil
Posts: 126
Thanks: 102
Thanked 16 Times in 13 Posts
buttignol is on a distinguished road
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;
Attached Images
File Type: jpg Exemplo.jpg (160.9 KB, 140 views)

Last edited by buttignol; 22-07-2013 at 09:32.
Reply With Quote
  #654  
Old 22-07-2013, 09:36
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,749
Thanks: 2,170
Thanked 11,206 Times in 2,307 Posts
Razor12911 is on a distinguished road
Quote:
Originally Posted by mausschieber View Post
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).
Reply With Quote
The Following User Says Thank You to Razor12911 For This Useful Post:
mausschieber (22-07-2013)
  #655  
Old 22-07-2013, 09:38
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,749
Thanks: 2,170
Thanked 11,206 Times in 2,307 Posts
Razor12911 is on a distinguished road
Quote:
Originally Posted by buttignol View Post
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.

Last edited by Razor12911; 22-07-2013 at 09:42.
Reply With Quote
  #656  
Old 22-07-2013, 09:53
buttignol's Avatar
buttignol buttignol is offline
Registered User
 
Join Date: Sep 2012
Location: Brasil
Posts: 126
Thanks: 102
Thanked 16 Times in 13 Posts
buttignol is on a distinguished road
Thank Razor12911 just is not showing anything that appears only
SelectTasksLabel
Attached Images
File Type: jpg Exemplo 2.jpg (73.0 KB, 139 views)
Reply With Quote
  #657  
Old 22-07-2013, 10:16
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,749
Thanks: 2,170
Thanked 11,206 Times in 2,307 Posts
Razor12911 is on a distinguished road
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.
Reply With Quote
  #658  
Old 22-07-2013, 10:47
buttignol's Avatar
buttignol buttignol is offline
Registered User
 
Join Date: Sep 2012
Location: Brasil
Posts: 126
Thanks: 102
Thanked 16 Times in 13 Posts
buttignol is on a distinguished road
Quote:
Originally Posted by Razor12911 View Post
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
Reply With Quote
  #659  
Old 22-07-2013, 12:15
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,749
Thanks: 2,170
Thanked 11,206 Times in 2,307 Posts
Razor12911 is on a distinguished road
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.

Last edited by Razor12911; 22-07-2013 at 12:19.
Reply With Quote
  #660  
Old 22-07-2013, 17:59
buttignol's Avatar
buttignol buttignol is offline
Registered User
 
Join Date: Sep 2012
Location: Brasil
Posts: 126
Thanks: 102
Thanked 16 Times in 13 Posts
buttignol is on a distinguished road
Quote:
Originally Posted by Razor12911 View Post
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
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

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



All times are GMT -7. The time now is 00:52.


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