change cursor from dot to line?

  • Thread starter Thread starter alastairg
  • Start date Start date
A

alastairg

I am using Office 2003. My cursor/insertion point has suddenly changed from a
line I to a dot. I can change it back by altering zoom to 500% and back
again, but this does not save the changes and I have to perform this
operation every time I open word.
any ideas?
 
What you can do is create an auto macro that changes the zoom automatically
each time you start Word:

Sub AutoNew()
With ActiveWindow.View.Zoom
.Percentage = 500
.Percentage = 100
End With
End Sub

Sub AutoOpen()
With ActiveWindow.View.Zoom
.Percentage = 500
.Percentage = 100
End With
End Sub

For more, see http://www.gmayor.com/installing_macro.htm.
 
Back
Top