LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,253
Default Hyperlinks on Protected Sheets


Rich wrote :


I therefore assume that I cannot handle events on that sheet.


I assumed... famous last words :)

You can set up an application level event handler in the addin..

in thisworkbook of the addin...
Option Explicit

Dim WithEvents appXL As Application

Private Sub appXL_SheetChange(ByVal Sh As Object, ByVal Target As Range)
Debug.Print Target.Address(external:=True)
End Sub

Private Sub Workbook_BeforeClose(Cancel As Boolean)
Set appXL = Nothing
End Sub

Private Sub Workbook_Open()
Set appXL = Application
End Sub

now you'll see the address of ANY cell that is changed...

see the dropdowns in the codepane...
select appXL on the left..
check the available events on the right.


--
keepITcool
| www.XLsupport.com | keepITcool chello nl | amsterdam

 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Hyperlinks on Protected worksheet Barb Reinhardt Excel Discussion (Misc queries) 1 July 1st 09 08:21 PM
HYPERLINKS IN A PROTECTED SHEET Todd Excel Discussion (Misc queries) 0 January 8th 07 04:43 PM
Protected Hyperlinks mhart210 Excel Discussion (Misc queries) 0 July 14th 06 07:47 PM
Hyperlinks and protected workbooks ju1eshart Excel Worksheet Functions 2 June 29th 06 06:42 PM
using hyperlinks in a protected worksheet Paul James[_3_] Excel Programming 2 December 4th 03 09:59 PM


All times are GMT +1. The time now is 07:41 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"