Hi, I am trying to learn more about field codes so I can interact with the end user and ouptut text paragraphs with variables based on their input.
In my document I have given them the option of selecting a customer type.
Based on the customer type I would like to ask a further question or give an additional drop down form with additional text fields to input.
I've tried including dropdown fields and text fields in the sections where it says {IF {Customer_Type} = "TRUE" "DROPDOWN, TEXT ETC." "FALSE"} but the forms can't be selected by the user.
So.. if its not possible to include form fields in the field codes is it possible to popup a selection on screen and store the Yes/No response in a variable?
Hope that makes sense!!
In VBA a Messagebox with yes or no is handled in this way
Hope that gets you on the right path.Code:Select Case MsgBox("This is your message the user will see", vbYesNo) Case vbNo 'enter code to take place on No event Case vbYes 'Enter your code to take place on Yes event End Select
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks