View Single Post
  #3  
Old 22-08-2012, 16:41
pakrat2k2's Avatar
pakrat2k2 pakrat2k2 is offline
Moderator
 
Join Date: Apr 2005
Location: Canada
Posts: 7,209
Thanks: 3,040
Thanked 9,043 Times in 3,086 Posts
pakrat2k2 is on a distinguished road
fatalerror

you define initializewizard # first, depending on how many things you want to do. just increase the number for each seperate item.

#define InitializeWizard();
#define InitializeWizard(1);
#define InitializeWizard(2);


procedure InitializeWizard();
begin
..
..
..
end;
procedure InitializeWizard(1);
begin
..
..
..
end;
procedure InitializeWizard(2);
begin
..
..
..
end;

etc...

as for second part of question read yener's tutorial topic, its been asked & answered already.
Reply With Quote