A late reaction, maybe some found already an other solution. I used this one:
Got some code to find out the position of the mousepointer.
from http://www.freevbcode.com/ShowCode.Asp?ID=1120
Option Explicit
Private Type POINTAPI
X As Long
Y As Long
End Type
Private Declare Function GetCursorPos...