先在系统中定义
VAR AROW,ACOL:INTEGER;
在鼠标事件中写入
procedure TMainForm.JiBenGridMouseDown(Sender: TObject;
Button: TMouseButton; Shift: TShiftState; X, Y: Integer);
begin
if (ARow <> -1) or (ACol=-1) then exit;
Grid1.MouseToCell(x, y, ACol, ARow);
//若你的CELL[2,2]要使用时,
if (acol=2)and(arow=2)then
combobox1.visible:=true
else
combobox1.visible:=False;
END;