1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| void __fastcall TForm1::EnregistrerClick(TObject *Sender)
{
FILE *f;
bool res = SaveDialog1->Execute();
if(res==true)
{
f = fopen((SaveDialog1->FileName).c_str(), "wb");
fwrite(tab,4,3,f); fclose(f) ;
}
}
//---------------------------------------------------------------------------
void __fastcall TForm1::Edit1KeyDown(TObject *Sender)
{FILE *f;
bool res = OpenDialog1->Execute();
if(res==true)
{
f = fopen((OpenDialog1->FileName).c_str(), "wb");
fwrite(tab,4,3,f); fopen(f) ;
}
} |
Partager