Denny,
I've tried to tie together the two previous answers and this is what I came
up with:
This macro temporarily creates a toolbar and a button on it with faceid
#1106. The copyface command then puts the faceid onto the clipboard. Then
the temporary toolbar is deleted. From there you can paste the faceid into
the picture property box as described in Charles' answer to your post. I'm
not sure the error handling is correct, but I was trying to make sure the
toolbar is deleted no matter what. Tested in XL 2000:
Sub test()
Dim cbar As CommandBar
Dim cbarbutton As CommandBarButton
On Error GoTo err_handler
Set cbar = CommandBars.Add
Set cbarbutton = cbar.Controls.Add
With cbarbutton
.FaceId = 1106
.CopyFace
End With
err_handler:
If Not cbar Is Nothing Then
cbar.Delete
End If
End Sub
hth,
Doug