Your a little off in how you have set this up. The gist of what you want is
to instantiate an object of your class. You are not using a class module. you
put the code in this workbook whcih will not work. Add a class module to your
project. That object will contain an instance of XL which listens for XL
events. So you are close but you need to make a couple of tweaks...
Add a class Module and name it something like clsXLEvents
Put your code into that class.
When you instantiate an object of your class you want to create the XL
instance so use the Class Initialization event something like this...
Private Sub Class_Initialize()
Set App = Application
End Sub
Instead of
Public Sub SetApp()
Set App = Application
End Sub
Now you just need to create an instance of your class something like this...
In a standard module publicly declare an object of type clsXLEvents
public AppEvents as clsXLEvents
Somewhere in code (ususally in the open event of this workbook) add
set AppEvents = new clsXLEvents
Check out this link for more info on application level events...
http://www.cpearson.com/excel/AppEvent.aspx

Signature
HTH...
Jim Thomlinson
> Hi All
>
[quoted text clipped - 33 lines]
>
> Keith
Keith74 - 24 Jan 2008 17:28 GMT
Thanks Jim, i'll give that a go
Robert Bruce - 25 Jan 2008 14:52 GMT
Yn newyddion: AC779F6A-F323-4BC0-8F24-7F129F6EF3F0@microsoft.com,
Roedd Jim Thomlinson <James_Thomlinson@owfg-Re-Move-This-.com> wedi
ysgrifennu:
> You are not using a
> class module. you put the code in this workbook whcih will not work.
ThisWorkbook /is/ as class module. I just tried the OP's code and it worked
just fine. After running Thisworkbook.setapp, "?thisworkbook.App is nothing"
in the immediate window returns false, indicating that the App variable
still refers to the Application object.
Rob