S
sestyd
Can someone tell me what the deal is with this format
(just pretend no wraps):
..Paragraphs(2).Range.InlineShapes.AddPicture
FileName:=strImageName, LinkToFile:=False,
SaveWithDocument:=True
(which I have never before encountered - is it really a
method call? does it actually return a value?)
as opposed to this format:
Dim thisShape As InlineShape
Set thisShape = .Paragraphs
(2).Range.InlineShapes.AddPicture(strImageName, False,
True)
Vera
(just pretend no wraps):
..Paragraphs(2).Range.InlineShapes.AddPicture
FileName:=strImageName, LinkToFile:=False,
SaveWithDocument:=True
(which I have never before encountered - is it really a
method call? does it actually return a value?)
as opposed to this format:
Dim thisShape As InlineShape
Set thisShape = .Paragraphs
(2).Range.InlineShapes.AddPicture(strImageName, False,
True)
Vera