+ Reply to Thread
Results 1 to 2 of 2

Mouse pointer position, excel2002

Hybrid View

  1. #1
    tc
    Guest

    Mouse pointer position, excel2002

    I give up. How do I retrieve the x-y coordinates of the HotSpot within the
    active window? I've been struggling with this forever.

    Tony Rizzo



  2. #2
    paul.robinson@it-tallaght.ie
    Guest

    Re: Mouse pointer position, excel2002

    'Put this bit at the top of your code window:

    Declare Function GetUserName Lib "ADVAPI32.DLL" Alias "GetUserNameA" _
    (ByVal lpBuffer As String, nSize As Long) As Long
    'adapted from a sub by Vasant
    'used by Module_PopUp sub to get the mouse coordinates when a cell is
    clicked
    Declare Function GetCursorPos Lib "user32" (lpPoint As POINTAPI) As
    Long
    Type POINTAPI
    X As Long
    Y As Long
    End Type

    'used by Module_PopUp sub to get the mouse coordinates when a cell is
    clicked
    Function ShowPos() As Variant
    Dim lRetVal As Long
    Dim Pos As POINTAPI
    Dim TempArray(1 To 2) As Long
    lRetVal = GetCursorPos(Pos)
    TempArray(1) = Pos.X
    TempArray(2) = Pos.Y
    ShowPos = TempArray
    End Function

    regards
    Paul


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1