hi,
For this question I've made a dll in c++ and was wondering how to use it in vb.net. The name of the dll file is test.dll and here is its implementation.
#include<iostream>
using namespace std;
void print()
{
cout<<"hello world!";
}
could someone show me how to set this up in vb.net?
And perhaps get vb to execute the print function and have it display,"hello world," on a textbox.Thankx in advance!
For this question I've made a dll in c++ and was wondering how to use it in vb.net. The name of the dll file is test.dll and here is its implementation.
#include<iostream>
using namespace std;
void print()
{
cout<<"hello world!";
}
could someone show me how to set this up in vb.net?
And perhaps get vb to execute the print function and have it display,"hello world," on a textbox.Thankx in advance!