home *** CD-ROM | disk | FTP | other *** search
/ PC Format (South-Africa) 2001 June / PCFJune.iso / Xenon / ModBass / Delphi / 3dTest / DTSelect.pas < prev   
Encoding:
Pascal/Delphi Source File  |  2000-02-24  |  392 b   |  29 lines

  1. unit DTSelect;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   StdCtrls;
  8.  
  9. type
  10.   TForm2 = class(TForm)
  11.     ListBox1: TListBox;
  12.     CheckBox1: TCheckBox;
  13.     Button1: TButton;
  14.   private
  15.     { Private-Deklarationen }
  16.   public
  17.     { Public-Deklarationen }
  18.   end;
  19.  
  20. var
  21.   Form2: TForm2;
  22.  
  23. implementation
  24.  
  25. {$R *.DFM}
  26.  
  27. end.
  28.  
  29.