这是DELPHI的一个小BUG.在delphi的DBGRIDS里.
///////////////////////////////////////////就是下面的
procedure TCustomDBGrid.WMKillFocus(var Message: TMessage);
begin
// if not SysLocale.FarEast then inherited //原先错误的.
if SysLocale.FarEast then inherited //改正后的
else
begin
ImeName := Screen.DefaultIme;
ImeMode := imDontCare;
inherited;
if not ((InplaceEditor <> nil) and
(HWND(Message.WParam) = InplaceEditor.Handle)) then
ActivateKeyboardLayout(Screen.DefaultKbLayout, KLF_ACTIVATE);
end;
end;