delphi中StringGrid.Cells如果没有输入数字,怎么显示一个提醒的窗口???

unitUnit11;interfaceusesWindows,Messages,SysUtils,Variants,Classes,Graphics,Controls,... unit Unit11;

interface

uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, Grids, StdCtrls;

type
TForm1 = class(TForm)
StringGrid1: TStringGrid;
Button1: TButton;
procedure FormCreate(Sender: TObject);
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;

var
Form1: TForm1;

implementation

{$R *.dfm}

procedure TForm1.FormCreate(Sender: TObject);
begin
StringGrid1.Cells [0,1] := ' 小明';
StringGrid1.Cells [0,2] := ' 小红';
StringGrid1.Cells [1,0] := ' 语文';
StringGrid1.Cells [2,0] := ' 数学';
StringGrid1.Cells [3,0] := ' 英语';
StringGrid1.Cells [4,0] := ' 合计';

end;

procedure TForm1.Button1Click(Sender: TObject);
var
result1,result2 ,i : integer;

begin
result1 := 0;
for i:=1 to 3 do
begin
result1:= result1 + strtoint(stringgrid1.Cells [i,1]);
if ( stringgrid1.Cells [i,1] = '' ) then
begin
button1.Enabled := false;
messagebox ( handle,'没有数字!' , 'error',mb_ok );
break;
end
else
continue ;
end;
StringGrid1.Cells [4,1] := inttostr(result1) ;
result2 := 0;
for i:=1 to 3 do
begin
result2:= result2 + strtoint(stringgrid1.Cells [i,2]);
end;
StringGrid1.Cells [4,2] := inttostr(result2) ;

end;
end.
展开
 我来答
veket的小号
2013-08-20 · TA获得超过3371个赞
知道大有可为答主
回答量:3762
采纳率:0%
帮助的人:3936万
展开全部
楼上正解 , 简单方法 先判断 是否为空 不是空的再加,
procedure TForm1.Button1Click(Sender: TObject);

var

result1,result2 ,i : integer;

begin

 result1 := 0;

 for i:=1 to 3 do

 begin

  if ( stringgrid1.Cells [i,1]  = '' )  then

  begin

   button1.Enabled := false;

   messagebox (Form1.Handle,'没有数字!' , 'error',mb_ok );

   break;

  end

  else

   result1:= result1 + strtoint(stringgrid1.Cells [i,1]);

  end;

  if i=4 then StringGrid1.Cells [4,1] := inttostr(result1) ;

  result2 := 0;

  for i:=1 to 3 do

  begin

      if ( stringgrid1.Cells [i,2]  = '' )  then

    begin

        button1.Enabled := false;

     messagebox (Form1.Handle,'没有数字!' , 'error',mb_ok );

     break;

      end

      else

     result2:= result2 + strtoint(stringgrid1.Cells [i,2]);

  end;

    if i=4 then StringGrid1.Cells [4,2] := inttostr(result2) ;

end;
86172225
2013-08-20 · TA获得超过154个赞
知道小有建树答主
回答量:235
采纳率:0%
帮助的人:217万
展开全部
由于没有输入数字 strtoint(stringgrid1.Cells [i,1]) 会触发异常,可用 StrToIntDef(stringgrid1.Cells [i,1],0)替代
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式