Hello !
Can you help me, please !
I have a bound textbox (to a field in a table).
I wish to check if this textbox become empty while I type into.
I have tried:
but with no success.
Seems that all this checks the value in the bound field, not what I see in my [Z{snip}] textbox.
Thank you !
Can you help me, please !
I have a bound textbox (to a field in a table).
I wish to check if this textbox become empty while I type into.
I have tried:
Code:
If txtValContor = "" Then...
If IsEmpty(txtValContor) Then...
If IsNull(txtValContor) Then...
Seems that all this checks the value in the bound field, not what I see in my [Z{snip}] textbox.
Thank you !
Comment