home *** CD-ROM | disk | FTP | other *** search
/ Delphi 4 Bible / Delphi_4_Bible_Tom_Swan_IDG_Books_1998.iso / source / FANCY / MAIN.PAS < prev   
Pascal/Delphi Source File  |  1998-04-13  |  673b  |  38 lines

  1. unit Main;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, Windows, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, StdCtrls, ExtCtrls, Buttons;
  8.  
  9. type
  10.   TMainForm = class(TForm)
  11.     Panel1: TPanel;
  12.     RadioButton1: TRadioButton;
  13.     RadioButton2: TRadioButton;
  14.     RadioButton3: TRadioButton;
  15.     RadioButton4: TRadioButton;
  16.     Panel2: TPanel;
  17.     RadioButton5: TRadioButton;
  18.     RadioButton6: TRadioButton;
  19.     RadioButton7: TRadioButton;
  20.     Memo1: TMemo;
  21.     Memo2: TMemo;
  22.     BitBtn1: TBitBtn;
  23.   private
  24.     { Private declarations }
  25.   public
  26.     { Public declarations }
  27.   end;
  28.  
  29. var
  30.   MainForm: TMainForm;
  31.  
  32. implementation
  33.  
  34. {$R *.DFM}
  35.  
  36. end.
  37.  
  38.