T
Timothy Taylor
Hello, the following code works for VB.NET for the desktop, however it gives
me an error when i run it on the compact framework. What's the problem? Do
i have to to it differently?
Try
Dim CmdLineArgument As String
Dim separators As String = "^"
Dim commands As String = Command()
Dim args() As String = commands.Split(separators.ToCharArray)
CmdLineArgument = args(0)
MsgBox(args(0))
Catch ex As Exception
MsgBox("No Arguments")
End Try
me an error when i run it on the compact framework. What's the problem? Do
i have to to it differently?
Try
Dim CmdLineArgument As String
Dim separators As String = "^"
Dim commands As String = Command()
Dim args() As String = commands.Split(separators.ToCharArray)
CmdLineArgument = args(0)
MsgBox(args(0))
Catch ex As Exception
MsgBox("No Arguments")
End Try