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
  #1  
Old 25-05-2013, 14:08
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,751
Thanks: 2,181
Thanked 11,211 Times in 2,309 Posts
Razor12911 is on a distinguished road
Yeah yeah, you'll get it

Progress :40%

At least now, I've reached the stage whereby you can now load wizardimage and etc.
Attached Images
File Type: jpg 2013-05-25_22_40_03.jpg (367.2 KB, 644 views)

Last edited by Razor12911; 25-05-2013 at 14:14.
Reply With Quote
The Following 4 Users Say Thank You to Razor12911 For This Useful Post:
mausschieber (26-05-2013), pakrat2k2 (25-05-2013), y_thelastknight (25-05-2013), Zeibe (10-03-2015)
Sponsored Links
  #2  
Old 25-05-2013, 15:20
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
looks great will simplify things for a great many. once you've gotten it to testing phase.
Reply With Quote
The Following User Says Thank You to pakrat2k2 For This Useful Post:
Razor12911 (25-05-2013)
  #3  
Old 25-05-2013, 15:44
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,751
Thanks: 2,181
Thanked 11,211 Times in 2,309 Posts
Razor12911 is on a distinguished road
45% complete

now, you can load jpg or bmp and png, re-arrange all you want,

create quick conversions

test attachment added

Requesting language translators...

it's kinda funny, that all of this is been created just by using inno setup and nothing else,

Select Backgrounds under Autorun Interface Select tab standard configuration to load a simple file .jpg, Select tab advanced configuration to load a folder which has autorun#.jpg, Select tab expert configuration to load bmp and png image.
Attached Images
File Type: jpg 2013-05-26_00_41_51.jpg (339.1 KB, 638 views)

Last edited by Razor12911; 26-05-2013 at 10:16.
Reply With Quote
The Following 3 Users Say Thank You to Razor12911 For This Useful Post:
mausschieber (26-05-2013), pakrat2k2 (26-05-2013), y_thelastknight (25-05-2013)
  #4  
Old 10-09-2013, 17:22
kashifagaria kashifagaria is offline
Registered User
 
Join Date: Sep 2012
Location: pakistan
Posts: 5
Thanks: 0
Thanked 2 Times in 1 Post
kashifagaria is on a distinguished road
Quote:
Originally Posted by Razor12911 View Post
45% complete

now, you can load jpg or bmp and png, re-arrange all you want,

create quick conversions

test attachment added

Requesting language translators...

it's kinda funny, that all of this is been created just by using inno setup and nothing else,

Select Backgrounds under Autorun Interface Select tab standard configuration to load a simple file .jpg, Select tab advanced configuration to load a folder which has autorun#.jpg, Select tab expert configuration to load bmp and png image.
this Designer for download
Reply With Quote
  #5  
Old 29-02-2016, 00:25
nasir ahmad nasir ahmad is offline
Registered User
 
Join Date: Oct 2015
Location: afghanistan
Posts: 60
Thanks: 90
Thanked 7 Times in 5 Posts
nasir ahmad is on a distinguished road
Quote:
Originally Posted by Razor12911 View Post
45% complete

now, you can load jpg or bmp and png, re-arrange all you want,

create quick conversions

test attachment added

Requesting language translators...

it's kinda funny, that all of this is been created just by using inno setup and nothing else,

Select Backgrounds under Autorun Interface Select tab standard configuration to load a simple file .jpg, Select tab advanced configuration to load a folder which has autorun#.jpg, Select tab expert configuration to load bmp and png image.
my friend do you have this version of installer creator in this topic.
if you have show me please.
Reply With Quote
The Following User Says Thank You to nasir ahmad For This Useful Post:
Behnam2018 (31-01-2020)
  #6  
Old 27-05-2013, 08:25
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,751
Thanks: 2,181
Thanked 11,211 Times in 2,309 Posts
Razor12911 is on a distinguished road
Hi Forum Users,

I got a list of Delphi(Inno Setup) Language which is used when dealing with scripts.

