#1   Report Post  
Posted to microsoft.public.word.pagelayout
Rotorman Rotorman is offline
external usenet poster
 
Posts: 4
Default gray bars

How can I place alternating gray bars on my text document to make scanning
across the page easier?
  #2   Report Post  
Posted to microsoft.public.word.pagelayout
CyberTaz CyberTaz is offline
external usenet poster
 
Posts: 1,348
Default gray bars

What version of Word? It might be possible to "rig" something but not by way
of any built-in option.

Regards |:)
Bob Jones
[MVP] Office:Mac



On 6/13/08 10:40 AM, in article
, "Rotorman"
wrote:

How can I place alternating gray bars on my text document to make scanning
across the page easier?


  #3   Report Post  
Posted to microsoft.public.word.pagelayout
StevenM[_2_] StevenM[_2_] is offline
external usenet poster
 
Posts: 169
Default gray bars

To: Rotorman,

Is each line a paragraph? (A "paragraph" is merely text which ends with a
paragraph mark. By toggling the Show/Hide icon, you can see the otherwise
invisible paragraphs.) If so, would it be possible to put your text in a
table? If every text is a paragraph, you could place it into a one-column
table. Once the text is in a table. You could run the following macro.

'****
'* Macro: ShadeEveryOtherRow shades every other row of a table.
'* If you add new rows to the table, just re-run this macro.
'* If you want the first row to be shaded, change "bClear = True" to False.
'* There are a number of different shades of Grey possible,
'* wdColorGray05 is very light, wdColorGray50 is very dark,
'* by increments of five, there are shades between these two.
'****
Sub ShadeEveryOtherRow()
Dim oRow As Row
Dim bClear As Boolean
If Selection.Information(wdWithInTable) = False Then
MsgBox "The cursor must be positioned in the table you want to
shade." _
& vbCr & vbCr & "Position the cursor and run this macro
again."
Else
bClear = True
For Each oRow In Selection.Tables(1).Rows
If bClear Then
oRow.Shading.BackgroundPatternColor = wdColorWhite
Else
oRow.Shading.BackgroundPatternColor = wdColorGray10
End If
bClear = Not bClear
Next oRow
End If
End Sub

Steven Craig Miller

"Rotorman" wrote:

How can I place alternating gray bars on my text document to make scanning
across the page easier?

Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Word 2003 doc with revision bars doesn't show bars when opened in MikeNacIntl Microsoft Word Help 3 October 9th 07 01:19 PM
mail merge field appears gray when merged and then prints the gray T. Brown Mailmerge 4 October 24th 06 03:35 PM
Gray shading within gray brackets - not highlighting or forms? Elizabeth Garner Microsoft Word Help 2 December 5th 05 08:48 PM
How do I get gray to print as gray instead of black? slim Microsoft Word Help 1 November 8th 05 06:54 AM
Office 2000 Word tool bars and menu bars disappeared 405Jack Microsoft Word Help 1 August 14th 05 02:29 PM


All times are GMT +1. The time now is 06:00 PM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"