Good day,
I encountered an issue wherein the visibility condition of a control card is not consistent all throughout the form.
I have 2 forms which depends on each other. The forms are on a different screen (needs a NEXT button to navigate through the screens). I have this control card from Form1 named Recess1 that has a "Visibility" value of
true
Then, I navigated to Form2. When I tried to check the value of it on the Form2 by putting the "Text" value of a field named lblVisibilityRecess1 as
Recess1.Visibility
it showed/returned "false".
I was expecting it to return "true" since it is what I placed on the Visibility property for Recess1.
So I tried to do a work around and set a variable varGenerallyTrue on the OnStart of my app:
Set(varGenerallyTrue,true);
Then when I checked lblVisibilityRecess1, it is now showing/returning "true".
Any thoughts why is this happening?
Thanks!
K.D.