[RESOLVED] Basic Word VBA question - text into document
Currently I am doing this
ThisDocument.Range.Text = ThisDocument.Range.Text & "Vendor: " & cboApp.Value & " With software: " & cboApplication.Value & " App Version: " & cboAppRev.Value & " On SDK version: " & cboSDK.Value & vbNewLine
To get text into a document. There has to be a better way than selecting it all, and pasting it all plus new stuff in there.
Very simple question, just don't know the answer. This would be a big help.
Thanks
Re: Basic Word VBA question - text into document
Selection.TypeText (text) wow simple