Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Create an event during Runtime?

Status
Not open for further replies.

colosoderada

Programmer
Sep 14, 2000
26
ES
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.


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top