Tweak for issue #36

This commit is contained in:
Michael J. Seiferling
2016-02-27 15:58:24 -06:00
parent a7b97912f2
commit ec47697434
+8 -3
View File
@@ -547,19 +547,24 @@ Public Class frmMain
'Functions handling the opening of other windows 'Functions handling the opening of other windows
Private Sub OpenDevConsole() Private Sub OpenDevConsole()
Dim sFullCommand As String Dim sFullCommand As String
Dim sMainCommand As String
Dim sCommand As String() Dim sCommand As String()
Dim sDelimters As String = " :"
Dim cDelimters As Char() = sDelimters.ToCharArray
sFullCommand = InputBox(frmMain_EnterCommand, frmMain_DeveloperConsole) sFullCommand = InputBox(frmMain_EnterCommand, frmMain_DeveloperConsole)
If sFullCommand <> String.Empty Then If sFullCommand <> String.Empty Then
sCommand = sFullCommand.Split(":") sMainCommand = sFullCommand.Split(cDelimters, 2)(0)
'Parse Command 'Parse Command
Select Case sCommand(0) Select Case sMainCommand
Case "SQL" Case "SQL"
Dim oDatabase As mgrSQLite Dim oDatabase As mgrSQLite
Dim bSuccess As Boolean Dim bSuccess As Boolean
sCommand = sFullCommand.Split(cDelimters, 3)
'Check Paramters 'Check Paramters
If sCommand.Length < 3 Then If sCommand.Length < 3 Then
mgrCommon.ShowMessage(frmMain_ErrorMissingParams, sCommand(0), MsgBoxStyle.Exclamation) mgrCommon.ShowMessage(frmMain_ErrorMissingParams, sCommand(0), MsgBoxStyle.Exclamation)
@@ -584,7 +589,7 @@ Public Class frmMain
End If End If
Case Else Case Else
mgrCommon.ShowMessage(frmMain_ErrorCommandInvalid, sCommand(0), MsgBoxStyle.Exclamation) mgrCommon.ShowMessage(frmMain_ErrorCommandInvalid, sMainCommand, MsgBoxStyle.Exclamation)
End Select End Select
End If End If