it's a .bas module to handle a .dll file..how can i convert it to use in vb2005??? i get a lot of errors when i just copy paste it in a module in vb2005
Printable View
it's a .bas module to handle a .dll file..how can i convert it to use in vb2005??? i get a lot of errors when i just copy paste it in a module in vb2005
They are two different languages so you cannot simply copy and paste. You could use the upgrade wizard but you're likely to have many errors to fix anyway. Most people would advise that you simply write fresh VB.NET code that best provides the functionality that you want.
ok successfully converted it
the problem is that i get the error message cannot find .dll when the .dll is in the project folder ....
Have you added this DLL on the References tab of the project properties?
there's an error when adding it in reference... it says "please make sure that the file is accessible, and that it is a valid assembly or COM component" :(
this is a .dll to read a game database and that was used for vb 6.0 .... how can i convert it so that it is compatible with vb 2005???
cool i solved it!!! i put the .dll in bin\Debug and it's working now!!!