View Single Post
  #599  
Old 09-06-2013, 14:09
y_thelastknight's Avatar
y_thelastknight y_thelastknight is offline
Registered User
 
Join Date: Mar 2010
Location: Canada
Posts: 437
Thanks: 616
Thanked 576 Times in 213 Posts
y_thelastknight is on a distinguished road
FWRadioButton1 := TNewRadioButton.Create(WizardForm);
with FWRadioButton1 do
begin
Parent := WizardForm;
Tag := 1;
Left := ScaleX(400);
Top := ScaleY(130);
Width := ScaleX(300);
Height := ScaleY(25);
Caption := ExpandConstant('run..');
Checked := True;
Font.Style := [fsBold];
Font.transparent:=true
OnClick := @RadioButtonsOnClick;
end;


how do i transparent the captions?

Edit
never mind solved another way

Last edited by y_thelastknight; 09-06-2013 at 14:33.
Reply With Quote