Code:
And	Boolean and or bitwise and of two arguments
Array	 A data type holding indexable collections of data
As	Used for casting object references
Begin	 Keyword that starts a statement block
Case	A mechanism for acting upon different values of an Ordinal
Class	Starts the declaration of a type of object class
Const	Starts the definition of fixed data values
Constructor	 Defines the method used to create an object from a class
Destructor	 Defines the method used to destroy an object
Div	 Performs integer division, discarding the remainder
Do	 Defines the start of some controlled action
DownTo	 Prefixes an decremental for loop target value
Else	 Starts false section of if, case and try statements
End	 Keyword that terminates statement blocks
Except	 Starts the error trapping clause of a Try statement
File	Defines a typed or untyped file
Finally	Starts the unconditional code section of a Try statement
For	 Starts a loop that executes a finite number of times
Function	 Defines a subroutine that returns a value
Goto	 Forces a jump to a label, regardless of nesting
If	Starts a conditional expression to determine what to do next
Implementation	 Starts the implementation (code) section of a Unit
In	 Used to test if a value is a member of a set
Inherited	Used to call the parent class constructor or destructor method
Interface	Used for Unit external definitions, and as a Class skeleton
Is	Tests whether an object is a certain class or ascendant
Mod	 Performs integer division, returning the remainder
Not	Boolean Not or bitwise not of one arguments
Object	Allows a subroutine data type to refer to an object method
Of	 Linking keyword used in many places
On	 Defines exception handling in a Try Except clause
Or	Boolean or or bitwise or of two arguments
Packed	Compacts complex data types into minimal stor
Procedure	 Defines a subroutine that does not return a value
Program	Defines the start of an application
Property	 Defines controlled access to class fields
Raise	 Raise an exception
Record	A structured data type - holding fields of data
Repeat	 Repeat statements until a ternmination condition is met
Set	Defines a set of up to 255 distinct values
Shl	 Shift an integer value left by a number of bits
Shr	Shift an integer value right by a number of bits
Then	Part of an if statement - starts the true clause
ThreadVar	Defines variables that are given separate instances per thread
To	Prefixes an incremental for loop target value
Try	Starts code that has error trapping
Type	Defines a new category of variable or process
Unit	Defines the start of a unit file - a Delphi module
Until	Ends a Repeat control loop
Uses	 Declares a list of Units to be imported
Var	Starts the definition of a section of data variables
While	 Repeat statements whilst a continuation condition is met
With	 A means of simplifying references to structured variables
Xor	Boolean Xor or bitwise Xor of two arguments
Reply With Quote
The Following User Says Thank You to Razor12911 For This Useful Post:
y_thelastknight (03-06-2013)
  #7  
Old 29-05-2013, 16:15
nicola16's Avatar
nicola16 nicola16 is offline
Registered User
 
Join Date: Nov 2008
Location: Italia
Posts: 74
Thanks: 23
Thanked 15 Times in 12 Posts
nicola16 is on a distinguished road
About me a hand I want to put a bmp or logo.png down

or this old code that I lent year.
How do I change.

[CODE]
Code:
procedure InheritBoundsRect(ASource, ATarget: TControl);
begin
  ATarget.Left := ASource.Left;
  ATarget.Top := ASource.Top;
  ATarget.Width := ASource.Width;
  ATarget.Height := ASource.Height;
end;

procedure InitializeWizard;
var
  TopWelcomeLabel: TLabel;
  BottomWelcomeLabel: TLabel;
