Bug in ExampleUtils.vb
Posted: Sat Sep 23, 2017 4:06 am
At line 57
If the application is running from a remote computer, the AppName start with "\\" and the code displays (a rather cryptic) "Invalid command line arguments" message.
The line should read
Also, the sample projects often seem to have references to AquaGauge.
Also, also, the VoltageInput sample doesn't support the 1135.
Code: Select all
ElseIf (args(i).StartsWith("C:\")) Then
The line should read
Code: Select all
ElseIf (args(i).StartsWith("C:\")) OrElse (args(i).StartsWith("\\")) Then
Also, also, the VoltageInput sample doesn't support the 1135.