View Single Post
  #1   Report Post  
Larry
 
Posts: n/a
Default creating rtf document from within Word

Thanks.

Larry



JB wrote:
Larry wrote:

Hi, all,

Is it possible to create an .rtf document from within Word using
VBA? Sometimes I open and work on existing rtf documents in Word,
but I'm wondering if it's possible to create them from within Word
as well.

Larry



Yes just save as .rtf

Dim MyDialog As Dialog
Set MyDialog = Dialogs(wdDialogFileSaveAs)

With MyDialog
.Name = strRecDocName & ".rtf"
.Format = wdFormatRTF
.addtomru = 0
End With

HTH

J