Code:
Sub fillAndOutlineColorSame()
'''''by John GDG '''''
'''''Apr,29,2010''''''
Dim s As Shape, sr As ShapeRange
Dim col As New Color
Set sr = ActivePage.FindShapes()
For Each s In sr
With s
If .Fill.Type = cdrUniformFill Then
col.CopyAssign .Fill.UniformColor
.Outline.Width = 0.003
.Outline.Color.CopyAssign col
End If
End With
Next s
End Sub