I have several buttons on the screen that populate the date and time, I want to be able to view those buttons only when i'm starting a new form ad when I want to edit, but not when it's on the view page as employees will be confused seeing it there thinking it would work and add in the date/time. How will I go about it.
What I have now in the visible function on one of the buttons is:
f(Form1.Mode = FormMode.New, true ,false)
It works just when I start a new form but when I want to edit the buttons don't show up also the other buttons use the same formula and whenever I enter the edit screen they also don't show up even if I haven't used them yet.
Solved! Go to Solution.
Use this
If( Form1.Mode <> FormMode.View, true, false)
Use this
If( Form1.Mode <> FormMode.View, true, false)
User | Count |
---|---|
222 | |
98 | |
95 | |
55 | |
34 |
User | Count |
---|---|
272 | |
108 | |
106 | |
64 | |
60 |