N
Nigel
I am trying to get a value from a field on a form but no matter what I do the
value returned is always 70, here is the code I am using
Sub SR()
Dim Message, Title, vusername
Message = "Is this Member Competing in Stationary Roping (Y or N)" ' Set
prompt.
Title = "Stationary Roping" ' Set title.
' Set default.
' Display message, title, and default value.
vSR = InputBox(Message, Title)
ActiveDocument.FormFields("Sr").Result = vSR
MsgBox ActiveDocument.FormFields("Level")
Exit Sub
End Sub
The message box is just a msg validating what value I am getting because I
am going to do some other stuff after that, where am I going wrong in getting
the value from a field
thanks
value returned is always 70, here is the code I am using
Sub SR()
Dim Message, Title, vusername
Message = "Is this Member Competing in Stationary Roping (Y or N)" ' Set
prompt.
Title = "Stationary Roping" ' Set title.
' Set default.
' Display message, title, and default value.
vSR = InputBox(Message, Title)
ActiveDocument.FormFields("Sr").Result = vSR
MsgBox ActiveDocument.FormFields("Level")
Exit Sub
End Sub
The message box is just a msg validating what value I am getting because I
am going to do some other stuff after that, where am I going wrong in getting
the value from a field
thanks