home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1998 March
/
Chip_1998-03_cd.bin
/
zkuste
/
matemat
/
Vyssi
/
MATH2.ZIP
/
exmpl-1
/
cpp
/
frmcent.h
< prev
Wrap
C/C++ Source or Header
|
1997-05-22
|
1KB
|
35 lines
//---------------------------------------------------------------------------
#ifndef frmcentH
#define frmcentH
//---------------------------------------------------------------------------
#include <vcl\Classes.hpp>
#include <vcl\Controls.hpp>
#include <vcl\StdCtrls.hpp>
#include <vcl\Forms.hpp>
#include <vcl\ExtCtrls.hpp>
#include "NumLab.hpp"
#include <vcl\Buttons.hpp>
#include "RChart.hpp"
//---------------------------------------------------------------------------
class TForm1 : public TForm
{
__published: // IDE-managed Components
TPanel *Panel1;
TNumLab *NLabProcCnt;
TBitBtn *BButExit;
TBitBtn *BButCreateD;
TBitBtn *BButCalcCent;
TRChart *RChart1;
void __fastcall BButExitClick(TObject *Sender);
void __fastcall BButCreateDClick(TObject *Sender);
void __fastcall FormCreate(TObject *Sender);
void __fastcall BButCalcCentClick(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TForm1(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern TForm1 *Form1;
//---------------------------------------------------------------------------
#endif