Hi!
I am trying to switch my application to late binding. I don't understand how I can access Word Document properties (like Word.WdLineStyle.wdLineStyleSingle).
I tried this:
But this is not right - error "Public member 'WdLineStyle' on type 'ApplicationClass' not found.", so how can I access this property when using late binding?
I am trying to switch my application to late binding. I don't understand how I can access Word Document properties (like Word.WdLineStyle.wdLineStyleSingle).
I tried this:
Code:
oWord = CreateObject("Word.Application")
...
oTable.Borders.OutsideLineStyle = oWord.WdLineStyle.wdLineStyleSingle