change cursor from dot to line?

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?
 
S

Stefan Blom

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top