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

 
 
Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #2  
Old 01-09-2016, 12:29
JRD!'s Avatar
JRD! JRD! is offline
Registered User
 
Join Date: Sep 2015
Location: Matrix
Posts: 274
Thanks: 225
Thanked 600 Times in 168 Posts
JRD! is on a distinguished road
If you want just "Create a desktop icon" in the Ready Memo with your personal IconCB:
Code:
[Tasks]
//Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:Icons}";
Name: "groupicon"  ; Description: "{cm:CreateGroupIcon}";   GroupDescription: "{cm:Icons}";

[CustomMessages]
Icons=Icons:
CreateDesktopIcon=Create a desktop icon
CreateGroupIcon=Create a startmenu icon

[#Code]
var
  IconCB: TNewCheckBox;

function UpdateReadyMemo(Space, NewLine, MemoUserInfoInfo, MemoDirInfo, MemoTypeInfo,
  MemoComponentsInfo, MemoGroupInfo, MemoTasksInfo: String): String;
var
  S1, S2: String;
begin
  S1 := '';
  S2 := '';
  S1 := S1 + MemoDirInfo + NewLine + NewLine;
  if IconCB.Checked then
  S2 := #32#32#32#32#32#32#32#32#32+CustomMessage('CreateDesktopIcon');
  S1 := S1 + MemoTasksInfo + NewLine + S2 + NewLine;
  Result := S1;
end;
If you want show your personal IconCB in the memo add this code:

Code:
[#Code]
Procedure CurPageChanged(CurPageID: Integer);
begin
  if CurPageID = wpReady then IconCB.Show else IconCB.Hide;
end;
For IconCB creation:

Code:
Procedure InitializeWizard();
begin
  IconCB := TNewCheckBox.Create(WizardForm);
  with IconCB do
  begin
    Parent := WizardForm.ReadyMemo;
    SetBounds(25,150,150,15);
    Caption:=CustomMessage('CreateDesktopIcon');
    Checked:=True;
  end;
end;
I have not quite understood your request ...
Reply With Quote
The Following User Says Thank You to JRD! For This Useful Post:
buttignol (01-09-2016)
 

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
Transformers: Rise of the Dark Spark 2xDVD5 *GBB+srep+FreeArc lzma* ahmetbtmn PC Games - CD/DVD Conversions 6 02-07-2014 13:46
Anyone know why some PS2 games waste memorycard space needlessly? Cyber Akuma PS2 Games 8 09-11-2006 16:54
Icon is always the same _SpRoKaT_ CD/DVD Copy Protections & Utilities 1 04-07-2001 09:07
I have read page by page.... but 1 more question... thanks! Ryu1 DC Games 2 19-12-2000 09:04



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


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