View Single Post
  #17  
Old 25-10-2012, 05:49
Smurf Stomper's Avatar
Smurf Stomper Smurf Stomper is offline
Registered User
 
Join Date: Feb 2007
Location: EU
Posts: 118
Thanks: 0
Thanked 10 Times in 8 Posts
Smurf Stomper is on a distinguished road
I'm not using any images for the buttons - they're the standard windows button for forms, etc

Code:
  InstallButton:= TButton.Create(AutoRun);
  with InstallButton do begin
    Parent:= AutoRun;
    Left := 20;
    Top := 110;
    Width := 150;
    Height := 22;
    Caption:= 'Install';
    Cursor:= crHand;
    OnClick := @InstallButtonClick;
  end;
Reply With Quote