How to open a file of any extension, such as - Paçoca.legalcara
in an executable like - algo.exe
using CMD or VB ?
Note: The path must be relative, which means that everyone is in the same folder
How to open a file of any extension, such as - Paçoca.legalcara
in an executable like - algo.exe
using CMD or VB ?
Note: The path must be relative, which means that everyone is in the same folder
In VB you can use the arguments, for example call the notepad:
System.Diagnostics.Process.Start("notepad.exe", "c:\arquivo.txt")
And in cmd it would look something like:
start "notepad.exe" "c:\arquivo.txt"