|
|
|
#1
|
||||
|
||||
|
Quote:
![]() thank Bro..
__________________
Glass BB | BlackBox v2 | Portable Installer |
| Sponsored Links |
|
#2
|
|||
|
|||
|
y_thelastknight, i dont know if this method is valid to you, but in mine work
.my installer have only welcome screen.. All i do its create a config button like this: Quote:
Quote:
![]() Without botva its the same, create config button and leave next how quick install.. i hope if its not valid to you, be valid for other.. Last edited by Logrim; 21-01-2014 at 07:39. |
| The Following User Says Thank You to Logrim For This Useful Post: | ||
y_thelastknight (21-01-2014) | ||
|
#3
|
||||
|
||||
|
thanks logrim.
__________________
Glass BB | BlackBox v2 | Portable Installer |
|
#4
|
|||
|
|||
|
One question.. how can i call a custom form in a button?
|
|
#5
|
||||
|
||||
|
can't understand it.
__________________
Glass BB | BlackBox v2 | Portable Installer |
|
#6
|
|||
|
|||
|
yup.. i try to explain
. i create a custom form for task. i want to call it when I click "Task" button, created with botva. But i dont know how to call it.
Last edited by Logrim; 21-01-2014 at 09:24. |
|
#7
|
||||
|
||||
|
did you add (formname).Showmodel; ???
__________________
Glass BB | BlackBox v2 | Portable Installer |
|
#8
|
|||
|
|||
|
mmm, no, i have another custom form for the search button, and i call it in initializeWizard with "CreateDirBrowseForm";
p.d. i forget to say.. i work with inno 5.5.4 not with innoultra Last edited by Logrim; 21-01-2014 at 09:33. |
|
#9
|
||||
|
||||
|
Quote:
check your personal msg
__________________
Glass BB | BlackBox v2 | Portable Installer |
|
#10
|
||||
|
||||
|
guys what is botva, gdf, gdi etc? is it some kind plugin? & what are their functions? sorry i'm still noob
|
|
#11
|
||||
|
||||
|
we can add png jpg file to inno setup. can create wizardfom from image, or set masks for form.
i know thats all
__________________
Glass BB | BlackBox v2 | Portable Installer Last edited by y_thelastknight; 22-01-2014 at 03:42. |
| The Following User Says Thank You to y_thelastknight For This Useful Post: | ||
reiji777 (21-01-2014) | ||
|
#12
|
|||
|
|||
|
I need to know if it posible to disable the unninstall confirmation, and the finished unninstall confirmation msgboxes in inno, and how.. i already disable it in cancel button, but no figure how to make it in unninstall form. thanks..
P.D. Problem solved.. i add the /silent parameter in unnins000.exe shorcut, and how i have the unninstall form created, it appears without msgboxes.. i leave the answer for anyone who need it. P.D2. Its only work in unninstall shorcut.. someone knows the form of make silent in add/remove program? Thanks P.D. All Problems solved, thanks, Razor and Altef. Sorry for my poor vocabulary, i hope understand me. Last edited by Logrim; 27-01-2014 at 03:25. |
|
#13
|
|||
|
|||
|
I have a problem, i want a custom form that when click install button, detect if the game is already installed and ofers unninstall it. I have the custom form made and attached in install button, the form works but allways appears, when game is installed and when not..
my code in the install button is this: Quote:
Thanks, and again sorry if my english is not god. Last edited by Logrim; 30-01-2014 at 06:02. |
|
#14
|
||||
|
||||
|
Quote:
Code:
function NextButtonClick(CurPageID: Integer): Boolean;
begin
sndPlaySound(ExpandConstant('{tmp}\click.wav'), $0002);
if CurPageID = wpInstalling then begin
if IsWin64 then
if RegQueryStringValue(HKLM, 'SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVer sion\Uninstall\Knights of the Old Republic_is1','UninstallString', Uninstall) then begin
DetectUnsLabel.Show;
DetectUninsForm.ShowModal;
Uninstall:=RemoveQuotes(Uninstall);
end;
end else begin
if RegQueryStringValue(HKLM, 'SOFTWARE\Microsoft\Windows\CurrentVer sion\Uninstall\Knights of the Old Republic_is1','UninstallString', Uninstall) then begin
DetectUnsLabel.Show;
DetectUninsForm.ShowModal;
Uninstall:=RemoveQuotes(Uninstall);
end;
Result := not RadioButton_1.Checked;
end else Result := True;
end;
for hide customform use customform.hide, for delete use customform.free, customform := nil; if you use customform.showmodal then to close it use customform.modalresult := mrok; in ee version Last edited by altef_4; 01-02-2014 at 07:26. |
|
#15
|
|||
|
|||
|
How to merge autorun.exe into setup.exe according to yener90 CIU v1.0.0.6.Thanks in advance.
|
![]() |
|
|
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 |