colinmunnelly
Registered User.
- Local time
- Today, 16:58
- Joined
- Feb 26, 2002
- Messages
- 89
I want a text field to become invisible when a combo box has a null value selected. I have set the text box visible fiels to 'No' and placed this small peice of code in the 'Form_Current' section.
If Combo10 = null then
Txtname.visible = true
else
Txt.visible = false
End if
End sub
But this is not working. Anyone help?
If Combo10 = null then
Txtname.visible = true
else
Txt.visible = false
End if
End sub
But this is not working. Anyone help?