Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"Error in loading DLL" when compiling DLL in VB6

Tags:

vb6

I have a visual basic 6 ".dll project" that uses references and when "File->Make dll" option is clicked, it should generate a dll file. Well, when clicked "File->Make dll", I get error "Error in loading DLL".

How can I see which references are missing?

like image 841
Ivan Avatar asked Dec 20 '11 13:12

Ivan


People also ask

Why would a dll fail to load?

If a DLL fails to load, there can be numerous reasons for the error, listed below are the most common. The DLL or referenced DLL is not in a directory specified in the path. The DLL references another DLL that is not present. Hard disk error has corrupted or damaged a DLL file.

What is dll in vb6?

In VB, you create a Dynamic Link Library (DDL) by selecting ActiveX DLL from the New Project dialog box. This tip highlights the various uses and benefits of using DLLs. A Dynamic Link Library (DDL) is a file that. contains compiled code.


1 Answers

Under Project -> References.

Look for the word MISSING: in front of the dll's that aren't there.

like image 70
Lynn Crumbling Avatar answered Oct 05 '22 13:10

Lynn Crumbling