I'm trying to actually figure out how to open Quake3 with command line options.......
like: "C:\X\Quake3.exe" +dedicated 1 +exec 1.cfg
I don't need to do anything after that - just launch it.
Thanks for any help...
Printable View
I'm trying to actually figure out how to open Quake3 with command line options.......
like: "C:\X\Quake3.exe" +dedicated 1 +exec 1.cfg
I don't need to do anything after that - just launch it.
Thanks for any help...
Use the Shell function.
It will also support command lines:Code:Shell "C:\...\Quake.exe", vbNormalFocus
Code:Shell "C:\...\Quake.exe +dedicated 1 +exec 1.cfg", vbNormalFocus
Thanks, that worked - I had the format wrong.