Salut à tous,
J'ai besoin de définir des fonctions pour les utiliser dans mon programme mais le problème je ne sais pas comment m'y prendre.
Voici un exemple :
int plus (TStringGrid);
void main ()
{
int x;
x=0;
for(int i=0; i<=1; i++)
for(int j=0; j<=1; j++)
x=x+StrToInt(Form1->StringGrid1->Cells[i][j]);
}
void __fastcall TForm1::Button1Click(TObject *Sender)
{
int y;
y=plus(Form1->StringGrid1);
Edit1->Text=IntToStr(y);
}
J'ai le message d'erreur suivant :
"E2459VCL styles classes must be constructed using operator new"
Si quelqu'un a une idée j'aimerais bien la connaitre.
A bientôt
-----