![]() |
|
|
|
#1
|
|||
|
|||
|
Step through this version of your original code. It won't hang because the inlineshape is no longer selected:
Code:
Sub Whine1()
Dim oILS As InlineShape
With Selection
If .InlineShapes.Count <> 1 Then Exit Sub
Set oILS = .InlineShapes(1)
.Collapse wdCollapseEnd
End With
With oILS.Borders
.Enable = True
.OutsideLineWidth = wdLineWidth300pt
.OutsideLineStyle = wdLineStyleSingle
.OutsideColorIndex = wdBlack
End With
End Sub
and this, it will format all the inlineshapes and shapes in the main text storyrange of the document. Code:
Sub WhineII()
Dim oILS As InlineShape
Dim oShp As Shape
For Each oILS In ActiveDocument.InlineShapes
With oILS.Borders
.Enable = True
.OutsideLineWidth = wdLineWidth300pt
.OutsideLineStyle = wdLineStyleSingle
.OutsideColorIndex = wdBlack
End With
Next oILS
For Each oShp In ActiveDocument.Shapes
With oShp
.Line.ForeColor.RGB = RGB(0, 0, 0)
.Line.Weight = 4
.Line.DashStyle = msoLineSolid
End With
Next
End Sub
|
|
#2
|
|||
|
|||
|
Grumbling
![]() ![]() ![]() You should just read my original Q: "How can I change it to work on "flowting pictures too ?" and now you did ... and TOO made an exelent solution - THX ! ![]()
|
|
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
Inserting and formatting a picture
|
BLUEPUPIL | Word VBA | 2 | 04-28-2019 03:14 PM |
Picture formatting.
|
voyagerone | Drawing and Graphics | 3 | 05-31-2016 09:55 PM |
| Picture Formatting Problem | thowes2 | Word | 1 | 04-24-2013 05:24 PM |
Picture Formatting Issues
|
mayj | Word | 1 | 04-02-2013 03:09 AM |
insert object or picture, strange formatting layout
|
qwertyjjj | Word | 5 | 01-10-2013 09:49 AM |