T tahu191 Well-known member Joined Oct 27, 2005 Messages 48 Location USA Programming Experience Beginner Feb 5, 2008 #1 How would I set my form size to be the screen's resolution?
JohnH VB.NET Forum Moderator Staff member Joined Dec 17, 2005 Messages 15,846 Location Norway Programming Experience 10+ Feb 5, 2008 #2 Either Maximize the window or set according to info from Screen class. Upvote 0 Downvote
R raycopper New member Joined Dec 30, 2007 Messages 3 Programming Experience 5-10 Feb 7, 2008 #3 VB.NET: Dim loc As New Point(0, 0) With Me .Size = My.Computer.Screen.WorkingArea.Size .Location = loc End With Upvote 0 Downvote
VB.NET: Dim loc As New Point(0, 0) With Me .Size = My.Computer.Screen.WorkingArea.Size .Location = loc End With
jmcilhinney VB.NET Forum Moderator Staff member Joined Aug 17, 2004 Messages 15,136 Location Sydney, Australia Programming Experience 10+ Feb 7, 2008 #4 raycopper said: VB.NET: Dim loc As New Point(0, 0) With Me .Size = My.Computer.Screen.WorkingArea.Size .Location = loc End With Click to expand... VB.NET: Me.Bounds = Screen.PrimaryScreen.WorkingArea Upvote 0 Downvote
raycopper said: VB.NET: Dim loc As New Point(0, 0) With Me .Size = My.Computer.Screen.WorkingArea.Size .Location = loc End With Click to expand... VB.NET: Me.Bounds = Screen.PrimaryScreen.WorkingArea