VB.net questions
j
Sterling Heights, MI Icrontian
Does anybody know how to use 3rd party DLL's in VB.net. For example. I have a piece of harware that has a GUI. I want to use the DLL's of that vender to create my own GUI. I have already talked to the vender and they say I can do so. How do I referance the variables and functions with in DLL from VB? A simple code snipit would be great.
0
Comments
To use non vb.net dll's, you can use PInvoke.
http://www.codeproject.com/dotnet/PInvoke.asp
Create DECLARE functions and give it the types & values for the api
If it's .net native, you can just add a reference to it in visual studio