home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / AddOns / Books / 4 / EX08.ZIP / CONTROL1 / MAIN.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1995-11-02  |  425 b   |  29 lines

  1. unit Main;
  2.  
  3. interface
  4.  
  5. uses
  6.   WinTypes, WinProcs,
  7.   Classes, Graphics, Controls,
  8.   Printers, Menus, Forms, StdCtrls;
  9.  
  10. type
  11.   TForm1 = class(TForm)
  12.     Edit1: TEdit;
  13.     procedure Edit1DblClick(Sender: TObject);
  14.   end;
  15.  
  16. var
  17.   Form1: TForm1;
  18.  
  19. implementation
  20.  
  21. {$R *.DFM}
  22.  
  23. procedure TForm1.Edit1DblClick(Sender: TObject);
  24. begin
  25.   Edit1.Text := '┬√ ΣΓαµΣ√ ∙σδΩφ≤δΦ Γ ±≥≡εΩσ ≡σΣαΩ≥Φ≡εΓαφΦ ';
  26. end;
  27.  
  28. end.
  29.