09-01-2005 02:23 PM
mbSession =
CType(ResourceManager.GetLocalManager().Open(sr.ResourceName), MessageBasedSession)mbSession.Dispose()
rmSession->GetLocalManager();
(MessageBasedSession *) rmSession->Open("ASRL1::INSTR");
I don't have the closing session yet. mbSession->Dispose() does not exist on the MessageBasedSession or I maybe not routing my pointer
properly...
Need help...
09-02-2005 10:22 AM
Hi spl,
National Instruments doesn't support managed C++ in .NET, only unmanaged C++. You can use the Measurement Studio C# or VB.NET support to generate class libraries that are callable from managed C++ code.
09-02-2005 11:12 AM
09-02-2005 11:27 AM
09-02-2005 03:57 PM
09-02-2005 04:29 PM
Hi Bilal,
Thanks for the reply. I am actually working on still using my drivers to incorporate it in
vc.net framework.
I guess I just need to learn more about how to go about initializing my classes and
converting my variables to vc.net.
Thanks again...
spl