OnChange event probs
Brought to you by:
tpsfadmin
Exported from Bugzilla, issue 4183.
--- Comment added on 12/13/02 10:07:48 AM ---
I don't know if you have fixed this one yet, but there is a bug in the way
you handle the onChange event of the resource combo box. In the constructor
of the resource combo box you set the onChange event equal to the
resourcechange procedure, but you also publish onChange. If I use the
onChange event the ResourceChange procedure does not execute.
I fixed this by overriding the change procedure, commenting out the
onChange line in the constructor and then doing the following:
procedure TVpResourceCombo.change;
begin
ResourceChanged(nil);
inherited change;
end;
Let me know if there is a better way.