runerror(102) 文件未分配?
begin
reset(f);
assignfile(f, 'data.txt');
Reset(f);
found:= false;
search := edit1.text ;
repeat
read(f, phone) ;
read(f, cusfname);
read(f, adress);
found:= search = phone
until eof(f) or found;
if found then
memo1.append(phone);
memo1.append(cusfname);
memo1.append(adress);
closefile(f) ;
if not found then showmessage('member not found');
当我运行这个时,我得到 runerror(102) 文件未分配?????? ps 我已公开分配过程中的变量。
begin
reset(f);
assignfile(f, 'data.txt');
Reset(f);
found:= false;
search := edit1.text ;
repeat
read(f, phone) ;
read(f, cusfname);
read(f, adress);
found:= search = phone
until eof(f) or found;
if found then
memo1.append(phone);
memo1.append(cusfname);
memo1.append(adress);
closefile(f) ;
if not found then showmessage('member not found');
When I run this I get runerror(102) file not assigned??????? p.s I have assigned the variables in the procedure publically.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
首先
reset(f)
是错误的,你在下一行中分配给f
,所以它之前没有分配。First
reset(f)
is wrong, you assign tof
in next line, so it is not assigned before.正在分配(文件,地址);
不是 AssingFile(FILE, ADDRESS);
Is Assing(FILE, ADDRESS);
Is'nt AssingFile(FILE, ADDRESS);