Skip to content

Instantly share code, notes, and snippets.

@kumatti1
Last active August 29, 2015 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kumatti1/61c341eadca58f710d33 to your computer and use it in GitHub Desktop.
Save kumatti1/61c341eadca58f710d33 to your computer and use it in GitHub Desktop.
モニタ名取得
Imports ServiceLibrary
Module Module1
Sub Main()
Dim objPenent As New CEDID
For i As UShort = 0 To 32
Dim objChild As New CEDID.CEDID_V1_Block
Dim tmp As uint32 = 1
objChild.DsiplayDev.U32DeviceID = tmp << i
If objPenent.GetEDIDBlock(objChild) Then
Dim s As String = objChild.GetName
MsgBox(s)
End If
Next
End Sub
End Module
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment