
Data1 object conversion on .NET upgrade
It's probably easier to rewrite the application using the new .Net data
access method, but to fix your problem you probably just need to add a
reference to the old ActiveX data Objects ADODB.dll that you use in your vb6
applicaiton. You can do this through the reference folder in your project
file.
I used the converter and then found out that it would have been
better/faster to use the data access built into the framework.
(System.Data)...I have a huge applicaiton and it was a pain to convert the
old code to the new framework but it will run cleaner and you don't have to
carry around the abodb.dll file when you deploy your app later.
-J