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

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 20-08-2017, 13:00
buntionly4u buntionly4u is offline
Registered User
 
Join Date: Jul 2017
Location: India
Posts: 10
Thanks: 0
Thanked 0 Times in 0 Posts
buntionly4u is on a distinguished road
Quote:
Originally Posted by ravencrow View Post
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..

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;

Last edited by buntionly4u; 20-08-2017 at 13:22.
Reply With Quote
Sponsored Links
  #2  
Old 20-08-2017, 14:59
-NORO- -NORO- is offline
Registered User
 
Join Date: May 2017
Location: France
Posts: 42
Thanks: 44
Thanked 12 Times in 11 Posts
-NORO- is on a distinguished road
Question

Quote:
Originally Posted by buntionly4u View Post
I have made many changes in that script that you can see..

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.

Last edited by -NORO-; 21-08-2017 at 04:57.
Reply With Quote
  #3  
Old 22-08-2017, 01:22
buntionly4u buntionly4u is offline
Registered User
 
Join Date: Jul 2017
Location: India
Posts: 10
Thanks: 0
Thanked 0 Times in 0 Posts
buntionly4u is on a distinguished road
Quote:
Originally Posted by -NORO- View Post
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.
can u pl tell how to remove this bug
Reply With Quote
  #4  
Old 22-08-2017, 02:20
-NORO- -NORO- is offline
Registered User
 
Join Date: May 2017
Location: France
Posts: 42
Thanks: 44
Thanked 12 Times in 11 Posts
-NORO- is on a distinguished road
Quote:
Originally Posted by buntionly4u View Post
can u pl tell how to remove this bug
I guess you didnt answer to my question first
Reply With Quote
The Following User Says Thank You to -NORO- For This Useful Post:
Grumpy (22-08-2017)
  #5  
Old 22-08-2017, 06:03
buntionly4u buntionly4u is offline
Registered User
 
Join Date: Jul 2017
Location: India
Posts: 10
Thanks: 0
Thanked 0 Times in 0 Posts
buntionly4u is on a distinguished road
Quote:
Originally Posted by -NORO- View Post
I guess you didnt answer to my question first
i have already mentioned from where i got this script and secondly your names were included unintentionally. i showed this script to my frnd who done some changes including your name (coz i have given him corepack's installer inwhich your names were mentioned). I haven't noticed until you pointed out.
Reply With Quote
  #6  
Old 21-08-2017, 03:32
ravencrow ravencrow is offline
Registered User
 
Join Date: Feb 2015
Location: SG
Posts: 19
Thanks: 29
Thanked 12 Times in 8 Posts
ravencrow is on a distinguished road
Quote:
Originally Posted by buntionly4u View Post
I have made many changes in that script that you can see..

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
Reply With Quote
  #7  
Old 21-08-2017, 03:38
buntionly4u buntionly4u is offline
Registered User
 
Join Date: Jul 2017
Location: India
Posts: 10
Thanks: 0
Thanked 0 Times in 0 Posts
buntionly4u is on a distinguished road
Quote:
Originally Posted by ravencrow View Post
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
I will remove all the names from the script once I done with the script.
Reply With Quote
  #8  
Old 21-08-2017, 03:41
Kobi Blade's Avatar
Kobi Blade Kobi Blade is offline
Registered User
 
Join Date: Dec 2016
Location: 127.0.0.1
Posts: 21
Thanks: 21
Thanked 12 Times in 8 Posts
Kobi Blade is on a distinguished road
Quote:
Originally Posted by ravencrow View Post
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
Clearly someone leaked it, any other bugs we should know about to fix it and use? (NORO did say he shared with few people, big mistake)

Quote:
Originally Posted by buntionly4u View Post
I will remove all the names from the script once I done with the script.
That won't solve the problem of you stealing others work and claiming to be your own, and now you just admitted you're going to remove the credits (no wonder everyone is closing their sources and/or stopping development).

Last edited by Kobi Blade; 21-08-2017 at 03:46.
Reply With Quote
The Following User Says Thank You to Kobi Blade For This Useful Post:
Razor12911 (31-08-2017)
  #9  
Old 21-08-2017, 04:06
buntionly4u buntionly4u is offline
Registered User
 
Join Date: Jul 2017
Location: India
Posts: 10
Thanks: 0
Thanked 0 Times in 0 Posts
buntionly4u is on a distinguished road
Quote:
Originally Posted by Kobi Blade View Post
Clearly someone leaked it, any other bugs we should know about to fix it and use? (NORO did say he shared with few people, big mistake)


That won't solve the problem of you stealing others work and claiming to be your own, and now you just admitted you're going to remove the credits (no wonder everyone is closing their sources and/or stopping development).
where the question of stealing others work comes from when someone made his work open for public. pl check the below link for god sake

http://fileforums.com/showthread.php...light=corepack
Reply With Quote
  #10  
Old 21-08-2017, 04:19
Kobi Blade's Avatar
Kobi Blade Kobi Blade is offline
Registered User
 
Join Date: Dec 2016
Location: 127.0.0.1
Posts: 21
Thanks: 21
Thanked 12 Times in 8 Posts
Kobi Blade is on a distinguished road
Quote:
Originally Posted by buntionly4u View Post
where the question of stealing others work comes from when someone made his work open for public. pl check the below link for god sake

http://fileforums.com/showthread.php...light=corepack
That is from Razor12911 in order to share with other developers how it's done, what you have is a custom EDIT from ravencrow!

That is not the base of the problem though, is the fact you claim it's your work and admitted you're going to remove the credits of those who spent hours/days/weeks/months/years working on it. It's because of people like you that developers don't cooperate and improve their projects (sharing their sources), leeches taking credit of others work.

I hope no one helps you with that, cause clearly you don't deserve it. If you truly had a hand in that script you could fix it alone with no effort, much like I did (at least I won't take credit for others work).

Last edited by Kobi Blade; 21-08-2017 at 05:42.
Reply With Quote
The Following User Says Thank You to Kobi Blade For This Useful Post:
Razor12911 (31-08-2017)
  #11  
Old 21-08-2017, 04:21
buntionly4u buntionly4u is offline
Registered User
 
Join Date: Jul 2017
Location: India
Posts: 10
Thanks: 0
Thanked 0 Times in 0 Posts
buntionly4u is on a distinguished road
Angry

Quote:
Originally Posted by Kobi Blade View Post
That is from Razor12911 in order to share to others how it's done, what you have is a custom EDIT from ravencrow!

That is not the base of the problem though, is the fact you claim it's your work and admitted you're going to remove the credits of those who spent hours/days/weeks/months/years working on it.
I haven't removed but they don't want to include...

do the changes way you want and post the script..
Reply With Quote
  #12  
Old 21-08-2017, 04:28
Kobi Blade's Avatar
Kobi Blade Kobi Blade is offline
Registered User
 
Join Date: Dec 2016
Location: 127.0.0.1
Posts: 21
Thanks: 21
Thanked 12 Times in 8 Posts
Kobi Blade is on a distinguished road
Quote:
Originally Posted by buntionly4u View Post
I haven't removed but they don't want to include...

do the changes way you want and post the script..
I'm not going to post anything (no way I'm helping leeches), this is ravencrow work! The fixes I make are for my own use, unless ravencrow states otherwise.
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
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
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
Copy file with Inno Setup Script emrahcey Software 1 02-07-2010 08:24



All times are GMT -7. The time now is 06:19.


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