I have a solution with several vb projects and one console application in .net
In console application y have references as projects the vb projects.
When i run the console application and I execute :
I get an error that console application is not able to create the object. The dll that manage
this object in in a the vb projects referenced.
I checked if the dll is loaded when i run console application and is not loaded.
I loaded manyally the dell with code in init of console application and it doesn´t work also.
I tried to add dlls directrly as referenced and it doesn´t work also.
Any idea or solution?
In console application y have references as projects the vb projects.
When i run the console application and I execute :
C#:
aAccion = Activator.CreateInstance(Type.GetType("BP.CN.MPIion" + sTokens(0)), oParameters)
I get an error that console application is not able to create the object. The dll that manage
this object in in a the vb projects referenced.
I checked if the dll is loaded when i run console application and is not loaded.
I loaded manyally the dell with code in init of console application and it doesn´t work also.
I tried to add dlls directrly as referenced and it doesn´t work also.
Any idea or solution?
Last edited by a moderator: