| View previous topic :: View next topic |
| Author |
Message |
Quatre87 Valued Newbie
Joined: 07 Jan 2004 Posts: 25
|
Posted: Thu Oct 07, 2004 10:27 pm Post subject: Full screen |
|
|
| How can i do a full screen window? |
|
| Back to top |
|
 |
ShinobiSoft Professional Member


Joined: 06 Nov 2002 Posts: 790 Location: Knoxville, Tn
|
Posted: Fri Oct 08, 2004 1:33 am Post subject: |
|
|
See if this is what ya want:
| Code: |
rem Get the screens dimensions
%%screenWidth = @sysinfo(SCREENWIDTH)
%%screenHeight = @sysinfo(SCREENHEIGHT)
rem Create the window full screen size
dialog create,My Window,-1,-1,%%screenWidth,%%screenHeight
dialog show
rem Now we must maximize the window
window maximize,My Window
|
Hope this helps!  _________________ Bill Weckel
ShinobiSoft Software
"The way is known to all, but not all know it." |
|
| Back to top |
|
 |
Quatre87 Valued Newbie
Joined: 07 Jan 2004 Posts: 25
|
Posted: Fri Oct 08, 2004 6:59 pm Post subject: |
|
|
| Thanks, but, this code doesn't hide the windows bar.. is impossible hide it? |
|
| Back to top |
|
 |
Garrett Moderator Team
Joined: 04 Oct 2001 Posts: 2149 Location: A House
|
Posted: Fri Oct 08, 2004 8:37 pm Post subject: |
|
|
If using VDS 4 or 5, you can use TASKBAR HIDE and TASKBAR SHOW
If using VDS 2 or 3, you can use
WINDOW HIDE,@winexists(#Shell_TrayWnd)
and
WINDOW NORMAL,@winexists(#Shell_TrayWnd)
-Garrett _________________ 'What you do not want done to yourself, do not do to others.' - Confucius (550 b.c. to 479 b.c.) |
|
| Back to top |
|
 |
|