I have built a form with textboxes & when I press the finish button it inserts the text into a document. However I want the text to overwrite rather than insert.I've used the following code:
Selection.GoTo wdgotobookmark, Name:="B1"
Overwrite = true
Selection.TypeText Textbox1.Text
The reason I want to overwrite is that the forms have lines (made up of underscores) where I insert the text & I want to overwrite thise lines with the inserted text.
Selection.GoTo wdgotobookmark, Name:="B1"
Overwrite = true
Selection.TypeText Textbox1.Text
The reason I want to overwrite is that the forms have lines (made up of underscores) where I insert the text & I want to overwrite thise lines with the inserted text.