home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1997 April
/
Chip_1997-04_cd.bin
/
prezent
/
cb
/
data.z
/
CUSTORDS.H
< prev
next >
Wrap
C/C++ Source or Header
|
1997-01-16
|
1KB
|
35 lines
//----------------------------------------------------------------------------
//Borland C++ Builder
//Copyright (c) 1987 Borland International Inc. All Rights Reserved.
//----------------------------------------------------------------------------
//---------------------------------------------------------------------------
#ifndef CustOrdsH
#define CustOrdsH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <DBCtrls.hpp>
#include <Mask.hpp>
#include <DBGrids.hpp>
#include <Grids.hpp>
//---------------------------------------------------------------------------
class TfmCustOrd : public TForm
{
__published: // IDE-managed Components
TDBEdit *DBEdit1;
TDBGrid *DBGrid1;
void __fastcall FormActivate(TObject *Sender);
void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
void __fastcall DBGrid1Enter(TObject *Sender);
private: // User declarations
public: // User declarations
virtual __fastcall TfmCustOrd(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern TfmCustOrd *fmCustOrd;
//---------------------------------------------------------------------------
#endif