Ok,

So I'm trying a different approach after MUCH reading on the 'Net:

a) create a table
b) insert text/image content into table
c) align cell of table to the right

This seems to be working rather well, but once again, I'm still running into problems getting the alignment to work right. I can create the table, with one row and insert the data into it without issue. However, I still cannot get the alignment of the cell data to work.

Here's some basic code on how I started this plan of attack:

[VBA]
Set objWord = CreateObject("Word.Application")
objWord.Visible = True
Set objDoc = objWord.Documents.Add()
Set objSelection = objWord.Selection
Set objRange = objDoc.Range()
objDoc.Tables.Add objRange, 1, 1
set objTable = objDoc.Tables(1)
[/VBA]

This creates my table with 1 row. However, I've tried several methods to get the alignment of the table content to align to the right without success:

[VBA]
Set objSelection = objTable.Row(1).Range.Select
objSelection.ParagraphFormat = wdAlignParagraphRight
[/VBA]

I get the idea I have to select the right object and work with it, I've even run the Macro recorder to make sure I'm not missing anything but when I run my script (saved as foo.vbs) it creates the table, injects the content but does not align the content to the right.

What am I missing?