Making forms full screen........
- From: John Morley <jmorley@xxxxxxxxxxxxxxxxxxxxxx>
- Date: Tue, 02 May 2006 14:57:38 -0400
Hi All,
I use this subroutine each time I load a form to make it it full-screen. This has always worked 100% of the time, but recently a customer reported that his software was not starting up in full-screen mode. I can't imagine why this would suddenly be happening, or how exactly this subroutine is being fooled? Any thoughts?
Thanks,
John
'
' SizePageToScreen
'
Public Sub SizePageToScreen(pg As Form)
pg.Left = 0
pg.Top = 0
pg.Width = Screen.Width
pg.Height = Screen.Height
End Sub
.
- Follow-Ups:
- Re: Making forms full screen........
- From: Alberto Alexander Miņano Villavicencio
- Re: Making forms full screen........
- From: MikeD
- Re: Making forms full screen........
- From: Ivar
- Re: Making forms full screen........
- Prev by Date: Re: resize treeview and listview on MDI form
- Next by Date: Re: pointer to pointer
- Previous by thread: ScrollBars on a window with a bigger canvas
- Next by thread: Re: Making forms full screen........
- Index(es):
Relevant Pages
|