Hey everybody,
After looking on the internet, I found that a way to create word documents is using the win32com object.
The easy part is
winapp = win32com.client .Dispatch("Word .Application")
windoc = winapp.Document s.Add()
And as far as I have found you have the contents and font part, but how can I add images, tables, headers, footers, ...
Is there an API somewhere, or a book somewhere that would explain to me how this works?
I have found a link to the Word Object Model from Microsoft, but that is a bit of a mess to work with.
Thx in advance
After looking on the internet, I found that a way to create word documents is using the win32com object.
The easy part is
winapp = win32com.client .Dispatch("Word .Application")
windoc = winapp.Document s.Add()
And as far as I have found you have the contents and font part, but how can I add images, tables, headers, footers, ...
Is there an API somewhere, or a book somewhere that would explain to me how this works?
I have found a link to the Word Object Model from Microsoft, but that is a bit of a mess to work with.
Thx in advance
Comment