colosoderada
Programmer
I have created a Table during Runtime.
TTable *Q = new TTable(Application);
Now I want create an event during runtime, but I don´t know how I can do it. I want to use the event BeforeDelete of table. How can I do it ???
For instance I know that in Delphi you can do this.
memo.onchange:=memo1Change;
procedure TForm1.Memo1Change(Sender: TObject);
begin
panel1.caption:='Content has been changed';
end;
But I don´t know how I can do in C++ Builder.
Thank you for read this question.
Sorry for my terrible english.
TTable *Q = new TTable(Application);
Now I want create an event during runtime, but I don´t know how I can do it. I want to use the event BeforeDelete of table. How can I do it ???
For instance I know that in Delphi you can do this.
memo.onchange:=memo1Change;
procedure TForm1.Memo1Change(Sender: TObject);
begin
panel1.caption:='Content has been changed';
end;
But I don´t know how I can do in C++ Builder.
Thank you for read this question.
Sorry for my terrible english.