29 lines
959 B
C++
29 lines
959 B
C++
//---------------------------------------------------------------------------
|
|
#ifndef clavesH
|
|
#define clavesH
|
|
//---------------------------------------------------------------------------
|
|
#include <vcl\Classes.hpp>
|
|
#include <vcl\Controls.hpp>
|
|
#include <vcl\StdCtrls.hpp>
|
|
#include <vcl\Forms.hpp>
|
|
#include <vcl\ExtCtrls.hpp>
|
|
//---------------------------------------------------------------------------
|
|
class TForm4 : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TPanel *Panel1;
|
|
TLabel *Label1;
|
|
TEdit *Edit1;
|
|
TLabel *Label2;
|
|
TEdit *Edit2;
|
|
void __fastcall Edit1KeyPress(TObject *Sender, char &Key);
|
|
void __fastcall Edit2KeyPress(TObject *Sender, char &Key);
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TForm4(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern TForm4 *Form4;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|