c# dll entry point not found error

Thread Starter

Alex1700

Joined Jan 12, 2020
106
Hi guys I am facing this issue DLL file entry point not found in visual studio IDE may I know how to solve this problem
 
Last edited:

ApacheKid

Joined Jan 12, 2015
1,271
That's something environmental. It looks like you're calling into unmanaged code and it expects the native DLL to contain an function named els8003GetTmp. Can you show me the definition of `DLL` and the member `GetTmp` ?
 

Thread Starter

Alex1700

Joined Jan 12, 2020
106
That's something environmental. It looks like you're calling into unmanaged code and it expects the native DLL to contain an function named els8003GetTmp. Can you show me the definition of `DLL` and the member `GetTmp` ?
what definition you like to know?
 

Frank Bolleri

Joined Sep 23, 2023
70
Hi guys I am facing this issue DLL file entry point not found in visual studio IDE may I know how to solve this problem
Hi!
Some information is needed.

  • are you in a .NET project?
  • do you know if your DLL is a .NET assembly or a pure DLL "old style"?
  • can you post an image of the message?
  • the message is raised by Visual Studio when you link it in reference or is raised at runtime by your code?
    in second scenario, how you access the DLL?

Even if the problem is still open... the thread seems last updated a month ago.

Francesco
 
Top