@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm Summary: The MonitorFromPoint API !!!!C# Signature: [DllImport("user32.dll", SetLastError = true)] static extern IntPtr MonitorFromPoint(POINT pt, MonitorOptions dwFlags); enum MonitorOptions : uint { MONITOR_DEFAULTTONULL = 0x00000000, MONITOR_DEFAULTTOPRIMARY = 0x00000001, MONITOR_DEFAULTTONEAREST = 0x00000002 } !!!!VB .NET Signature: <DllImport("user32.dll", SetLastError := True)> _ Private Shared Function MonitorFromPoint(pt As POINT, dwFlags As MonitorOptions) As IntPtr End Function Private Enum MonitorOptions As UInteger MONITOR_DEFAULTTONULL = &H0 MONITOR_DEFAULTTOPRIMARY = &H1 MONITOR_DEFAULTTONEAREST = &H2 End Enum !!!!User-Defined Types: [POINT] !!!!Notes: None. !!!!Tips & Tricks: Please add some! !!!!Sample Code: Please add some! !!!!Alternative Managed API: Do you know one? Please contribute it! Documentation: MonitorFromPoint@msdn on MSDN
Edit user32.MonitorFro...
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.