donkey9972
Registered User.
- Local time
- Today, 13:15
- Joined
- May 18, 2008
- Messages
- 42
Hi,
I have a form which does a password change using 2 unbound fields. I want the fields to require a minimum of 6 characters but I do not know if that is done in the validation rule or using VBA. Stupid me I tried to do it in the table it updates to, but since the fields are unbound... well it didn't work .
I did try this on the fields on the form in the Validation Rule:
But it only gave me this error:
The expression [CLM_no] you entered in the form control's ValidationRule property contains the error The object doesn't contain the Automation object 'CLM_no.'.
Any help to point me in the right direction?
I have a form which does a password change using 2 unbound fields. I want the fields to require a minimum of 6 characters but I do not know if that is done in the validation rule or using VBA. Stupid me I tried to do it in the table it updates to, but since the fields are unbound... well it didn't work .
I did try this on the fields on the form in the Validation Rule:
Code:
Len([CLM_no]) = 6
But it only gave me this error:
The expression [CLM_no] you entered in the form control's ValidationRule property contains the error The object doesn't contain the Automation object 'CLM_no.'.
Any help to point me in the right direction?