Hello there!
Question?
I have this button that is disabled if the form is in Edit mode.
Display Mode = If(!(MyForm.Mode = FormMode.Edit) = false, DisplayMode.Disabled,DisplayMode.Edit)
I would like to do the same but with two conditions. I mean if the form is either in Edit mode or new mode.
Any help please?
Thanks in advance
Solved! Go to Solution.
Like this...
If(
MyForm.Mode = FormMode.Edit Or MyForm.Mode = FormMode.New,
DisplayMode.Disabled,
DisplayMode.Edit
)
---
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."
Like this...
If(
MyForm.Mode = FormMode.Edit Or MyForm.Mode = FormMode.New,
DisplayMode.Disabled,
DisplayMode.Edit
)
---
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."
F
A
N
T
A
S
T
I
C
!!!!!!!!!!!!!!!!!!!!!!
User | Count |
---|---|
210 | |
94 | |
84 | |
49 | |
39 |
User | Count |
---|---|
265 | |
104 | |
104 | |
61 | |
59 |