1
I have developed a library that uses dll
itextsharp, however this library I wrote in VB.Net will be used in a VB6 program and therefore it is necessary to generate a tlb
of the same.
The doubt remains, because despite generating a tlb
of my lib
, I don’t know what you provide regarding addiction.
See help: http://answall.com/questions/47254/com-interop-com-client-e-server/47328#47328 @Cleiton-ribeiro
– rubStackOverflow
All this process I already know... I already have a . tlb of my class, however it has a dependency . DLL in c# and do not know what to do with this dependency.
– Cleiton Ribeiro
@Cleitonribeiro Have you tried to put this DLL in directories visible by the environment variable
PATH
?– Leonel Sanches da Silva
Will be if not missing register?
regasm.exe SuaDLL.dll /register /codebase /tlb
– rubStackOverflow
The tlb was already registered... I actually realized that the problem was the parameters of the class accessed. Because the Vb.net string array is different from the VB6 string array, but I know there is a way to use VB.net types in vb6. You know how to do it?
– Cleiton Ribeiro
Then already changes the focus of the question, would have to edit and put the code in both VB and C# to facilitate understanding. @Cleitonribeiro
– rubStackOverflow