[VB6] WinForm Full screen & Extend Screen 全螢幕與延伸螢幕


Private Sub Form_Load()
    Form2.Left = Screen.Width          'Extend Screen 延伸螢幕
    Form2.Width = Screen.Width       'Full Screen Width 全螢幕寬
    Form2.Height = Screen.Height      'Full Screen Height 全螢幕高
End Sub

留言