J jbas Unregistered / Unconfirmed GUEST, unregistred user! 2001-11-13 #3 调用api函数,不就象调用delphi自己的函数一样.在默认的新项目文件中就已经包含了windows 单元了.所以可以任意了..
D dasa Unregistered / Unconfirmed GUEST, unregistred user! 2001-11-13 #4 您必须这样:在unit单元中的uses中加入shellapi,然后再在程序中具体调用api函数。 当然,您必须记得api函数才能调用哦!
D D.Q.C Unregistered / Unconfirmed GUEST, unregistred user! 2001-11-13 #5 在单元的units下加入ShellApi单元 或者在实现部分用uses ShellApi, 然后,就使用的你要调用函数
C clyin Unregistered / Unconfirmed GUEST, unregistred user! 2001-11-13 #6 use什么单元要看具体调用的是什么函数 大部分函数的声明在windows.pas shellapi函数的声明在shellapi.pas 另外要注意的是并不是所有api函数的声明都封装了的, 如果没有,要自己搞定[]
use什么单元要看具体调用的是什么函数 大部分函数的声明在windows.pas shellapi函数的声明在shellapi.pas 另外要注意的是并不是所有api函数的声明都封装了的, 如果没有,要自己搞定[]
E eastweast Unregistered / Unconfirmed GUEST, unregistred user! 2001-11-13 #7 各位说的都没错了。 记得要uses ..... api函数的用法可以查书或M$的MSDN说明。