A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Make a new file and add this code into the code module ThisWorkbook:
Option Explicit
Dim WithEvents App As Application
Private Sub App_SheetSelectionChange(ByVal Sh As Object, ByVal Target As Range)
MsgBox Sh.Name & " " & Target.Address(0, 0)
End Sub
Private Sub Workbook_Open()
Set App = Application
End Sub
Save, close and reopen. Select a cell and you see that the Msgbox comes up.
Try to open other workbooks, they can also contain a SelectionChange event routine, doesn't matter.
BTW, before you start your project have a look here for the Follow Cell Pointer AddIn:
http://www.jkp-ads.com/download.asp
I guess that is what you want to accomplish.
Andreas,