--- joko/ToolBox/Windows/VpnDial/src/CommandLine.cls 2005/10/09 18:43:03 1.2 +++ joko/ToolBox/Windows/VpnDial/src/CommandLine.cls 2005/11/18 18:57:46 1.3 @@ -105,13 +105,13 @@ Private Function readSwitch(arg As String) As String If (Left(arg, 2) = "--") Then - readSwitch = LCase(Mid(arg, 3)) + readSwitch = Mid(arg, 3) End If End Function Private Function readArgument(arg As String) As String If (Left(arg, 2) <> "--") Then - readArgument = LCase(arg) + readArgument = arg End If End Function