Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than user32, prefix the name with the module name and a period.
<DllImport("user32.dll", EntryPoint:="EnumDisplayDevices", CharSet:=CharSet.Auto, CallingConvention:=CallingConvention.StdCall)> _
Public Shared Function EnumDisplayDevices(ByVal lpDevice As String, ByVal iDevNum As UInteger, ByRef lpDisplayDevice As DISPLAY_DEVICE, ByVal dwFlags As UInteger) As Integer
End Function
Dim i, numberOfInterfaces as Integer
Dim dispDev1 As New DISPLAY_DEVICE
dispDev1.cb = Marshal.SizeOf(dispDev1)
'First we have to enumerate the adapters.
i = 0
While (EnumDisplayDevices(vbNullString, i, dispDev1, &H0))
i += 1
End While
numberOfInterfaces = i
'Once we know how many adapters there are, we'll loop and retrieve some data
For i = 0 to numberOfInterfaces - 1
EnumDisplayDevices(vbNullString, i, dispDev1, &H0)
TextBox1.AppendText("-=Adapter=-" & vbCrLf)
TextBox1.AppendText("deviceName:" & dispDev1.DeviceName & vbCrLf)
TextBox1.AppendText("deviceString:" & dispDev1.DeviceString & vbCrLf)
TextBox1.AppendText("deviceFlags:" & dispDev1.StateFlags & vbCrLf)
TextBox1.AppendText("-=Monitor=-" & vbCrLf)
EnumDisplayDevices(dispDev1.DeviceName, 0, dispDev1, &H1)
TextBox1.AppendText("deviceName:" & dispDev1.DeviceName & vbCrLf)
TextBox1.AppendText("deviceString:" & dispDev1.DeviceString & vbCrLf)
TextBox1.AppendText("deviceFlags:" & dispDev1.StateFlags & vbCrLf)
TextBox1.AppendText("--" & vbCrLf)
Next
Alternative Managed API:
None.
The EnumDisplayDevices API
12/16/2019 5:31:09 PM - -88.69.25.3
This structure defines various properties about a display device. It is used by the EnumDisplayDevices method.
8/7/2019 5:22:09 PM - -165.214.11.78
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).