B
Berend Veldkamp
Kathryn said:Is there a way for me to set Word so I can see the position of a character
in inches from the left edge of the page? Telling me what column it is is
pretty useless for me.
Thanks.
Kathryn
This has been bothering me for a long time. Your post, and especially
the replies made me determined to solve it
I ended up with the following macro, and attached it to a toolbar
button. This shows the position relative to the page margin, if you
prefer position relative to the page, use
"wdHorizontalPositionRelativeToPage".
Sub ShowCursorPosition()
Application.StatusBar =
Str(Application.Selection.Information(wdHorizontalPositionRelativeToTextBoundary)
/ 72) + """"
End Sub
This macro doesn't give "live" information, but it's possible to run it
automatically whenever you move the cursor. Let me know if you need
instructions.
HTH, Berend