Full screen

Hi, I am using window XP. I am making a full screen form. I maximize the form by:

Private Sub Form2_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Width = Screen.GetBounds(Me).Width
Height = Screen.GetBounds(Me).Height
Left = 0
Top = 0
End Sub

However, the title bar is still exist. How can I hide the title bar



Answer this question

Full screen

  • Harry_Leboeuf

    Change the Form’s FormBorderStyle property to None to eliminate the title bar.

  • Full screen