G Guest Oct 21, 2005 #1 Is there a way to determine whether a computer is connected to dual monitors with VB.NET code? Thanks, Strah
Is there a way to determine whether a computer is connected to dual monitors with VB.NET code? Thanks, Strah
Y YYZ Oct 21, 2005 #2 Is there a way to determine whether a computer is connected to dual monitors with VB.NET code? Click to expand... Dim iIndex as Integer Dim Screens() As System.Windows.Forms.Screen = _ System.Windows.Forms.Screen.AllScreens For iIndex = 0 to screens.GetUpperBound(0) ' Do whatever you want Next Matt
Is there a way to determine whether a computer is connected to dual monitors with VB.NET code? Click to expand... Dim iIndex as Integer Dim Screens() As System.Windows.Forms.Screen = _ System.Windows.Forms.Screen.AllScreens For iIndex = 0 to screens.GetUpperBound(0) ' Do whatever you want Next Matt