|
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.
|