View Single Post
  #55  
Old 31-05-2013, 12:40
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,749
Thanks: 2,170
Thanked 11,206 Times in 2,307 Posts
Razor12911 is on a distinguished road
hmm, okay, this is how you do it,

Create a button or use existing button.

this is how you set up a new button

[Code]
var
Button1: TButton;

procedure InitializeWizard;
begin
Button1:= TButton.Create(WizardForm);
with Button1 do
begin
Left:=Number Here
Top:=Number Here
Width:=Number Here
Height:=Number Here
Parent:= WinControl Here
Caption:= Text Here
end;

Last edited by Razor12911; 31-05-2013 at 13:25.
Reply With Quote
The Following User Says Thank You to Razor12911 For This Useful Post:
nicola16 (02-06-2013)