1 |
//---------------------------------------------------------------------------
|
2 |
#ifndef s_valeurH
|
3 |
#define s_valeurH
|
4 |
//---------------------------------------------------------------------------
|
5 |
#include <vcl\Classes.hpp>
|
6 |
#include <vcl\Controls.hpp>
|
7 |
#include <vcl\StdCtrls.hpp>
|
8 |
#include <vcl\Forms.hpp>
|
9 |
//---------------------------------------------------------------------------
|
10 |
class TValeur : public TForm
|
11 |
{
|
12 |
__published: // IDE-managed Components
|
13 |
TEdit *Edit1;
|
14 |
TLabel *Label1;
|
15 |
TButton *Button1;
|
16 |
void __fastcall Button1Click(TObject *Sender);
|
17 |
void __fastcall FormShow(TObject *Sender);
|
18 |
private: // User declarations
|
19 |
public: // User declarations
|
20 |
__fastcall TValeur(TComponent* Owner);
|
21 |
};
|
22 |
//---------------------------------------------------------------------------
|
23 |
extern TValeur *Valeur;
|
24 |
//---------------------------------------------------------------------------
|
25 |
#endif
|