Which of the following code is the most efficient/fastest to execute?
 
Label1.Enabled := Option.ItemIndex = 1;
Label2.Enabled := Option.ItemIndex = 1;
 
or

Label1.Enabled := Option.ItemIndex = 1;
Label2.Enabled := Label1.Enabled;
 
Thanks,
Ross Levis.

Reply via email to