How to get args from console just like in c++
void main(....,char * args)
Printable View
How to get args from console just like in c++
void main(....,char * args)
VB Code:
Msgbox Command 'or Dim args() as String = Split(Command, " ") ' or what ever you want to use as a delimiter
or
VB Code:
Public Function Main(ByVal CmdArgs() As String) As Integer 'do whatever Return 0 End Function