I am using D2007. Let's say i have a combobox called combobox. If i add an onlick event, it will have the name of combobox inside the procedure name. Now if i rename it combobox2, the onclick name does not change. Anyway i can have the procedure name reflect the new component property?
I hope i am making sense.
procedure TFrm_Main.ComboboxClick(Sender: TObject);
should become
procedure TFrm_Main.Combobox2Click(Sender: TObject);
Thanks
P
I hope i am making sense.
procedure TFrm_Main.ComboboxClick(Sender: TObject);
should become
procedure TFrm_Main.Combobox2Click(Sender: TObject);
Thanks
P