|
Average Rating: 3.2/5 | Rate this item | 11 users have rated this item.
|
Expertise: Advanced
Language: .NET
August 5, 2008
Resize a Form to the Working Area on the Desktop
The code below demonstrates how to resize a form to the working area on the desktop using GetScreenRect.
Private Sub frmFullScreen_Load _
(ByVal sender As System.Object, ByVal e As System.EventArgs) _
Handles MyBase.Load
Me.Location = My.Computer.Screen.WorkingArea.Location
Me.Size = My.Computer.Screen.WorkingArea.Size
'and maybe place an "exit" button to the bottom right
corner of the borderless form:
'm_btnFullScreenExit.Location() = _
Me.Size - m_btnFullScreenExit.Size - _
New System.Drawing.Size(3, 3)
End Sub
Mircea Dunka
If you have a hot tip and we publish it, we'll pay you. However, due to accounting overhead we no longer pay $10 for a single tip submission. You must accumulate 10 acceptable tips to receive payment. Be sure to include a clear explanation of what the technique does and why it's useful. If it includes code, limit it to 20 lines if possible. Submit your tip here.
|