Y
yyanghhong
Unregistered / Unconfirmed
GUEST, unregistred user!
我在作一个通用日志程序,我想实现的功能是<br>this is a procedure<br>procedure loaddb;<br>begin<br>write_log('process is started');<br>end;<br><br>在write_log中, 我想得到这个过程所在的程序名,单元名,过程名。<br>我知道, 如果用Raise Exception, 我可通过ExceptionAddr得到过程的地址,然后查程序的map文件,<br>可得到这个过程所在的程序名,单元名,过程名.<br>但我直接得到这个过程的地址。不用Raise Exception。<br>详见http://delphi.mychangshu.com/dispdoc.asp?id=238<br>