FileForums

FileForums (https://fileforums.com/index.php)
-   Conversion Tutorials (https://fileforums.com/forumdisplay.php?f=55)
-   -   Blackbox Inno Setup Script (https://fileforums.com/showthread.php?t=94425)

Jiva newstone 05-04-2017 09:15

iam jiva , i have a error in unpacking archieves in inno i use this method srep64+delta+exe+lzma

Abin Antony 15-04-2017 09:42

Quote:

Originally Posted by Stor31 (Post 457168)
It's just an example :rolleyes::rolleyes:

1-start menu
2-taper regedit
3-searched key
4-right click
5-export to desktop
6-convert to ino (tools by pakrat2k2 thx)
http://fileforums.com/showpost.php?p=410165&postcount=2
7-copy and paste into the script section [Registry] looks picture ...
Enjoy

I have tried it.But this one creates a registry entry for a single installation location.It will not work if I wanted a different directory.Is there any way I can do that.Most of the repacks I have seen would create a registry entry entry for any location.I believe you can help me with this.:(:(:(

78372 15-04-2017 21:31

Quote:

Originally Posted by Abin Antony (Post 458115)
I have tried it.But this one creates a registry entry for a single installation location.It will not work if I wanted a different directory.Is there any way I can do that.Most of the repacks I have seen would create a registry entry entry for any location.I believe you can help me with this.:(:(:(

Change the C:\Program files to {app}

Abin Antony 17-04-2017 02:58

Quote:

Originally Posted by 78372 (Post 458127)
Change the C:\Program files to {app}

Can you be bit more precise

Abin Antony 17-04-2017 03:13

In the setup I am not getting the second page- the page asking the destination of installation, for blackbox setup I made.Please help.

78372 24-04-2017 10:05

Quote:

Originally Posted by Abin Antony (Post 458141)
Can you be bit more precise

Give me a registry file as example and I will convert it for you. See that example and you will understand

mortezaali 24-06-2017 01:34

Hi
I make a Setup with Black Box v2 Designer, size of this setup is 11mb
But, the setup which maked by black box have 2mb
i want to create a setup with small size

Stor31 29-06-2017 10:18

Help and thanks ....
How to add more shortcuts in Blackbox Inno Setup Script ???

buntionly4u 19-08-2017 06:06

3 Attachment(s)
Help needed
Want to enable or disable program group through checkbox as it is in blackbox's script.

ravencrow 20-08-2017 09:31

Quote:

Originally Posted by buntionly4u (Post 461821)
Help needed
Want to enable or disable program group through checkbox as it is in blackbox's script.

from where did you get this script?

buntionly4u 20-08-2017 09:51

Quote:

Originally Posted by ravencrow (Post 461832)
from where did you get this script?

From here:
http://fileforums.com/showthread.php...light=corepack

ravencrow 20-08-2017 10:00

Quote:

Originally Posted by buntionly4u (Post 461833)

i don't think so, look at the watermark and stuff in lockscreen ;)

buntionly4u 20-08-2017 13:00

Quote:

Originally Posted by ravencrow (Post 461834)
i don't think so, look at the watermark and stuff in lockscreen ;)

I have made many changes in that script that you can see..:rolleyes:

Can u help me out?
Since I am not from IT background so don't know much about programming. In this script I am not able to link the 'no start menu folder checkbox' with the 'start group selection'. if checkbox is checked then no start menu folder and disabled start group selection and if not then start menu folder.

Pl have a look at the code:

function CheckError:boolean;
begin
if ISDoneError = True then
Result := False
else
Result := True;
end;

function CreateGI:boolean;
begin
if CheckError = True then
begin
if NoIconsCheck.IsChecked then
Result:=True
else
Result:=False;
end;
end;

procedure NoIconsCheckOnClick(Sender: TObject);
begin
if NoIconsCheck.IsChecked=True then begin
WizardForm.GroupEdit.Enabled:= false;
WizardForm.GroupBrowseButton.Enabled:= false;
ButtonSetEnabled(GroupBtn, false);
end else begin
WizardForm.GroupEdit.Enabled:= true;
WizardForm.GroupBrowseButton.Enabled:= true;
ButtonSetEnabled(GroupBtn, true);
end;
WizardForm.GroupEdit.Color:= clblack;
end;

-NORO- 20-08-2017 14:59

Quote:

Originally Posted by buntionly4u (Post 461836)
I have made many changes in that script that you can see..:rolleyes:

Can u help me out?
Since I am not from IT background so don't know much about programming. In this script I am not able to link the 'no start menu folder checkbox' with the 'start group selection'. if checkbox is checked then no start menu folder and disabled start group selection and if not then start menu folder.

Pl have a look at the code:

function CheckError:boolean;
begin
if ISDoneError = True then
Result := False
else
Result := True;
end;

function CreateGI:boolean;
begin
if CheckError = True then
begin
if NoIconsCheck.IsChecked then
Result:=True
else
Result:=False;
end;
end;

procedure NoIconsCheckOnClick(Sender: TObject);
begin
if NoIconsCheck.IsChecked=True then begin
WizardForm.GroupEdit.Enabled:= false;
WizardForm.GroupBrowseButton.Enabled:= false;
ButtonSetEnabled(GroupBtn, false);
end else begin
WizardForm.GroupEdit.Enabled:= true;
WizardForm.GroupBrowseButton.Enabled:= true;
ButtonSetEnabled(GroupBtn, true);
end;
WizardForm.GroupEdit.Color:= clblack;
end;

Hello
Can you tell me, from where you got it ? , am curious because there is my name in watermark and i shared it only to few people.
Btw your functions to analyze hard disk and give informations arent working when you choose another drive like D ,F , etc.

ravencrow 21-08-2017 03:32

Quote:

Originally Posted by buntionly4u (Post 461836)
I have made many changes in that script that you can see..:rolleyes:

Can u help me out?
Since I am not from IT background so don't know much about programming. In this script I am not able to link the 'no start menu folder checkbox' with the 'start group selection'. if checkbox is checked then no start menu folder and disabled start group selection and if not then start menu folder.

Pl have a look at the code:

function CheckError:boolean;
begin
if ISDoneError = True then
Result := False
else
Result := True;
end;

function CreateGI:boolean;
begin
if CheckError = True then
begin
if NoIconsCheck.IsChecked then
Result:=True
else
Result:=False;
end;
end;

procedure NoIconsCheckOnClick(Sender: TObject);
begin
if NoIconsCheck.IsChecked=True then begin
WizardForm.GroupEdit.Enabled:= false;
WizardForm.GroupBrowseButton.Enabled:= false;
ButtonSetEnabled(GroupBtn, false);
end else begin
WizardForm.GroupEdit.Enabled:= true;
WizardForm.GroupBrowseButton.Enabled:= true;
ButtonSetEnabled(GroupBtn, true);
end;
WizardForm.GroupEdit.Color:= clblack;
end;

you say you have no it background and programming knowledge, yet you managed to make all these changes to the script? and why did you put my name and NORO's name into your script? it doesn't make sense


All times are GMT -7. The time now is 13:05.

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