我不知道是不是完全理解你说的。按照我的理解是不是可以使用这样两个事件组合实现?
1、判断进入你规定的字段是不是进入编辑状态。
2、再判断在你规定的字段是不是有回车。
var p_flag:boolean;
procedure TForm1.cxGrid1DBTableView1KeyPress(Sender:TObject;
var Key:Char);
begin
if p_flag then
begin
if Key=#13 then
ShowMessage('asdasd');
end;
end;
procedure TForm1.cxGrid1DBTableView1Editing(Sender: TcxCustomGridTableView;
AItem: TcxCustomGridTableItem; var AAllow: Boolean);
begin
if AItem.Caption='条码'then
p_flag:=true
else
p_flag:=false
end;