Bug in ExampleUtils.vb

Supporting Visual Studio on Windows
Post Reply
smirkingman
Fresh meat
Posts: 2
Joined: Sun May 21, 2017 4:33 am
Contact:

Bug in ExampleUtils.vb

Post by smirkingman »

At line 57

Code: Select all

ElseIf (args(i).StartsWith("C:\")) Then
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

Code: Select all

ElseIf (args(i).StartsWith("C:\")) OrElse (args(i).StartsWith("\\")) Then
Also, the sample projects often seem to have references to AquaGauge.

Also, also, the VoltageInput sample doesn't support the 1135.
Post Reply