home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1997 May
/
Pcwk0597.iso
/
borland
/
cb
/
setup
/
cbuilder
/
data.z
/
BRPARTS.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 brpartsH
#define brpartsH
//---------------------------------------------------------------------------
#include <vcl\Classes.hpp>
#include <vcl\Controls.hpp>
#include <vcl\StdCtrls.hpp>
#include <vcl\Forms.hpp>
#include <vcl\ExtCtrls.hpp>
#include <vcl\DBCtrls.hpp>
#include <vcl\Buttons.hpp>
#include <vcl\DBGrids.hpp>
#include <vcl\Grids.hpp>
//---------------------------------------------------------------------------
class TBrPartsForm : public TForm
{
__published: // IDE-managed Components
TPanel *Panel1;
TDBNavigator *DBNavigator1;
TButton *EditBtn;
TSpeedButton *ActivateBtn;
TPanel *Panel2;
TButton *CloseBtn;
TDBGrid *PartsGrid;
TBevel *Bevel1;
void __fastcall EditBtnClick(TObject *Sender);
void __fastcall CloseBtnClick(TObject *Sender);
void __fastcall ActivateQuery(TObject *Sender);
void __fastcall FormShow(TObject *Sender);
private: // User declarations
double FPartNo;
double GetPartNo();
void SetPartNo(double);
public: // User declarations
__property Double PartNo={read=GetPartNo,write=SetPartNo};
virtual __fastcall TBrPartsForm(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern TBrPartsForm *BrPartsForm;
//---------------------------------------------------------------------------
#endif