Go Back   FileForums > Game Backup > PC Games > PC Games - CD/DVD Conversions > Conversion Tutorials

Reply
 
Thread Tools Display Modes
  #16  
Old 06-01-2019, 03:19
mahmoudmakhamra mahmoudmakhamra is offline
Registered User
 
Join Date: Nov 2018
Location: palestine
Posts: 25
Thanks: 9
Thanked 3 Times in 3 Posts
mahmoudmakhamra is on a distinguished road
Can I disable [SmallInstaller]؟
Reply With Quote
Sponsored Links
  #17  
Old 06-01-2019, 03:34
mausschieber's Avatar
mausschieber mausschieber is online now
Conversion Designer
 
Join Date: Jan 2011
Location: germany
Posts: 3,569
Thanks: 5,583
Thanked 9,995 Times in 2,630 Posts
mausschieber is on a distinguished road
Quote:
Originally Posted by mahmoudmakhamra View Post
Can I disable [SmallInstaller]؟
i think under

[InstallOptions]
---------------------------------------------------------------
AllowWithoutSmallInstaller=1
__________________
It would be nice if you appreciate my work with the thanks Button
Reply With Quote
  #18  
Old 06-01-2019, 04:17
mahmoudmakhamra mahmoudmakhamra is offline
Registered User
 
Join Date: Nov 2018
Location: palestine
Posts: 25
Thanks: 9
Thanked 3 Times in 3 Posts
mahmoudmakhamra is on a distinguished road
Quote:
Originally Posted by mausschieber View Post
i think under

[InstallOptions]
---------------------------------------------------------------
AllowWithoutSmallInstaller=1
do not work
Reply With Quote
  #19  
Old 06-01-2019, 04:33
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,339
Thanks: 1,076
Thanked 6,935 Times in 2,618 Posts
KaktoR is on a distinguished road
Just delete Background folder
__________________
Haters gonna hate
Reply With Quote
The Following User Says Thank You to KaktoR For This Useful Post:
mahmoudmakhamra (06-01-2019)
  #20  
Old 06-01-2019, 04:58
mahmoudmakhamra mahmoudmakhamra is offline
Registered User
 
Join Date: Nov 2018
Location: palestine
Posts: 25
Thanks: 9
Thanked 3 Times in 3 Posts
mahmoudmakhamra is on a distinguished road
Quote:
Originally Posted by kaktor View Post
just delete background folder
tnx you
Reply With Quote
  #21  
Old 06-01-2019, 07:08
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,010
Thanks: 1,708
Thanked 2,165 Times in 736 Posts
Cesar82 is on a distinguished road
Quote:
Originally Posted by mausschieber View Post
i think under

[InstallOptions]
---------------------------------------------------------------
AllowWithoutSmallInstaller=1
This key is to allow the end user to disable the SmallInstaller through an external setup.ini (But smallInstaller files must be added)
The same goes for the key AllowWithoutAutorun= but to allow the end user to turn off the autorun page:
Code:
[InstallOptions]
AllowWithoutAutorun=1
Summing up: It allows the end user to choose whether to use smallInstaller and autorun pages.

In the external setup.ini the end user should use to diable smallInstaller or :
Code:
[InstallOptions]
WithoutAutorun=1
WithoutSmallInstaller=1
In the external setup.ini the end user must use to disable the smallInstaller or Autorun pages only if the conversion creator allows through the keys in setup.ini before compile setup.exe:
Code:
[InstallOptions]
AllowWithoutAutorun=1
AllowWithoutSmallInstaller=1
As kakoR has replied, for the creator of the conversion does not use SmallInstaller, just delete the backgroud folder or just rename it.

Last edited by Cesar82; 06-01-2019 at 07:10.
Reply With Quote
The Following 4 Users Say Thank You to Cesar82 For This Useful Post:
mausschieber (06-01-2019), pakrat2k2 (06-01-2019), Simorq (06-01-2019), Titeuf (08-01-2019)
  #22  
Old 08-01-2019, 03:19
Simorq's Avatar
Simorq Simorq is offline
Registered User
 
Join Date: Mar 2014
Location: Iran
Posts: 642
Thanks: 3,602
Thanked 1,303 Times in 464 Posts
Simorq is on a distinguished road
Fixed a font problem in the Licenses Accepted





Code:
..................
 LicenseCheckLabel.Lbl := TLabel.Create(WizardForm);
  LicenseCheckLabel.Shd := TLabel.Create(WizardForm);
  with LicenseCheckLabel.Lbl do begin
    Parent := WizardForm;
    Autosize := False;
    Caption := Wizardform.LicenseAcceptedRadio.Caption;
.............

Edit 
....................
 LicenseCheckLabel.Lbl := TLabel.Create(WizardForm);
  LicenseCheckLabel.Shd := TLabel.Create(WizardForm);
  with LicenseCheckLabel.Lbl do begin
    Parent := WizardForm;
    Autosize := True;
    Caption := Wizardform.LicenseAcceptedRadio.Caption;
.....................
Reply With Quote
The Following 6 Users Say Thank You to Simorq For This Useful Post:
Cesar82 (08-01-2019), KaktoR (08-01-2019), pakrat2k2 (08-01-2019), sajmon83 (11-01-2019), zirkhaki (09-01-2019)
  #23  
Old 08-01-2019, 03:25
Simorq's Avatar
Simorq Simorq is offline
Registered User
 
Join Date: Mar 2014
Location: Iran
Posts: 642
Thanks: 3,602
Thanked 1,303 Times in 464 Posts
Simorq is on a distinguished road
Fixed a font problem in the ComponentsDiskSpaceLabel



