Hello folks,
We are having a weird problem here...
In one of the sheets of my workbook I ended up with a...
We are having a weird problem here...
In one of the sheets of my workbook I ended up with a...
Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)
End Sub
[\code]
...by mistake. I don't need or want it so I tried to delete it. Problem is, whenever I try to delete it it crashes excel, and sometimes the whole PC.
I got round it by doing
[code]
Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)
Exit Sub
End Sub
[\code] but it's really slowing my code down as during one particular procedure a selection change happens 100s of times and it's going to this event each time
Does anyone know why I don't seem to be able to delete this, or even better how to fix it?
Thanks,
Liz
[ponder]