The following event macros will make the cursor an arrow whenever the
workbook containing them is active:
Private Sub Workbook_Activate()
Application.Cursor = xlNorthwestArrow
End Sub
Private Sub Workbook_Deactivate()
Application.Cursor = xlDefault
End Sub
Copy & paste these into the ThisWorkbook module of your workbook. If you are
new to macros, this link to Jon Peltier's site may be helpful:
http://peltiertech.com/WordPress/200...e-elses-macro/
Hope this helps,
Hutch
"RyanH" wrote:
I have a Worksheet Double Click Event in a particular Workbook. Is there a
way to change the mouse image from a "plus sign" to a typical "arrow"? This
would help to me more precise in double clicking cells.
--
Cheers,
Ryan