Last active
August 29, 2015 14:04
-
-
Save kumatti1/61c341eadca58f710d33 to your computer and use it in GitHub Desktop.
モニタ名取得
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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