I'm using Data Acquisition (PCI-6040E) and version NI-DAQ 6.9.3 that supported Window XP but not mesurement studio.
This interface card works good for Microsoft Visual Basic 6.0 but Microsoft Visual Basic .net not works with it because VB.net is not supported 'As Any' in 'Declare' statements of nidaq32.vb
for example, I tried to convert syntax
Declare Function SCAN_Op% Lib "nidaq32.dll" (ByVal a%, ByVal b%, ByVal c%, d%, e%, ByVal f&, ByVal g#, ByVal h#)
to syntax
Declare Function SCAN_Op% Lib "nidaq32.dll" (ByVal a%, ByVal b%, ByRef c As Integer, ByRef d As Integer, ByRef e As Integer, ByVal f&, ByVal g#, ByVal h#).
But When I Compiled, the error is broken out.
What's Wrong with my cpnversion?
if anyone ask for my quwstion
, it's very helpful to me.
Thank you very much.