Varable Arguments at start of an .exe file

Status
Not open for further replies.

Xile

Beta member
Messages
3
Is there a list of variable arguments that can be added at the end of a .exe file to make it launch in full screen mode?
(i.e. test.exe -? <--how can I make test.exe launch in full screen mode?) I made a program myself in C++ (I'm semi n00b at C++)
and I want it to launch in full screen mode when executed...any idea?
-Xile
 
The arguments are all defined in the actual program. Meaning, if there is an argument to make a program full screen, you'd have to implement that functionality yourself.

If it's a console program, you're going to have to change the console properties. If it's a directX project, then there are properties you set for that as well.
 
Status
Not open for further replies.
Back
Top Bottom