How to set full screen model ? : ASM x86 ASM 370
This is a discussion on How to set full screen model ? within the ASM x86 ASM 370 forums in Programming Languages category; Hello everybody , i'm a new bie . I have a question ASM . How do i set app full screen model when run it in Windows ? Thanks !...
![]() |
| | LinkBack | Thread Tools |
|
#1
| |||
| |||
| How do i set app full screen model when run it in Windows ? Thanks ! |
|
#2
| |||
| |||
| "N.V.T" <spamtrap@crayne.org> wrote: > >Hello everybody , i'm a new bie . I have a question ASM . >How do i set app full screen model when run it in Windows ? >Thanks ! This could mean several things, although none of them have anything to do with ASM. Do you want to have a Windows GUI application that starts up "maximized"? Do you want a DirectX application that takes the full screen? Do you want to have a console application that takes the full screen? Those a three valid things to want to do, but they have three VERY different answers. -- Tim Roberts, timr@probo.com Providenza & Boekelheide, Inc. |
|
#3
| |||
| |||
| I have a console application that takes the full screen ![]() |
|
#4
| |||
| |||
| On Tue, 28 Oct 2008 03:46:27 -0700 (PDT), "N.V.T" <spamtrap@crayne.org> wrote in comp.lang.asm.x86: > I have a console application that takes the full screen ![]() Then the answer is that there is nothing your program can do to run full screen. A Win32 console application cannot control it's font type or size, or whether it runs full screen or in a Windows. The user gets to make those choices. -- Jack Klein Home: http://JK-Technology.Com FAQs for comp.lang.c http://c-faq.com/ comp.lang.c++ http://www.parashift.com/c++-faq-lite/ alt.comp.lang.learn.c-c++ http://www.club.cc.cmu.edu/~ajo/docs/FAQ-acllc.html |
|
#5
| |||
| |||
| "N.V.T" <spamtrap@crayne.org> wrote: > >I have a console application that takes the full screen ![]() You can make a console window go full screen by pressing Alt-Enter. You can't force that to happen programmatically. You can certainly use the console APIs do increase the number of rows and columns. Overall, you haven't really given us enough clues about what you are after. -- Tim Roberts, timr@probo.com Providenza & Boekelheide, Inc. |



