<System.Runtime.InteropServices.DllImport("user32.dll", CharSet:=Runtime.InteropServices.CharSet.Unicode)> _
Shared Function WindowFromPhysicalPoint(ByVal Point As POINT) As IntPtr
End Function
Public Structure POINT
Public x As Integer
Public y As Integer
End Structure
Public Function GetHwndFromPoint(ByVal p As POINT) As IntPtr
Return WindowFromPhysicalPoint(p)
End Function