I am trying to create an application in visual basic to open up a command prompt. I then want to type the word "Message" into the command prompt and have my application recognize the word "Message" and then run my application.
Any help leading me into the right direction would be greatly appreciated. Do I need to create a batch file or something else for this to work? Any advice, articles, or sample code is greatly appreciated. This is all new to me. I don't have much code, but this is what I have in visual basic:
Process.Start("cmd")
If (cmd.CommandText = "Message") Then
'calls another class to actually run the program
End If