In a Word macro, I open a document, and an InputBox requests a name. I want this name to then be placed into that document. In Word 6, this was accomplished in the following manner:
Name$ = InputBox$ ("Enter your name.", "Name"
Insert (Name$)
VBA does not have a comprable function for INSERT, and I have not used VBA enough to know how to make this work.
Any and all help would be greatly appreciated.
Name$ = InputBox$ ("Enter your name.", "Name"
Insert (Name$)
VBA does not have a comprable function for INSERT, and I have not used VBA enough to know how to make this work.
Any and all help would be greatly appreciated.