J
Jake
How do I paste text (from a variable in VBA code) into a new word document? So far I have:
Set oWord = CreateObject("Word.Application")
oWord.Visible = True
Set dWord = oWord.Documents.Add
I don't know how to place the text represented by the variable strText into this document. Help?
Thanks!
Jake
Set oWord = CreateObject("Word.Application")
oWord.Visible = True
Set dWord = oWord.Documents.Add
I don't know how to place the text represented by the variable strText into this document. Help?
Thanks!
Jake