home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1997 May
/
Pcwk0597.iso
/
borland
/
cb
/
setup
/
cbuilder
/
data.z
/
CUSTORDS.H
< prev
next >
Wrap
C/C++ Source or Header
|
1997-02-28
|
1KB
|
35 lines
//----------------------------------------------------------------------------
//Borland C++Builder
//Copyright (c) 1987, 1997 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