
All content in google search results are "how to get radion group or a combobox's current select item value? "
get value
get value
get value....
not a little:
set value
set value
set value...
Hi,
You will not find a set formula, but we can find a workaround :
On the button select property, set the default value :
Button.OnSelect = Set(_varDefaultSelected, [DEFAULT VALUE]) ; Reset(ComboBox)
Then, use this variable in the default property of the component :
ComboBox.Default = _varDefaultSelected
//If the component already has a default value
ComboBox.Default = Coalesce(_varDefaultSelected, [ANOTHER DEFAULT])
So, then you click on the button, you'll store the default value and by resetting the component, it will automatically use the default value that you put in the Default property
Regards,