EDN Admin
Well-known member
I have separated huge VB6 code(Main Code) into many VB6 DLLs. Main code contains UI and dll have business logic. One of the DLL is a UDT DLL which defines user types only. And it is referenced in the main code
as well as in the other VB6 DLLs containing business logic. I want to convert all code(main code and dlls) into vb.NET framework 3.5 STEP BY STEP.
If I convert the UDT DLL to vb.NET first(change it to structures), and declare array ABC() as structure XYZ(from .NET dll), it throws an runtime error. If I keep the UDT DLL in VB6, convert a business logic DLL to vb.NET which
uses UDT dll, then also it throws a runtime error if array ABC() is passed from main program to business logic dll(.net dll) as byref/byval parameter. I would like guidance as to how to convert the program one DLL at a time. 8:31
PM
View the full article
as well as in the other VB6 DLLs containing business logic. I want to convert all code(main code and dlls) into vb.NET framework 3.5 STEP BY STEP.
If I convert the UDT DLL to vb.NET first(change it to structures), and declare array ABC() as structure XYZ(from .NET dll), it throws an runtime error. If I keep the UDT DLL in VB6, convert a business logic DLL to vb.NET which
uses UDT dll, then also it throws a runtime error if array ABC() is passed from main program to business logic dll(.net dll) as byref/byval parameter. I would like guidance as to how to convert the program one DLL at a time. 8:31
PM
View the full article