Window - Returns HWND of active window
|
|
'Description: Returns HWND of active window
'Private Declare Function M_GetActiveWindow Lib "user32" Alias "GetActiveWindow" () As Long
'Function GetActiveWindow() As Long
Dim xHwnd As Long
xHwnd = M_GetActiveWindow()
GetActiveWindow = xHwnd
'End Function
| |
|
|
Back |
|
Index |
|
Return to home page |