Thread: R.G Catalyst v2
View Single Post
  #6  
Old 29-02-2016, 03:13
rinaldo's Avatar
rinaldo rinaldo is offline
Registered User
 
Join Date: Sep 2015
Location: Rome
Posts: 433
Thanks: 101
Thanked 696 Times in 191 Posts
rinaldo is on a distinguished road
Quote:
Originally Posted by punchao View Post
how to hide this button?
WizardForm
Code:
procedure InitializeWizard();
begin
RedesignWizardForm;
langBtn.Hide;


Cancel Form
Code:
LanguageChangeButton2 := TNewButton.Create(Panel4);
with LanguageChangeButton2 do
begin
Parent := Panel4;
Height := ScaleY(30);
Left := ScaleX(5);
Top := ScaleY(372);
Width := ScaleX(31);
Caption:='En';
OnClick := @LangClick2;
hide;
end;
__________________
if you understand read more
Reply With Quote
The Following 2 Users Say Thank You to rinaldo For This Useful Post:
dixen (24-06-2020), punchao (29-02-2016)