สอบถาม vb.net ดูทั้งหมด

รบกวนสอบถาม อจ. code การแสดง 2 จอ vb.net ฝั่งผู้ใช้งานและผู้มาใช้บริการ
  • คัดลอกลิงก์ thongkorn
  • 2023-4-16 18:39:34
  1.         '// หาจำนวนจอมอนิเตอร์ (คำสั่งอยู่ในฟอร์มหลัก)
  2.         Dim NumOfMonitors As Integer = Screen.AllScreens.Length
  3.         If NumOfMonitors > 1 Then
  4.             'Me.Bounds = Screen.AllScreens(0).Bounds    '// ระบุมอนิเตอร์ให้แสดงผล
  5.             '// เปิดฟอร์ม 2
  6.             With Form2
  7.                 .Show()
  8.                 '.Bounds = Screen.AllScreens(1).Bounds
  9.                 .Location = Screen.AllScreens(1).WorkingArea.Location
  10.                 .StartPosition = FormStartPosition.Manual
  11.                 .FormBorderStyle = FormBorderStyle.None '// ปิดปุ่ม Min/Max/Close
  12.                 .WindowState = FormWindowState.Maximized    '// แสดงผลเต็มจอ
  13.             End With
  14.         End If
  • คัดลอกลิงก์ kisflee
  • 2023-4-18 16:35:40
ขอบคุณครับ