我有一个控件的问题要请教大家一下。(20分)

  • 主题发起人 主题发起人 Tell_me
  • 开始时间 开始时间
T

Tell_me

Unregistered / Unconfirmed
GUEST, unregistred user!
procedure TForm1.Button1Click(Sender: TObject);
begin
Table1.Edit;
Table1.AppendRecord([CustoNoEdit.Text,CoNameEdit.Text,AddrEdit.Text,Null,Null,Null,Null,Null,Null,Null]);
Try
Table1.Post; // 运行到这句就出错了。
Except
Application.MessageBox('Error!','please restart!',Mb_Ok);
end;
Application.MessageBox('Welcome!','Welcome user',Mb_Ok);
end;

可以添加了,可是就是会报错呀?这是为什么呢?
而且怎么可能会执行Except后的语句呢?
 
appendrecord以后不需要post
所以会有错误提示
 
后退
顶部