C++ parameter help

houssam_ballout

New Member
hello all

void __fastcall TadminForm::StudentInfoButtonClick(TObject *Sender)

well, can some body explains to me more about the parameter *Sender, and how could I use it?

Thanks
 
TObject could be anything, you'll have to check the code but *Sender means the parameter is a pointer to a an object of type TObject
 
Back
Top