I am writing a macro in Word 2003 I am outputting a picture and then putting a table after it. How do i put a space between the picture and the table? Code Snippet below.
'Outputting the picture
set objshape = ThisDocument.shapes
objshape.AddPicture
'Between this picture and the table i need a space
'it is currently outputtting them on top of each other
'Setting up table
Set objrange = ThisDocument.Range
ThisDocument.Tables.Add objrange, 1, 2
set objtable = ThisDocument.Tables(1)
...
'Outputting the picture
set objshape = ThisDocument.shapes
objshape.AddPicture
'Between this picture and the table i need a space
'it is currently outputtting them on top of each other
'Setting up table
Set objrange = ThisDocument.Range
ThisDocument.Tables.Add objrange, 1, 2
set objtable = ThisDocument.Tables(1)
...