How do i make full screen form???:(
Printable View
How do i make full screen form???:(
You just need to set the Width, Height, Top and Left appropriately:
Code:Sub FullScreen()
Me.Height = Screen.Height
Me.Width = Screen.Width
Me.Top = 0
Me.Left = 0
End Sub
if you dont want to change the resolution, just change the windowState property to vbMaximized and change the BorderStyle of your form to 0