Romio_1968
Member
- Local time
- Today, 23:10
- Joined
- Jan 11, 2023
- Messages
- 126
I have a Combo with the source on a query.
On loading the Form, the Combo value is set to
Me.DomainCombo_1 = ""
In my understanding, this will load a string instance of zero length as Combo value.
No change or other interaction with the control before saving, so up to the end it keeps sa initial loaded value
On save, I want to check if any value was loaded in the Combo
Using an If statment, by checking
For the test> If IsNull(Me.Combo) Or Len(Me.Combo) = 0, the answer is TRUE
For the test> If ((Nz([Media_Box], 0) = 0) , the answer is FALSE
Can anybody explain me the difference?
Thank You
On loading the Form, the Combo value is set to
Me.DomainCombo_1 = ""
In my understanding, this will load a string instance of zero length as Combo value.
No change or other interaction with the control before saving, so up to the end it keeps sa initial loaded value
On save, I want to check if any value was loaded in the Combo
Using an If statment, by checking
For the test> If IsNull(Me.Combo) Or Len(Me.Combo) = 0, the answer is TRUE
For the test> If ((Nz([Media_Box], 0) = 0) , the answer is FALSE
Can anybody explain me the difference?
Thank You
Last edited: