PureBytes Links
Trading Reference Links
|
>I need some help with Win32 API ( user32.dll ).
In my Visual Basic software development, I use the following declare call
which returns the active window handle.
Hope this helps.
Larry
Public Declare Function WindowFromDC Lib "user32" Alias "WindowFromDC"
(ByVal hdc As Long) As Long
Public Declare Function GetActiveWindow Lib "user32" Alias "GetActiveWindow"
() As Long
|