03-02-2011 12:17 PM
Hi all,
In C, we can use "Get/Set/Reset Dev_ProductNum" to get the device product number.
int32 __CFUNC DAQmxGetDevProductNum(const char device[], uInt32 *data);
For USB 6211
Device ID |
Device Name |
0x7270 |
NI USB-6211 |
How can I use C# to get the device product number?
Thank you
03-03-2011 12:54 PM
Hi wenjie,
It's something like this:
NationalInstruments.DAQmx.DaqSystem.Local.LoadDevice("Dev1").ProductNumber
Brad
03-04-2011 11:32 AM
Thank you