Greetings all,
I have a test canvas app. three checkboxes and a button.
If(Checkbox1,
Navigate(msgScreen, ScreenTransition.None,{alertMsg:"checkbox 1"}),
//else-default
Navigate(msgScreen, ScreenTransition.None,{alertMsg:"No checkbox 1"})
);
If(Checkbox2,
Navigate(msgScreen, ScreenTransition.None,{alertMsg:"checkbox 2"}),
//else-default
Navigate(msgScreen, ScreenTransition.None,{alertMsg:"No checkbox 2"})
);
If(Checkbox3,
Navigate(msgScreen, ScreenTransition.None,{alertMsg:"checkbox 3"}),
//else-default
Navigate(msgScreen, ScreenTransition.None,{alertMsg:"No checkbox 3"})
)
In other environments, the program would check status of Checkbox 1 first, then execute the check for Checkbox 2...etc
I know I can use 'Notify', but I was looking for a more general way to enforce order of execution, and disable multi-threading for an individual screen. Any advice?
Doug