home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 April / Chip_1997-04_cd.bin / prezent / cb / data.z / DIROUTX.H < prev    next >
C/C++ Source or Header  |  1997-01-16  |  2KB  |  44 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++ Builder
  3. //Copyright (c) 1987 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef diroutxH
  7. #define diroutxH
  8. //---------------------------------------------------------------------------
  9. #include <vcl\Classes.hpp>
  10. #include <vcl\Controls.hpp>
  11. #include <vcl\StdCtrls.hpp>
  12. #include <vcl\Forms.hpp>
  13. #include <vcl\DirOutln.hpp>
  14. #include <vcl\Outline.hpp>
  15. #include <vcl\Grids.hpp>
  16. #include <vcl\FileCtrl.hpp>
  17. //---------------------------------------------------------------------------
  18. class TForm1 : public TForm
  19. {
  20. __published:    // IDE-managed Components 
  21.     TDirectoryOutline *DirectoryOutline1;
  22.     TLabel *Label2;
  23.     TDriveComboBox *DriveComboBox1;
  24.     TLabel *Label1;
  25.     TLabel *Label3;
  26.     TEdit *Edit1;
  27.     TFileListBox *FileListBox1;
  28.     TLabel *Label5;
  29.     TMemo *Memo1;
  30.     TLabel *Label4;
  31.     void __fastcall DirectoryOutline1Change(TObject *Sender);
  32.     void __fastcall DriveComboBox1Change(TObject *Sender);
  33.     void __fastcall Edit1Change(TObject *Sender);
  34.     
  35.     void __fastcall FileListBox1Change(TObject *Sender);
  36. private:        // User declarations
  37. public:         // User declarations
  38.     virtual __fastcall TForm1(TComponent* Owner);
  39. };
  40. //---------------------------------------------------------------------------
  41. extern TForm1 *Form1;
  42. //---------------------------------------------------------------------------
  43. #endif
  44.