hey,
Lets say i wanna open a game with Shell.
The game is 3D and all, and i would like to know what is the best way to Shell a game:
what WindowState (normal, minimzed..) and focus should i use to shell the game. hope i got me..
tnx
Printable View
hey,
Lets say i wanna open a game with Shell.
The game is 3D and all, and i would like to know what is the best way to Shell a game:
what WindowState (normal, minimzed..) and focus should i use to shell the game. hope i got me..
tnx
Since the game is bound to switch resolutions if it is 3D, it probably doesn't matter. But I would suggest vbNormalFocus. That's what Quake 3 does at least.
vbNormalFocus, u sure?
I want the game to be luanch as good as possible
I'm pretty sure. Just make sure that you Shell the game itself and not a launcher for the game (for example in Descent 3, not "Descent 3.exe" but "main.exe").
yea sure.
its not the code, its the lil popup from the Shell command.Code:'Description of Shell:
Shell(PathName, [WindowStyle As VbAppWinStyle = MinimizedFocus]) As Double
after the path name, what kind of WindowStyle should i use?
my code is this:
Code:Shell (Main.ExeFilelbl(GameNum).Caption), vbNormalFocus
Or mayb my code is good and i just need to leave it that way..