begin
  WizardForm.WizardBitmapImage.Align := alClient;
  WizardForm.WizardBitmapImage.Bitmap.LoadFromFile('F:\example.495x314.bmp');

  TopWelcomeLabel := TLabel.Create(WizardForm);
  TopWelcomeLabel.Parent := WizardForm.WelcomeLabel1.Parent;
  TopWelcomeLabel.Font := WizardForm.WelcomeLabel1.Font;
  TopWelcomeLabel.Caption := WizardForm.WelcomeLabel1.Caption;
  TopWelcomeLabel.WordWrap := WizardForm.WelcomeLabel1.WordWrap;
  InheritBoundsRect(WizardForm.WelcomeLabel1, TopWelcomeLabel);
  WizardForm.WelcomeLabel1.Visible := False;

  BottomWelcomeLabel := TLabel.Create(WizardForm);
  BottomWelcomeLabel.Parent := WizardForm.WelcomeLabel2.Parent;
  BottomWelcomeLabel.Font := WizardForm.WelcomeLabel2.Font;
  BottomWelcomeLabel.Caption := WizardForm.WelcomeLabel2.Caption;
  BottomWelcomeLabel.WordWrap := WizardForm.WelcomeLabel2.WordWrap;
  InheritBoundsRect(WizardForm.WelcomeLabel2, BottomWelcomeLabel);
  WizardForm.WelcomeLabel2.Visible := False;
end;
or this

[CODE]
Code:
function NextButtonClick(CurPageID: Integer): Boolean;
begin
  Result := True;
end;

function GetCustomSetupExitCode(): Integer;
begin
  Result := 1;
end;

procedure InitializeWizard();
var
  WLabel1, WLabel2,
  FLabel1, FLabel2: TLabel;
begin
  WizardForm.WelcomeLabel1.Hide;
  WizardForm.WelcomeLabel2.Hide;
  WizardForm.FinishedHeadingLabel.Hide;
  WizardForm.FinishedLabel.Hide;
  WizardForm.WizardBitmapImage.Width := 500;
  WizardForm.WizardBitmapImage.Height := 315;

  WLabel1 := TLabel.Create(WizardForm);
  WLabel1.Left := ScaleX(176); 
  WLabel1.Top := ScaleY(16);
  WLabel1.Width := ScaleX(301); 
  WLabel1.Height := ScaleY(54); 
  WLabel1.AutoSize := False;
  WLabel1.WordWrap := True;
  WLabel1.Font.Name := 'verdana'; 
  WLabel1.Font.Size := 12; 
  WLabel1.Font.Style := [fsBold];
  WLabel1.Font.Color:= clBlack; 
  WLabel1.ShowAccelChar := False;
  WLabel1.Caption := WizardForm.WelcomeLabel1.Caption;
  WLabel1.Transparent := True;
  WLabel1.Parent := WizardForm.WelcomePage;

  WLabel2 :=TLabel.Create(WizardForm);
  WLabel2.Top := ScaleY(76);
  WLabel2.Left := ScaleX(176); 
  WLabel2.Width := ScaleX(301); 
  WLabel2.Height := ScaleY(234); 
  WLabel2.AutoSize := False;
  WLabel2.WordWrap := True;
  WLabel2.Font.Name := 'tahoma'; 
  WLabel2.Font.Color:= clBlack; 
  WLabel2.ShowAccelChar := False;
  WLabel2.Caption := WizardForm.WelcomeLabel2.Caption;
  WLabel2.Transparent := True;
  WLabel2.Parent := WizardForm.WelcomePage;

  WizardForm.WizardBitmapImage2.Width := 500; 
  WizardForm.WizardBitmapImage2.Height := 315; 

  FLabel1 := TLabel.Create(WizardForm); 
  FLabel1.Left := ScaleX(176); 
  FLabel1.Top := ScaleY(16);
  FLabel1.Width := ScaleX(301); 
  FLabel1.Height := ScaleY(54); 
  FLabel1.AutoSize := False;
  FLabel1.WordWrap := True;
  FLabel1.Font.Name := 'verdana'; 
  FLabel1.Font.Size := 12; 
  FLabel1.Font.Style := [fsBold];
  FLabel1.Font.Color:= clBlack; 
  FLabel1.ShowAccelChar := False;
  FLabel1.Caption := WizardForm.FinishedHeadingLabel.Caption;
  FLabel1.Transparent := True;
  FLabel1.Parent := WizardForm.FinishedPage;

  FLabel2 :=TLabel.Create(WizardForm);
  FLabel2.Top := ScaleY(76);
  FLabel2.Left := ScaleX(176); 
  FLabel2.Width := ScaleX(301); 
  FLabel2.Height := ScaleY(53); 
  FLabel2.AutoSize := False;
  FLabel2.WordWrap := True;
  FLabel2.Font.Name := 'tahoma'; 
  FLabel2.Font.Color:= clBlack; 
  FLabel2.ShowAccelChar := False;
  FLabel2.Caption := WizardForm.FinishedLabel.Caption;
  FLabel2.Transparent := True;
  FLabel2.Parent := WizardForm.FinishedPage;
