I had for several years an elipse shape macro I added to documents, but no more in 2010.
when I click the mouse and do the motions I get Zilch.
so I saw using keyboard shortcuts and now I get 2 subs of ????
What is this? where is the elipse shape in here?
I created an elipse set back fill to none and made the color red. and this is the code
DougP
when I click the mouse and do the motions I get Zilch.
so I saw using keyboard shortcuts and now I get 2 subs of ????
What is this? where is the elipse shape in here?
I created an elipse set back fill to none and made the color red. and this is the code
Code:
Sub ImageAddFrame_TextWrapTB()
'
' ImageAddFrame_TextWrapTB Macro
Dim Shp As Shape
With Selection
If .InlineShapes.Count = 1 Then
Set Shp = .InlineShapes(1).ConvertToShape
Else
Set Shp = .ShapeRange(1)
End If
With Shp
With .WrapFormat
.Type = wdWrapTopBottom
.DistanceTop = InchesToPoints(0.1)
.DistanceBottom = InchesToPoints(0.1)
End With
With .Line
.Weight = 2#
.ForeColor.RGB = RGB(0, 0, 0)
End With
End With
End With
'
End Sub
Imp Case Is <= Option Private Module ' <<< what is this it added to teh bottom of the Module
'
' RedElipse Macro
'
'
Selection.MoveRight Unit:=wdCharacter, Count:=1
End Sub
DougP