补充函数如下:
function TForm1.CheckData(row,col:integer):boolean;
begin
result:=true;
if StringGrid1.Cells[col,row]='' then exit;
if 0&ltStringGrid1.Cells[col,row] and StringGrid1.Cells[col,row]&lt9 then
begin
ShowMessage('cell('+inttostr(row)+','+inttostr(col)+')'+
'不是数字');
result:=false;
end;
end;
在OnSelectCell和OnExit事件中调用函数进行校验。