I currently am converting a project of mine to VB .Net 2008, from VB6. Its a challenge but the rewards out way the cons heavily. Well in my VB6 project I had added support for user created Plugins, a simple ActiveX DLL that would be loaded up via the LoadLibary, registered, set into an object, and finally started with PlgObj.InitAddin (which is the start function in the ActiveX DLL)... I've got my project converted to .Net and fixxed all the bugs. But now I can't get the ActiveX DLL run. I've narrowed it down to LoadLibary(strPathtoDLL) which returns 0. Meaning for some reason it can't load or something..... Besides that I would like for my program to be able to loadup plugins complied with different lanagues/compilers.. As always any suggestions are welcomed and you guys have helped me out alot in the past.. :) Heres the API code that I'm using...
-dustinCode:Private Declare Function LoadLibrary Lib "kernel32" (ByVal LibFilePath As String) As Integer
