39 lines
1.1 KiB
C++
39 lines
1.1 KiB
C++
//---------------------------------------------------------------------------
|
|
#ifndef bdiarioH
|
|
#define bdiarioH
|
|
//---------------------------------------------------------------------------
|
|
#include <vcl\Classes.hpp>
|
|
#include <vcl\Controls.hpp>
|
|
#include <vcl\StdCtrls.hpp>
|
|
#include <vcl\Forms.hpp>
|
|
#include <vcl\ExtCtrls.hpp>
|
|
#include <vcl\DBCtrls.hpp>
|
|
#include <vcl\DB.hpp>
|
|
#include <vcl\DBTables.hpp>
|
|
#include <vcl\Mask.hpp>
|
|
//---------------------------------------------------------------------------
|
|
class TForm7 : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TPanel *Panel1;
|
|
TLabel *Label1;
|
|
TDBMemo *DBMemo1;
|
|
TDBEdit *DBEdit1;
|
|
TDataSource *DataSource1;
|
|
TTable *Table1;
|
|
TEdit *Edit1;
|
|
void __fastcall FormKeyPress(TObject *Sender, char &Key);
|
|
void __fastcall FormActivate(TObject *Sender);
|
|
|
|
|
|
void __fastcall Edit1KeyPress(TObject *Sender, char &Key);
|
|
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TForm7(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern TForm7 *Form7;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|