Code:
..................... ComponentsPage := CreateCustomPage(SystemPage.ID, '', '');

  ComponentsDiskSpaceLabel.Lbl := TLabel.Create(WizardForm);
  ComponentsDiskSpaceLabel.Shd := TLabel.Create(WizardForm);
  with ComponentsDiskSpaceLabel.Lbl do begin
    Parent := WizardForm;
    Transparent := True;
    AutoSize := False;
.....................

Edit
.....................
 ComponentsPage := CreateCustomPage(SystemPage.ID, '', '');

  ComponentsDiskSpaceLabel.Lbl := TLabel.Create(WizardForm);
  ComponentsDiskSpaceLabel.Shd := TLabel.Create(WizardForm);
  with ComponentsDiskSpaceLabel.Lbl do begin
    Parent := WizardForm;
    Transparent := True;
    AutoSize := True;
....................
Reply With Quote
The Following 6 Users Say Thank You to Simorq For This Useful Post:
Cesar82 (08-01-2019), KaktoR (08-01-2019), pakrat2k2 (08-01-2019), sajmon83 (11-01-2019), zirkhaki (09-01-2019)
  #24  
Old 08-01-2019, 07:30
Gupta Gupta is offline
Banned
 
Join Date: Aug 2016
Location: https://t.me/pump_upp
Posts: 399
Thanks: 139
Thanked 714 Times in 231 Posts
Gupta is on a distinguished road
Send a message via ICQ to Gupta Send a message via AIM to Gupta Send a message via Yahoo to Gupta
Awesome
Reply With Quote
  #25  
Old 12-01-2019, 20:29
pakrat2k2's Avatar
pakrat2k2 pakrat2k2 is offline
Moderator
 
Join Date: Apr 2005
Location: Canada
Posts: 7,209
Thanks: 3,040
Thanked 9,029 Times in 3,083 Posts
pakrat2k2 is on a distinguished road
Hotfix corrected issue just fine.
Reply With Quote
The Following User Says Thank You to pakrat2k2 For This Useful Post:
Cesar82 (12-01-2019)
  #26  
Old 18-01-2019, 16:36
pakrat2k2's Avatar
pakrat2k2 pakrat2k2 is offline
Moderator
 
Join Date: Apr 2005
Location: Canada
Posts: 7,209
Thanks: 3,040
Thanked 9,029 Times in 3,083 Posts
pakrat2k2 is on a distinguished road
Could a small change be made when it asks for next disk with file bla bla....
Actually have the disk number included ? If testing it only asks for filename not disk# / filename.
Reply With Quote
  #27  
Old 18-01-2019, 19:54
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,010
Thanks: 1,708
Thanked 2,165 Times in 736 Posts
Cesar82 is on a distinguished road
Quote:
Originally Posted by pakrat2k2 View Post
Could a small change be made when it asks for next disk with file bla bla....
Actually have the disk number included ? If testing it only asks for filename not disk# / filename.
I did not understand his question for sure.
When prompted the first volume of the disk displays the message stating which disk and file name to look for.
For diskspan files only before starting the extract prompts for the disk telling which disk number (Done within the CIU). In the diskspan extension files ".002",. "003", etc. the search is done internally inside the DiskSpan library and it is not possible to pass the information of the disk number that needs to be inserted. This is why the messages are different for files with ".002", ".003", etc. extensions.
Reply With Quote
The Following User Says Thank You to Cesar82 For This Useful Post:
pakrat2k2 (19-01-2019)
  #28  
Old 19-01-2019, 02:22
Titeuf's Avatar
Titeuf Titeuf is offline
Registered User
 
Join Date: Oct 2016
Location: France
Posts: 191
Thanks: 609
Thanked 22 Times in 19 Posts
Titeuf is on a distinguished road
Hello everyone,
Tell me how and how to use the following tools in the "_Tools (2019-01-01)" directory: Setup Patch Maker
Thanks in advance
Reply With Quote
  #29  
Old 19-01-2019, 11:11
houcine80's Avatar
houcine80 houcine80 is offline
Registered User
 
Join Date: Jul 2013
Location: Save Palestine
Posts: 873
Thanks: 3,107
Thanked 3,912 Times in 570 Posts
houcine80 is on a distinguished road
Hi
@Cesar82
this line (LineHeight = 1) on Equalizer does not work
Reply With Quote
  #30  
Old 19-01-2019, 16:04
mausschieber's Avatar
mausschieber mausschieber is online now
Conversion Designer
 
Join Date: Jan 2011
Location: germany
Posts: 3,569
Thanks: 5,583
Thanked 9,995 Times in 2,630 Posts
mausschieber is on a distinguished road
Quote:
Originally Posted by houcine80 View Post
Hi
@Cesar82
this line (LineHeight = 1) on Equalizer does not work
in my chase it work

NumberOfStripes=10
NumberOfBlocks=6
BlockWidth=5
BlockHeight=2
LineHeight=1
__________________
It would be nice if you appreciate my work with the thanks Button
Reply With Quote
Reply

Thread Tools
Display Modes

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
INDEX - Conversion Tutorial Index Razor12911 Conversion Tutorials 5 11-06-2020 02:05
[GSERIES] Custom Installer Ultimate V2g Gupta Conversion Tutorials 226 01-06-2018 13:12
Crysis 3 DVD9 to 3xDVD5 Custom Installer spawniectes PC Games - CD/DVD Conversions 79 31-08-2017 07:19



All times are GMT -7. The time now is 04:20.


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