这是什么错误阿? [Error] Unit1.pas(481): Illegal character in input file: ' ' ($A1A1)(10

  • 主题发起人 主题发起人 dreameast-1
  • 开始时间 开始时间
D

dreameast-1

Unregistered / Unconfirmed
GUEST, unregistred user!
这是什么错误阿? [Error] Unit1.pas(481): Illegal character in input file: ' ' ($A1A1)(10分)<br />481行以后的代码是: while table_car2.Locate('职工号',str,[locaseinsensitive]) do
 begin
pos:=table_car2.fieldbyname('序号').AsInteger;
count:=table_car2.RecordCount -1;
table_car2.Delete;

for i:=pos to count do
begin
table_car2.Edit;
table_car2.FieldByName('序号').asstring:=inttostr(i);
table_car2.Next;
end;
table_car2.refresh;
table_car.Refresh;
end;
// 下面删除社会关系表
while table_relation2.Locate ('职工号',str,[locaseinsensitive]) do
begin
pos:=table_relation2.fieldbyname('序号').AsInteger ;
count:=table_relation2.RecordCount -1;
table_relation2.Delete;
for i:=pos to count do
begin
table_relation2.Edit;
table_relation2.FieldByName('序号').asstring:=inttostr(i);
table_relation2.Next;
end;
table_relation2.refresh;
table_relation.Refresh;
end;
end;
 
你的里面有中文的字符,双击那个错误,然后找到出错行,找一下,没有的话,重新写那一行就OK了。
 
A1A1就是一个不可见字符。
 
谢谢你了,可是又出现了问题是'index is out of date'请问是怎么回事阿?
 
那行出的错误?这是运行时的错误吧。调试一下,一般是索引超界。
 
后退
顶部