이미지를 전체화면 크기로 출력해보세요
첫째 - 폼 최대화 ( WindowState ->Maximized )
둘째 - PictureBox ( StretchImage )
        Timer1.Enabled = True
        Dim x, y As Integer
        x = Screen.AllScreens(0).WorkingArea.Width
        y = Screen.AllScreens(0).WorkingArea.Height
        Me.PictureBox1.Size = New System.Drawing.Size(x, y)
vnote