Hi,
I am sorry, I am not quite following.
They come in.
They click the Tab Thingee
The drop downs get set to XYZ by the Switch
But they don't save but they exit the form/screen???
and you want it to reset to the Default???
If that's the case, then it depends on what you are doing, but, you have to Reset the Tab stuff so that its not longer has a selection.
I cannot see the Tab list you are referring too, but you want to reset it so that it goes back to its default (blank maybe??)
I would use the OnVisible property to reset these things.
1. You can create a Context or Global Variable, let's call it ShouldIReset
2. Put that Variable (which needs to be a boolean) in ALL the controls you want to reset on this screen/form
3. In the OnVisible do this
Set(ShouldIReset,true);
Set(ShouldIReset,false);
This will force any control you want to reset... and then it won't have what they selected before in it.
If I understood your need.