Is there a way to reset also a selected entry in a dropdown field to the default (first) entry in the list?
With "ResetDialogAction>" I can reset all dialog elements to their default values exept the selected Entry of a combobox.
Thanks for any ideas in advance.
Reset selected entry in DropDown box to the default entry
Moderators: JRL, Dorian (MJT support)
Set the variable DialogName.ComboBoxName.ItemIndex to 0 (zero) then do your ResetDialogAction>
Code: Select all
Let>Dialog1.msComboBox1.ItemIndex=0
ResetDialogAction>Dialog1