home *** CD-ROM | disk | FTP | other *** search
/ Freelog 19 / Freelog019.iso / Prog / Pratique / FichPrin.~h < prev    next >
Text File  |  2001-01-29  |  962b  |  27 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef FichPrinH
  3. #define FichPrinH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. //---------------------------------------------------------------------------
  10. class TForm1 : public TForm
  11. {
  12. __published:    // Composants gΘrΘs par l'EDI
  13.     TEdit *Edit1;
  14.     TEdit *Edit2;
  15.     TButton *Button1;
  16.     TLabel *Label1;
  17.     void __fastcall Edit1Change(TObject *Sender);
  18.     void __fastcall Button1Click(TObject *Sender);
  19. private:    // DΘclarations de l'utilisateur
  20. public:        // DΘclarations de l'utilisateur
  21.     __fastcall TForm1(TComponent* Owner);
  22. };
  23. //---------------------------------------------------------------------------
  24. extern PACKAGE TForm1 *Form1;
  25. //---------------------------------------------------------------------------
  26. #endif
  27.