C
Chris
I am trying to open multiple input boxes when the word doc
is opened, then use the input from the boxes to place text
in the document. I can do this with one box using this
code:
Private Sub document_open()
Dim Message, Title, Default, MyValue
Message = "Please enter the number of Points for this
loan" ' Set prompt.
Title = "Enter Points" ' Set title.
Default = "0" ' Set default.
' Display message, title, and default value.
MyValue = InputBox(Message, Title, Default)
End Sub
then i use the send and replace code to find the text and
replace it.
Basically i want to have users of the document be able to
answer simple questions and have the document be formatted
with their answers. Help Please.
thanks,
Chris
is opened, then use the input from the boxes to place text
in the document. I can do this with one box using this
code:
Private Sub document_open()
Dim Message, Title, Default, MyValue
Message = "Please enter the number of Points for this
loan" ' Set prompt.
Title = "Enter Points" ' Set title.
Default = "0" ' Set default.
' Display message, title, and default value.
MyValue = InputBox(Message, Title, Default)
End Sub
then i use the send and replace code to find the text and
replace it.
Basically i want to have users of the document be able to
answer simple questions and have the document be formatted
with their answers. Help Please.
thanks,
Chris