starting Mpress process

Conejo

Well-known member
Joined
Jul 24, 2013
Messages
65
Location
USA
Programming Experience
1-3
Hi tim trying this code: Process.Start(Application.StartupPath & "\mpress.exe", Application.StartupPath & "\encrypted.exe") in order to use mpress u have to execute a program with it physically u just drag it to mpress.exe but i want to do it in vb.net its not working please help me.
 
So, you're saying that, in Windows Explorer, you would drag the 'encrypted.exe' file icon and drop it on the 'mpress.exe' file icon and that would run mpress and somehow process the 'encrypted.exe' file, correct? If you use a Console window, can you cd to the folder containing those two files and then just type "mpress encrypted.exe" (without quotes)?
 
I was wrong all along it was supoosed to be like this: mpress.exe -s file.exe so now i fixed my code here it is and it works thanks for replying

Shell("mpress.exe -s encrypted.exe")

it has to be on the same directory.
 
Back
Top