Application.hWnd property (Excel)
Returns a Long indicating the top-level window handle of the Microsoft Excel window. Read-only.
Syntax
expression.hWnd
expression A variable that represents an Application object.
Example
In this example, Microsoft Excel notifies the user of the top-level window handle of the Excel window.
Sub CheckHwnd()
MsgBox "The top-level window handle is: " & _
Application.hWnd
End Sub
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.