Skip to content

Instantly share code, notes, and snippets.

@kumatti1
Created February 17, 2012 23:45
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kumatti1/1856305 to your computer and use it in GitHub Desktop.
Save kumatti1/1856305 to your computer and use it in GitHub Desktop.
VBAでモニタ名を得る
Option Explicit
Enum MONITORS
MONITOR_DEFAULTTONULL
MONITOR_DEFAULTTOPRIMARY
MONITOR_DEFAULTTONEAREST
End Enum
Const PHYSICAL_MONITOR_DESCRIPTION_SIZE = 128 - 1
Type PHYSICAL_MONITOR
hPhysicalMonitor As Long
szPhysicalMonitorDescription(PHYSICAL_MONITOR_DESCRIPTION_SIZE * 2) As Byte
End Type
Declare Function GetPhysicalMonitorsFromHMONITOR& Lib "Dxva2.dll" (ByVal hMonitor&, ByVal dwPhysicalMonitorArraySize&, ByVal pPhysicalMonitorArray&)
Declare Function MonitorFromWindow& Lib "User32.dll" (ByVal hwnd&, ByVal dwFlags&)
Declare Function GetNumberOfPhysicalMonitorsFromHMONITOR& Lib "Dxva2.dll" (ByVal hMonitor&, ByVal pdwNumberOfPhysicalMonitors&)
Declare Function DestroyPhysicalMonitors& Lib "Dxva2.dll" (ByVal dwPhysicalMonitorArraySize&, ByVal pPhysicalMonitorArray&)
Sub hoge()
Dim h&, cnt&, ret&
Dim s$
Dim st() As PHYSICAL_MONITOR
h = MonitorFromWindow(Application.hwnd, MONITOR_DEFAULTTOPRIMARY)
If h = 0 Then Exit Sub
GetNumberOfPhysicalMonitorsFromHMONITOR h, VarPtr(cnt)
If cnt = 0 Then Exit Sub
ReDim st(0 To cnt - 1)
ret = GetPhysicalMonitorsFromHMONITOR(h, cnt, VarPtr(st(0)))
If ret Then
s = st(0).szPhysicalMonitorDescription
s = Left$(s, InStr(s, vbNullChar) - 1)
Debug.Print s
DestroyPhysicalMonitors cnt, VarPtr(st(0))
End If
End Sub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment