convert .rtf to .htm

mrobles

Member
This works with word 10

DEF VAR WORD AS COM-HANDLE.
CREATE "Word.Application" WORD NO-ERROR.
WORD:VISIBLE = TRUE.
WORD:documents:OPEN("your_file.rtf").
WORD:activedocument:saveas("x1.htm",10).
RELEASE OBJECT WORD
 

tha_ndut

New Member
htm does not include the header and footer in the document .rtf.
Is the header and footer can be displayed also in htm?


thank you.
 
Top