hi there, lets say i have a checkbox and a boolean variable myvar, and i will that myvar=checkbox.checked
is there another way as to write
Delphi-Quellcode:
procedure TForm1.checkbox(Sender: TObject);
begin
myvar:=checkbox.checked;
end;
like to bind the variable with the component, so each time i change the value of the component the value of a given variable will also be changed automaticly without any unnnecessary procedures and events...?