procedure TForm1.Edit1KeyPress(Sender: TObject; var Key: Char);
begin
     if key=#13 then
     begin
          sendMESSAGE(COMBOBOX1.Handle,WM_KEYDOWN,VK_TAB,0);
     end;
end;
这样为什么不能把EDIT的焦点移到COMBOBOX1上呢?