Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

VB 6: The project not be built because it references a project which does not have a binary compatibility file set

Tags:

I haven't done VB 6 development for nearly a decade. Any advice on how to deal with this error?

The project 'ProjectB' can not be built because it 
references project 'C:\VSS\Foo\ProjectA\ProjectA.vbp'
which does not have a binary compatibility file set.
like image 964
Jonathan Allen Avatar asked Feb 25 '10 23:02

Jonathan Allen


1 Answers

http://support.microsoft.com/kb/161137

If you can open project A, you want to change the Component tab of the Project Properties dialog box to Binary Compatible and then recompile.

Then in project B, reestablish the reference to the dll/ocx file produced in the compiling of project A.

At least that is what I remember from 10 years ago and a quick google search.

like image 123
JDMX Avatar answered Sep 28 '22 19:09

JDMX