TLama

Untitled

Apr 11th, 2014
495
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Delphi 0.26 KB | None | 0 0
  1. [Code]
  2. var
  3.   MyButton: TNewButton;
  4.  
  5. ...
  6.  
  7. procedure CurPageChanged(CurPageID: Integer);
  8. begin
  9.   // make your button visible only when the page that is just to be displayed is the components page
  10.   MyButton.Visible := CurPageID = wpSelectComponents;
  11. end;
Advertisement
Add Comment
Please, Sign In to add comment