1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
| //---------------------------------------------------------------------------
#ifndef popupH
#define popupH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ExtCtrls.hpp>
#include "top.h"
#include "fonctions.h"
//---------------------------------------------------------------------------
class TForm3 : public TForm
{
__published: // Composants gérés par l'EDI
TLabel *Label1;
TBevel *Bevel1;
TEdit *Edit1;
TEdit *Edit2;
TEdit *Edit3;
TEdit *Edit4;
TEdit *Edit5;
TLabel *Label2;
TLabel *Label3;
TLabel *Label4;
TLabel *Label5;
TButton *Gsuivant;
TButton *ok;
TButton *GCancel;
TLabel *Label6;
void __fastcall GsuivantClick(TObject *Sender);
void __fastcall okClick(TObject *Sender);
void __fastcall GCancelClick(TObject *Sender);
private: // Déclarations de l'utilisateur
public: // Déclarations de l'utilisateur
__fastcall TForm3(TComponent* AOwner);
void __fastcall init(liste_generics *debut);
};
//---------------------------------------------------------------------------
extern PACKAGE TForm3 *Form3;
//---------------------------------------------------------------------------
#endif |
Partager