黑
黑衣人
Unregistered / Unconfirmed
GUEST, unregistred user!
想做一个DLL,动态调用窗口,模仿书上的例子做了,但是报错,没有做过类似的东西,<br>不知道怎么解决。书上说将application的resource代码的program改成library……<br>resource的内容如下,不过不正确:<br>-----------代码开始----------<br>library myPwd;<br>uses<br> uGetPwd in 'uGetPwd.pas' {formGetPwd},<br> uVerifyPwd in 'uVerifyPwd.pas' {formVerifyPwd};<br>{$R *.res}<br>exports<br> uGetPwd, //这里报错,内容见下<br> uVerifyPwd;<br><br>begin<br>end.<br>-----------代码结束----------<br>错误内容:[Error] myPwd.dpr(10): '.' expected but ',' found<br>不知道怎么解决