I have two gallerys.
One is opened by a button onSelect. The other I want to default to be open.
How can I ensure on the start of loading the app only the 1 certain gallery is shown?
Thanks.
On the OnCheck property of the Toggle control, enter:
Set(
varGallery2Visible,
true
)
On the OnUnCheck property of the Toggle control, enter:
Set(
varGallery2Visible,
false
)
On the OnVisible property of the Screen, enter only:
If(
Toggle1.Value,
Set(
varGallery2Visible,
true
),
Set(
varGallery2Visible,
false
)
)
On the Visible property of the Gallery, enter only:
varGallery2Visible
------------------------------------------------------------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved. Remember, you can accept more than one post as a solution.
If you like my response, please give it a Thumbs Up.
Imran-Ami Khan
getting error on the browsegallery1 visible property - i want to hide this one.. i do have a button to h ide it.. but i just want to make sure the first thing seen isnt this screne..
Use a Global Variable. For example on the OnVisible property of the Screen, enter:
Set(
varGallery2Visible,
false
)
On the Visible property of the Gallery you want to ensure is hidden, enter:
varGallery2Visible
------------------------------------------------------------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved. Remember, you can accept more than one post as a solution.
If you like my response, please give it a Thumbs Up.
Imran-Ami Khan
WarrenBelz
146,631
Most Valuable Professional
RandyHayes
76,287
Super User 2024 Season 1
Pstork1
65,991
Most Valuable Professional