end;

Last edited by nicola16; 29-05-2013 at 16:21.
Reply With Quote
  #8  
Old 30-05-2013, 00:50
Thang Thang is offline
Registered User
 
Join Date: May 2013
Location: Ha nOi, Viet Nam
Posts: 3
Thanks: 2
Thanked 0 Times in 0 Posts
Thang is on a distinguished road
I have 2 probrem with my code
1. I can't show license page before welcome page & ready page before installing page
2. I using StatusLabel.SetBounds but i don't see status in installing page
Please help myyyyy. Sr for my english bad @@

Last edited by Thang; 06-06-2013 at 23:29.
Reply With Quote
  #9  
Old 30-05-2013, 09:45
y_thelastknight's Avatar
y_thelastknight y_thelastknight is offline
Registered User
 
Join Date: Mar 2010
Location: Canada
Posts: 437
Thanks: 616
Thanked 576 Times in 213 Posts
y_thelastknight is on a distinguished road
Quote:
Originally Posted by Thang View Post
I have 2 probrem with my code
1. I can't show license page before welcome page & ready page before installing page
2. I using StatusLabel.SetBounds but i don't see status in installing page
Please help myyyyy. Sr for my english bad @@
1. its disabled..i dont know how to do that..

2. chk attachment..
Attached Files
File Type: 7z Edit.7z (623.6 KB, 78 views)
Reply With Quote
The Following User Says Thank You to y_thelastknight For This Useful Post:
Thang (30-05-2013)
  #10  
Old 29-05-2013, 16:18
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
its listed in the first section ?

WizardForm.WizardBitmapImage.Bitmap.LoadFromFile('F:\InstallShield2_495x314.bmp');
Reply With Quote
  #11  
Old 29-05-2013, 16:20
nicola16's Avatar
nicola16 nicola16 is offline
Registered User
 
Join Date: Nov 2008
Location: Italia
Posts: 74
Thanks: 23
Thanked 15 Times in 12 Posts
nicola16 is on a distinguished road
Quote:
Originally Posted by pakrat2k2 View Post
its listed in the first section ?

WizardForm.WizardBitmapImage.Bitmap.LoadFromFile('F:\InstallShield2_495x314.bmp');
Is example name.

example.495x314
Reply With Quote
  #12  
Old 29-05-2013, 16:22
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
that just lists its size for reference, doesn't need to be there.
Reply With Quote
  #13  
Old 29-05-2013, 16:27
nicola16's Avatar
nicola16 nicola16 is offline
Registered User
 
Join Date: Nov 2008
Location: Italia
Posts: 74
Thanks: 23
Thanked 15 Times in 12 Posts
nicola16 is on a distinguished road
Yes, but how do I put a logo at the bottom of it red mark?

who can help me complete the code.

Reply With Quote
  #14  
Old 29-05-2013, 16:29
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
so change the 'F:\InstallShield2_495x314.bmp' to file of your choice & test it to see where it shows up.
Reply With Quote
  #15  
Old 29-05-2013, 16:36
nicola16's Avatar
nicola16 nicola16 is offline
Registered User
 
Join Date: Nov 2008
Location: Italia
Posts: 74
Thanks: 23
Thanked 15 Times in 12 Posts
nicola16 is on a distinguished road
Quote:
Originally Posted by pakrat2k2 View Post
so change the 'F:\InstallShield2_495x314.bmp' to file of your choice & test it to see where it shows up.
always the same.

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 06:23.


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