CXgrid incsearch中无法查找中文的办法

//修改的代码单无 cxcustomdata
function TcxDataControllerSearch.Locate(AItemIndex: Integer; const ASubText: string): Boolean;
begin//.........//增加以下代码 
    if (ByteType(ASubText,1)<>mbSingleByte) and not Result then  //shj add输入的半个中文时     
       DataController.FIncrementalSearchText := ASubText;
end;

你可能感兴趣的:(String,Integer)