Reputation: 93
I'm trying to execute a program, which i have just downloaded from Subversion, and it is working fine on another computer, but on my computer, it just doesn't run. It doesn't shows any error, and it is only a warning.
Cannot find wrapper assembly for type library "VBIDE". Verify that (1) the COM component is registered correctly and (2) your target platform is the same as the bitness of the COM component. For example, if the COM component is 32-bit, your target platform must not be 64-bit.
So my questions are: How can i know if the COM component is registered correctly? How can i know the bitness of the COM component?
Upvotes: 2
Views: 5073
Reputation: 937
Just follow the below steps:
View => Solution Explorer => Expand References Tab => Delete VBIDE reference by Right Click => Rebuild or Debug your Solution
You must be ready to go!!!
Upvotes: 2
Reputation: 76
Follow the following link. Hope this might help.
https://msdn.microsoft.com/en-us/library/ms809975.aspx
http://devblog.com.au/cannot-find-wrapper-assembly-for-type-library-vbide
Upvotes: 0