Question:
In a pop-up list, how do you get the value associated with the default value to appear in the listbox before clicking on the field? For example, I have a pop-up list containing marital statuses. I want ‘Single’ to appear in the listbox windowwithout the user having to scroll the list. How can I achieve this?
Answer: If your Translation
To set a value in a list box, all you have to do is to set the Value property of the list box to the actual value of the entry in the list box. To make a value the default for a pop-up list, you must set the DefaultValue property to the actual value of the desired item.Single = 1
your DefaultValue for the pop-up should be 1 to make ‘Single’ the default value.
Married = 2
Divorced = 3
Widowed = 4