What does (Sender:TObject) mean??
As in:
procedure TForm1.Button1Click(Sender:TObject);
var
s: Integer;
begin
.....
.....
end;
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Sender is a reference to the component that fired the event. In this case, Sender is going to be the button the user clicked which called your Button1Click event.
This is useful when you have several components that call the same event and you need to figure out which component caused the event to be fired.
For instance, you could do something like: