View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Simon Lloyd[_115_] Simon Lloyd[_115_] is offline
external usenet poster
 
Posts: 1
Default How to disable mailto link under Excel 2000 ?


SImply put this code in the worksheet code module that you are working
with
Code:
--------------------
Private Sub Worksheet_Change(ByVal Target As Range)
Me.Hyperlinks.Delete
End Sub
--------------------


Help~;256189 Wrote:
When there is a "@" character in cell, it will turn into mailto link
directly.
If I remove the link and edit the cell, the link appears again.
All the solution I can found are for Excel 2002 and later.
How to disable mailto link under Excel 2000 ?



--
Simon Lloyd

Regards,
Simon Lloyd
'The Code Cage' (http://www.thecodecage.com)
------------------------------------------------------------------------
Simon Lloyd's Profile: http://www.thecodecage.com/forumz/member.php?userid=1
View this thread: http://www.thecodecage.com/forumz/sh...ad.php?t=71508