reset function error(100分)

  • 主题发起人 主题发起人 hdlhuixx
  • 开始时间 开始时间
H

hdlhuixx

Unregistered / Unconfirmed
GUEST, unregistred user!
when i call reset function occur invalid typecast error in the delphi.
 
Reset函数中的参数应该是文件类型,看看你的参数是不是文件类型,或者转换是否合法
 
传入参数,和函数的参数类型不匹配?
 
no,all is right,because the programm is right in other program.look like project option have some problem.
 
Function readtextfil(filename:string):Boolean;
Var
s,s1:string;
F:textfile;
begin
if filename = '' then
begin
result:=false;
exit;
end;
AssignFile(F,filename);
Reset(F);//here occur error
while not eof(F) do
begin
readLn(F,s);
....
end;
end;
CloseFile(F);
end;
 
no code, no answer
 
Function readtextfil(filename:string):Boolean;
Var
s:string;
F:textfile;
begin
if filename = '' then
begin
result:=false;
exit;
end;
AssignFile(F,filename);
Reset(F);//here occur error
while not eof(F) do
begin
readLn(F,s);
....
end;
CloseFile(F);
end;
 
看来是你的编译器或者操作系统有问题...
你的代码在我这边很好!
 
i think that it is project option cause,,because if i copy this source code in new project to use same dehphi version,no problem.
 
那你就新建一个工程,然后把所有的单元再重新加入新的单元应该就解决问题了...
 
多人接受答案了。
 

Similar threads

A
回复
0
查看
981
Andreas Hausladen
A
A
回复
0
查看
932
Andreas Hausladen
A
A
回复
0
查看
806
Andreas Hausladen
A
A
回复
0
查看
964
Andreas Hausladen
A
后退
顶部