We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 706804a commit f85429aCopy full SHA for f85429a
src/main/matlab/+symphonyui/+builtin/+daqs/NiDaqController.m
@@ -8,7 +8,9 @@
8
NET.addAssembly(which('NIDAQInterface.dll'));
9
catch x
10
if strcmp(x.identifier, 'MATLAB:NET:CLRException:AddAssembly')
11
- error('Unable to load National Instruments assembly. Are you sure you have the NI-DAQmx drivers installed?');
+ error(['Unable to load National Instruments assembly. Are you sure you have the NI-DAQmx drivers ' ...
12
+ 'installed? Make you choose to install ".NET Framework 4.5 Languages Support" during the ' ...
13
+ 'NI-DAQmx installer.']);
14
end
15
rethrow(x);
16
0 commit comments