我有一个Delphi7。
我使用这篇文章:http ://www.delphidabbler.com/articles?article=22&part= 2 / 第 2 步
现在,我用 LoadTypeLib(未定义)创建了一个问题:
type
TMyClass = class(TAutoIntfObject, IMyIntf, IDispatch)
constructor Create();
protected
procedure helloWorld(); safecall;
end;
implementation
constructor TMyClass.Create();
var
TypeLib: ITypeLib;
s: WideString;
begin
s := ParamStr(0);
OleCheck(LoadTypeLib(PWideChar(s), TypeLib)); // ERR:LoadTypeLib is undefined.
inherited Create(TypeLib, IMyCallback);
end;
有什么建议么?