VC++ .NET Question

  • Thread starter Thread starter OneSolution
  • Start date Start date
O

OneSolution

Hi all,

Where do I go for questions and info on Visual C++ .NET?

Specifically, I'm trying to figure out how to use a DLL that's been made in
VB .NET. I want to import it into my C++ application and can't find
definitive documentation.

Thanks,
Santosh
 
OneSolution said:
Specifically, I'm trying to figure out how to use a DLL that's been made
in VB .NET. I want to import it into my C++ application and can't find
definitive documentation.

Hi Santosh,
Look for information on #using in the documentation. If you generate
vb.dll from the Visual Basic compiler, just do #using "vb.dll" in the C++
program.

Cheerio!
 
Thanks!

Brandon Bray said:
Hi Santosh,
Look for information on #using in the documentation. If you generate
vb.dll from the Visual Basic compiler, just do #using "vb.dll" in the C++
program.

Cheerio!
 
Back
Top