PDA

View Full Version : fullscreen without windows windows



ki
15-08-2003, 07:39 AM
I'm trying to inherit my own d3dapp from the framework.
I can't find out how to get rid of those window menus etc. and make my app go straight to fullscreen. help?

Clootie
15-08-2003, 02:18 PM
For DirectX9 one:
[background=#FFFFFF][normal=#000000][number=#0000FF][string=#0000FF][comment=#248F24][reserved=#000000]
constructor CMyD3DApplication.Create;
begin
inherited;
...
m_bStartFullscreen := True;
...
end;

ki
15-08-2003, 02:24 PM
yep. I got that earlier.. but I still have those resources etc. lurking around..
maybe I have to strip down the common framework.

Clootie
15-08-2003, 03:49 PM
Hmm, strange question... Maybe you should explain it little more?
If you mean what you app goto fullscreen and run fine, just when viewing with f.e. notapad you executable file you see text of menus and dialogs - you should remove {$R winmain.res} statement from your source.

ki
15-08-2003, 03:55 PM
mmm. yep.
I think I got the point.
I still need help with class-desing in general games programming area..