home *** CD-ROM | disk | FTP | other *** search
/ Mastering Visual Basic 6 / mastvb6.iso / leadtools / ocx32.lt / LISTDIAG.H < prev    next >
Encoding:
C/C++ Source or Header  |  1997-06-20  |  965 b   |  31 lines

  1. //----------------------------------------------------------------------------
  2. #ifndef ListDiagH
  3. #define ListDiagH
  4. //----------------------------------------------------------------------------
  5. #include <vcl\ExtCtrls.hpp>
  6. #include <vcl\Buttons.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Controls.hpp>
  9. #include <vcl\Forms.hpp>
  10. #include <vcl\Graphics.hpp>
  11. #include <vcl\Classes.hpp>
  12. #include <vcl\SysUtils.hpp>
  13. #include <vcl\Windows.hpp>
  14. #include <vcl\System.hpp>
  15. //----------------------------------------------------------------------------
  16. class TListDlg : public TForm
  17. {
  18. __published:
  19.     TButton *OKBtn;
  20.     TButton *ListDlg;
  21.     TGroupBox *GroupBox1;
  22.     TListBox *ListBox1;
  23. private:
  24. public:
  25.     virtual __fastcall TListDlg(TComponent* AOwner);
  26. };
  27. //----------------------------------------------------------------------------
  28. extern TListDlg *ListDlg;
  29. //----------------------------------------------------------------------------
  30. #endif    
  31.