How to use our Dll as like API Library - TechRepublic
General discussion
February 22, 2001 at 07:51 PM
murthyteam

How to use our Dll as like API Library

by murthyteam . Updated 25 years, 1 month ago

In Visual Basic,

We can use API function
by following manner.

Private declare GetCursorPps Lib “User32.dll”(…)

Similarly , I have Created A.dll

How to call a method of A.dll with out
giving the reference in “project References”
like API.

I have tried this by following manner.

Private declare method Lib “A.dll” (…)

But it raises the following error.

‘Entry Point not found ‘ when i am trying to
call the method of A.dll

Is it possible to do like this ? ifyes how ?

This discussion is locked

All Comments