Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Ordinal 5076

Status
Not open for further replies.

digdig

Technical User
Joined
Apr 3, 2004
Messages
1
Location
SE
I am new to visual c++ and tried to run a simple program but I keep getting an error message tat says:

"The ordinal 5076 could not be located in the dynamic link library MFC42D.DLL"

What is this ordinal 5076? Is there a simple way to fix this problem?
Can anyone help me please?
 
Use dumpbin.exe /EXPORTS mfc42d.dll to get a list of all ordinals exported by this dll that is on your machine.
The 5076 ordinal is not present in the list and that means a call is forwarded to the mfc42d.dll to call a function with the 5076 ordinal and that function is not located in the dll.
Seems to use an old mfc42d.dll.
To solve the problem , find out which compiler was used to build the .exe that you are running.
You should to rebuild it or to suplly the mfc*.dll compatible with ones when it was built.
-obislavu-
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top