Advertisement
TLama

Untitled

Feb 12th, 2014
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Delphi 0.32 KB | None | 0 0
  1. [Code]
  2. procedure InitializeWizard;
  3. var
  4.   StaticText: TNewStaticText;
  5. begin
  6.   StaticText := TNewStaticText.Create(WizardForm);
  7.   StaticText.Parent := WizardForm;
  8.   StaticText.Left := 0;
  9.   StaticText.Top := WizardForm.NextButton.Top;
  10.   StaticText.Font.Style := [fsBold];
  11.   StaticText.Caption := 'This is a bold text';
  12. end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement