user2065631
user2065631

Reputation: 91

iexpress console parameters

I need create one .exe file from a few dll and .exe files. I used iexpress. Program works fine but I can't transmit parameters in console because program runs from console. How can I transmit parameters in console and run my application with these parameters?

Like this: gm convert -size 100x100 a.jpg b.pdf

Thanks!

Upvotes: 1

Views: 1116

Answers (1)

fission
fission

Reputation: 1230

You can use the /c switch to do this, eg:

gm /c:"convert -size 100x100 a.jpg b.pdf"

(assuming that convert.exe is the name of the executable inside the IExpress file gm.exe)

Upvotes: 1

Related Questions