|
|
|
#1
|
||||
|
||||
|
you can copy tform and everything and put it right under InitializeSetup for anywhere else so that you can be able to use it.
|
| The Following User Says Thank You to Razor12911 For This Useful Post: | ||
danswano (02-03-2014) | ||
| Sponsored Links |
|
#2
|
|||
|
|||
|
How to check multiple files located on multiple disks?
Maybe like insert next disk to check then ask to insert back the first disk to start setup. Possible? |
|
#4
|
|||
|
|||
|
My ISDone script is customized, i've tried to put every part of the code in it's place but i end up with each try with this error:
|
|
#5
|
|||
|
|||
|
hi, i need help.. again,.. i hope that is the last time
..i have a custom change disc form.. all work,, but the image and the change disk label dont show together.. when i quit the image, the label show,, if i put the image the label not show.. i hope i explain well.. This is the form code: Quote:
Quote:
Last edited by Logrim; 02-03-2014 at 15:05. |
|
#6
|
||||
|
||||
|
Quote:
Quote:
MyChangeDiscLabel.bringtofront I forget it search it in inno setup file
__________________
Glass BB | BlackBox v2 | Portable Installer |
| The Following User Says Thank You to y_thelastknight For This Useful Post: | ||
Logrim (03-03-2014) | ||
|
#7
|
||||
|
||||
|
Quote:
Code:
///////////////////////////////////////////////////////////CUSTOM CHANGE DISC FORM
procedure MyChangeDiscMessage(Disk, Arc: String);
begin
MyChangeDisc := CreateCustomForm();
MyChangeDisc.BorderStyle:= bsNone;
MyChangeDisc.Position := poScreenCenter;
MyChangeDisc.BringToFront;
MyChangeDisc.ClientWidth := WizardForm.Width;
MyChangeDisc.ClientHeight := WizardForm.Height div 2;
MyChangeDiscLabel:= TLabel.Create(MyChangeDisc);
MyChangeDiscLabel.Parent:= MyChangeDisc;
MyChangeDiscLabel.Caption:='Please insert disc ' + Disk + ' with ' + ExtractFileName(Arc);
MyChangeDiscLabel.SetBounds(40,7,600,15);
MyChangeDiscLabel.AutoSize:= False;
MyChangeDiscLabel.WordWrap:= True;
MyChangeDiscLabel.Transparent:= True;
MyChangeDiscLabel.Font.Name := 'Verdana';
MyChangeDiscLabel.Font.Color:= clGray;
MyChangeDiscLabel.Font.Size:= 8;
CDYesBtn:=BtnCreate(MyChangeDisc.Handle,560,6,15,1 5,ExpandConstant('{tmp}\OkBtn.png'),0,False);
BtnSetEvent(CDYesBtn,BtnClickEventID,WrapBtnCallba ck(@ButtonOnClick,1));
BtnSetEvent(CDYesBtn,BtnMouseEnterEventID,WrapBtnC allback(@BtnEnter,1));
BtnSetCursor(CDYesBtn,GetSysCursorHandle(32649));
CDNoBtn:=BtnCreate(MyChangeDisc.Handle,572,6,15,15 ,ExpandConstant('{tmp}\ExitBtn.png'), 0, false);
BtnSetEvent(CDNoBtn,BtnClickEventID,WrapBtnCallback(@ButtonOnClick,1));
BtnSetEvent(CDNoBtn,BtnMouseEnterEventID,WrapBtnCa llback(@BtnEnter,1));
BtnSetCursor(CDNoBtn,GetSysCursorHandle(32649));
img:=ImgLoad(MyChangeDisc.Handle,ExpandConstant('{ tmp}\Exit.png'),0,0,600,190,True,True);
ImgApplyChanges(MyChangeDisc.Handle);
end;
function ShowDiskChanger(Disk, Arc: String):Integer;
begin
MyChangeDiscMessage(Disk, Arc);
Result:=MyChangeDisc.ShowModal;
end;
////////////////////////////////////////////////////////////////////////////////////////////////
|
|
#8
|
|||
|
|||
|
Thanks y_thelastknight, but doesnt work...
|
|
#9
|
||||
|
||||
|
how to install many fonts, right before the initial setup page starts?
Last edited by reiji777; 03-03-2014 at 04:53. |
|
#10
|
|||
|
|||
|
Thanks Altef, but unknow identifier Arc in this line, into curvestepchanged:
Quote:
Quote:
Quote:
Last edited by Logrim; 03-03-2014 at 06:04. |
|
#11
|
||||
|
||||
|
do you have Arc: array of string; in var section? or Arc: array [0..7] of string;
|
|
#12
|
|||
|
|||
|
Ermm.. Altef,, thanks for take so much trouble with me
.. im sleep .. i define the arc only as a string,, not array of string.. .. sorry.. all work perfect now,, script FINISHED!!!.. .. erm... i hope so :d.
|
|
#13
|
|||
|
|||
|
One question more... how can i make a multiple autorun? i mean.. "install game1", "install game2", "install game3". Thanks.. i recently discover how to make a mask for the installer, so I'm going to remodel completly the desing of the setup. All the installer work perfectly, without errors, thanks to your help again, razor, y_thelasknight and altef, only remain the multi-autorun
. thanks, and i hope you like the final design.
|
|
#14
|
||||
|
||||
|
Quote:
What you mean by multiple autorun. Did you create seperate script for autorun??
__________________
Glass BB | BlackBox v2 | Portable Installer |
|
#15
|
|||
|
|||
|
Yup, y_thelasknight, i have another script with the autorun..
i have it with install and play buttons.. (this are the main buttons). i want it with install1, install2, install3, button.. i figure how to make but I'm not sure and I prefer to ask before teasing the code
|
![]() |
|
|
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 |