home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Setup / BCB / data.z / ndxrebu.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-02-09  |  1.7 KB  |  46 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1998 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef ndxrebuH
  7. #define ndxrebuH
  8. //---------------------------------------------------------------------------
  9. #include <Classes.hpp>
  10. #include <Controls.hpp>
  11. #include <StdCtrls.hpp>
  12. #include <Forms.hpp>
  13. #include <Buttons.hpp>
  14. #include <ComCtrls.hpp>
  15. #include <DBTables.hpp>
  16. #include <DB.hpp>
  17. //---------------------------------------------------------------------------
  18. class TForm1 : public TForm
  19. {
  20. __published:    // IDE-managed Components 
  21.     TLabel *Label1;
  22.     TLabel *Label2;
  23.     TComboBox *cbAlias;
  24.     TComboBox *cbTable;
  25.     TBitBtn *BitBtn1;
  26.     TBitBtn *BitBtn2;
  27.     TStatusBar *StatusBar1;
  28.     TTable *tblIndex;
  29.     void __fastcall FormCreate(TObject *Sender);
  30.     void __fastcall cbAliasChange(TObject *Sender);
  31.     void __fastcall BitBtn1Click(TObject *Sender);
  32.     
  33.     
  34. private:        // User declarations
  35. public:         // User declarations
  36.     virtual __fastcall TForm1(TComponent* Owner);
  37.     void __fastcall HandleExceptions(TObject *Sender, Exception *E);
  38.     bool __fastcall RebuildIndexes(AnsiString strAlias, AnsiString strTable,
  39.     AnsiString& strError);
  40.     void __fastcall WriteMsg(AnsiString strWrite);
  41. };
  42. //---------------------------------------------------------------------------
  43. extern TForm1 *Form1;
  44. //---------------------------------------------------------------------------
  45. #endif
  46.