Topic: How can I do a search and automatically shows the result without press

I have two Forms
in the Two forms there is a Combo Box   which is the same record.


FormA  -  ComboBoxA 

FormB  -  ComboBox B  -- TableGrid

So When I choose From the FormA the ComboBox it Should Give the same value in the ComboBox  of the FormB and automatically without pressing the search button it  should show the result f the searching.

Re: How can I do a search and automatically shows the result without press

procedure FormA_ComboBoxA_OnChange (Sender: string);
begin
    FormB.ComboBoxB.dbItemID := FormA.ComboBoxA.dbItemID;
    FormB.ButtonSearch.Click;
end;
Dmitry.