I am opening a word document as follows
Case
"doc"objWord = CreateObject("Word.Application")
objDoc = objWord.Documents.Open(OFD1.FileName)
objDoc.Select()
rtbText.Text = objWord.Selection.Text
objDoc.Close()
objWord.Quit()
My question is, how after the document has been changed, can I save it as a word document keeping all its formating