GetMouse APIs 
Author Message
 GetMouse APIs

Somewhere, I know there is a GetMouseX and GetMouseY API, eg:
Declare Function GetMouseX Lib "???" [Alias "????"] () As Long
(and for GetMouseY).

I used to have the library's name in a database, but I can't find it
anymore.
Can anyone tell me the lib (and/or alias if it is different), or the API
that is equivalent (it returns the mouse's X and Y - obviously)

Oh wait... let me check something...
(long wait)
Nevermind... I don't have it.

Any help would be nice!

Requinix

(To Filipe Santos: This is the other method of OnMouseOut( ) - you can guess
what these API's would do)



Sat, 31 Jan 2004 06:43:17 GMT  
 GetMouse APIs
Private Type POINTAPI
        x As Long
        y As Long
End Type
Private Declare Function GetCursorPos Lib "user32" Alias "GetCursorPos" _
        (lpPoint As POINTAPI) As Long

Howard Henry Schlunder


Quote:
> Somewhere, I know there is a GetMouseX and GetMouseY API, eg:
> Declare Function GetMouseX Lib "???" [Alias "????"] () As Long
> (and for GetMouseY).

> I used to have the library's name in a database, but I can't find it
> anymore.
> Can anyone tell me the lib (and/or alias if it is different), or the API
> that is equivalent (it returns the mouse's X and Y - obviously)

> Oh wait... let me check something...
> (long wait)
> Nevermind... I don't have it.

> Any help would be nice!

> Requinix

> (To Filipe Santos: This is the other method of OnMouseOut( ) - you can guess
> what these API's would do)



Sat, 31 Jan 2004 06:56:55 GMT  
 
 [ 2 post ] 

 Relevant Pages 

1. API API API

2. API, API, Who's got the API

3. releaseCapture API and send message API.

4. need help with releaseCapture API and send message API

5. I need Windows 3.11 API / Necesito API de Windows 3.11

6. Win32 API / NET API security context

7. New API-Guide & API-Toolshed Released

8. Winsock API - Not Windows API (and other stuff)

9. API Viewer - Text API File for wininet.dll?

10. When is an API and API?

11. ! The answer to all your API questions: VB5 Guide to API - Dan Appleman

12. New API example posted on the KamiKaze API Guide

 

 
Powered by phpBB® Forum Software