hi all
i want to Call an Exe, that is a Console Application, in that Exe i want throw in Commands from e.g like "Dir", but i want to do this in vb.NET.
Thanks
Printable View
hi all
i want to Call an Exe, that is a Console Application, in that Exe i want throw in Commands from e.g like "Dir", but i want to do this in vb.NET.
Thanks
The Process.Start method is used to start processes. Pass the filename as the first argument and the argument as the second.
Thanks for your reply , i get your point , please post me an Example code
System.Diagnostics.Process.Start("Console.exe","Dir")
Thank you , it is Resolved