home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1997 May
/
Pcwk0597.iso
/
borland
/
cb
/
setup
/
cbuilder
/
data.z
/
NDXREBU.H
< prev
next >
Wrap
C/C++ Source or Header
|
1997-02-28
|
2KB
|
46 lines
//----------------------------------------------------------------------------
//Borland C++Builder
//Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
//----------------------------------------------------------------------------
//---------------------------------------------------------------------------
#ifndef ndxrebuH
#define ndxrebuH
//---------------------------------------------------------------------------
#include <vcl\Classes.hpp>
#include <vcl\Controls.hpp>
#include <vcl\StdCtrls.hpp>
#include <vcl\Forms.hpp>
#include <vcl\Buttons.hpp>
#include <vcl\ComCtrls.hpp>
#include <vcl\DBTables.hpp>
#include <vcl\DB.hpp>
//---------------------------------------------------------------------------
class TForm1 : public TForm
{
__published: // IDE-managed Components
TLabel *Label1;
TLabel *Label2;
TComboBox *cbAlias;
TComboBox *cbTable;
TBitBtn *BitBtn1;
TBitBtn *BitBtn2;
TStatusBar *StatusBar1;
TTable *tblIndex;
void __fastcall FormCreate(TObject *Sender);
void __fastcall cbAliasChange(TObject *Sender);
void __fastcall BitBtn1Click(TObject *Sender);
private: // User declarations
public: // User declarations
virtual __fastcall TForm1(TComponent* Owner);
void __fastcall HandleExceptions(TObject *Sender, Exception *E);
bool __fastcall RebuildIndexes(AnsiString strAlias, AnsiString strTable,
AnsiString& strError);
void __fastcall WriteMsg(AnsiString strWrite);
};
//---------------------------------------------------------------------------
extern TForm1 *Form1;
//---------------------------------------------------------------------------
#endif