Jag har en form som öppnas modalt i förhållande till en annan form. Finns det något enkelt sätt att fånga upp ett klick *utanför* den modala formen? Jag vill nämligen då stänga den, så att den fungerar ungefär som en meny. Kolla dessa apierKlick utanför modal form
- HansSv: Klick utanför modal form
'Gets a window-handle from a POINT
Declare Function WindowFromPoint Lib "user32" (ByVal xPoint As Long, ByVal yPoint As Long) As Long
'Gets the POINT the cursor is at
Declare Function GetCursorPos Lib "user32" (lpPoint As POINTAPI) As Long
'Sets a windows to receive all mouse-events
Public Declare Function SetCapture Lib "user32" (ByVal hWnd As Long) As Long
'Gets the handle for the window that currently has captured the mouse
Public Declare Function GetCapture Lib "user32" () As Long
'Release the mouse
Public Declare Function ReleaseCapture Lib "user32" () As Long
/johan/