我使用RAD Studio 10.1 Update 2并且必须从National Instruments初始化NI PXIe-1073。我使用与Delphi 7中相同的命令:
result:= niDCPower_InitializeWithChannels('PXI1Slot2',
'0',
true,
'Simulate=0, DriverSetup=Model:4138; BoardType:PXIe',
session) = false;
该函数具有以下参数:
function niDCPower_InitializeWithChannels(resourceName: string;
channels: string;
reset: boolean;
optionString: string;
var vi: integer): boolean cdecl {$IFDEF WIN32} stdcall {$ENDIF};
我有一个问题:这适用于Delphi 7,但不能与RAD Studio 10一起使用。
问题是什么?
提前致谢。