G
gigglegile
Unregistered / Unconfirmed
GUEST, unregistred user!
下面是我写的一个异常处理语句:
try
Retcode := ReadAccredit(Sysinfo.CardOptionComm);
except
on E:EOleException do showmessage('please refill the COMM');
end;
编译时提示:
[Error] untFrmLogin.pas(86): Undeclared identifier: 'EOleException'
怎么是没有定义呢,是不是没有引用哪个单元
try
Retcode := ReadAccredit(Sysinfo.CardOptionComm);
except
on E:EOleException do showmessage('please refill the COMM');
end;
编译时提示:
[Error] untFrmLogin.pas(86): Undeclared identifier: 'EOleException'
怎么是没有定义呢,是不是没有引用哪个单元