Are you familiar with this code? it works but it is making conflict with
anotehr code I already have on This Worksheet View code
Private Sub Workbook_BeforeClose(Cancel As Boolean)
Cancel = Not blnClose
End Sub
Do you know how can I fix this conflict... Chip P routine has on same view
code as follows
Private Sub Workbook_Open()
StartBlink
End Sub
Private Sub Workbook_BeforeClose(Cancel As Boolean)
StopBlink
End Sub
which cause conflict.