//--------------------------------------------------------------------------- #include #pragma hdrstop #include "repartidores.h" //--------------------------------------------------------------------------- #pragma resource "*.dfm" TForm5 *Form5; //--------------------------------------------------------------------------- __fastcall TForm5::TForm5(TComponent* Owner) : TForm(Owner) { } //--------------------------------------------------------------------------- void __fastcall TForm5::Button1Click(TObject *Sender) { Table1->Edit(); Table1->Insert(); DBEdit1->SetFocus(); } //--------------------------------------------------------------------------- void __fastcall TForm5::Button2Click(TObject *Sender) { Table1->Edit(); Table1->Delete(); } //--------------------------------------------------------------------------- void __fastcall TForm5::Button3Click(TObject *Sender) { Table1->Edit(); Table1->Post(); } //---------------------------------------------------------------------------