home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 September / Chip_2002-09_cd1.bin / zkuste / delphi / kompon / d45 / OPTIONS.ZIP / Units / BooleanEditor.pas < prev    next >
Pascal/Delphi Source File  |  2001-07-25  |  392b  |  26 lines

  1. unit BooleanEditor;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   StdCtrls, ExtCtrls;
  8.  
  9. type
  10.   TfrmBooleanEditor = class(TForm)
  11.     rgrBoolean: TRadioGroup;
  12.     Button1: TButton;
  13.     Button2: TButton;
  14.   private
  15.     { Private declarations }
  16.   public
  17.     { Public declarations }
  18.   end;
  19.  
  20. implementation
  21.  
  22. {$R *.DFM}
  23.  
  24. end.
  25.  
  26.