Is there a way that when a button has been pressed that a form can now be visible. I have a time sheet app with one form that has all the day on the top as buttons, so what I want is that when a new weekly entry has begun and they want to fill in for Monday, the form should not appear yet till the Monday button has been pressed.
Use this code in the OnSelect property of a button
Set(varShowMonday, true);
Then put the variable inside of the Visible property of the form.
varShowMonday
To hide the form once again use this code in the OnSelect property of some other button.
Set(varShowMonday, false);
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."
User | Count |
---|---|
195 | |
123 | |
86 | |
48 | |
41 |
User | Count |
---|---|
281 | |
163 | |
138 | |
80 | |
76 |