Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.word.pagelayout
|
|||
|
|||
![]()
Is there a way to select multiple text boxes without having to step through a
whole document, say with a Find or Select All type parameter or by running a macro? I have a number of text boxes and want to be able to toggle them all to be either in fron or behind the normal page text. |
#2
![]()
Posted to microsoft.public.word.pagelayout
|
|||
|
|||
![]()
You can select the first text box, scroll the document and hold Shift as you
click additional text boxes. But using a macro would probably be easier. In its simplest form, you can use something like this: Sub testing() Dim s As Shape For Each s In ActiveDocument.Shapes If s.Type = msoTextBox Then s.WrapFormat.Type = wdWrapBehind 'or wdWrapFront End If Next s End Sub Observe that this macro sets the same option for all text boxes, no matter what the individual setting for each text box happens to be when you run the macro. For assistance, see http://www.gmayor.com/installing_macro.htm. -- Stefan Blom Microsoft Word MVP "Gazzit" wrote in message ... Is there a way to select multiple text boxes without having to step through a whole document, say with a Find or Select All type parameter or by running a macro? I have a number of text boxes and want to be able to toggle them all to be either in fron or behind the normal page text. |
#3
![]()
Posted to microsoft.public.word.pagelayout
|
|||
|
|||
![]()
Thanks Stefan, it works a treat.
"Stefan Blom" wrote: You can select the first text box, scroll the document and hold Shift as you click additional text boxes. But using a macro would probably be easier. In its simplest form, you can use something like this: Sub testing() Dim s As Shape For Each s In ActiveDocument.Shapes If s.Type = msoTextBox Then s.WrapFormat.Type = wdWrapBehind 'or wdWrapFront End If Next s End Sub Observe that this macro sets the same option for all text boxes, no matter what the individual setting for each text box happens to be when you run the macro. For assistance, see http://www.gmayor.com/installing_macro.htm. -- Stefan Blom Microsoft Word MVP "Gazzit" wrote in message ... Is there a way to select multiple text boxes without having to step through a whole document, say with a Find or Select All type parameter or by running a macro? I have a number of text boxes and want to be able to toggle them all to be either in fron or behind the normal page text. |
#4
![]()
Posted to microsoft.public.word.pagelayout
|
|||
|
|||
![]()
You are welcome.
-- Stefan Blom Microsoft Word MVP "Gazzit" wrote in message ... Thanks Stefan, it works a treat. "Stefan Blom" wrote: You can select the first text box, scroll the document and hold Shift as you click additional text boxes. But using a macro would probably be easier. In its simplest form, you can use something like this: Sub testing() Dim s As Shape For Each s In ActiveDocument.Shapes If s.Type = msoTextBox Then s.WrapFormat.Type = wdWrapBehind 'or wdWrapFront End If Next s End Sub Observe that this macro sets the same option for all text boxes, no matter what the individual setting for each text box happens to be when you run the macro. For assistance, see http://www.gmayor.com/installing_macro.htm. -- Stefan Blom Microsoft Word MVP "Gazzit" wrote in message ... Is there a way to select multiple text boxes without having to step through a whole document, say with a Find or Select All type parameter or by running a macro? I have a number of text boxes and want to be able to toggle them all to be either in fron or behind the normal page text. |
Reply |
Thread Tools | |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Selecting multiple text boxes | Microsoft Word Help | |||
multiple text boxes | Page Layout | |||
Selecting multiple non-adjacent lines of text | Microsoft Word Help | |||
Selecting 3+ text boxes in Word | Microsoft Word Help | |||
selecting multiple lines of text | Microsoft Word Help |