G
Guest
How can I force table entries, through a forms text box, to be a certain
length, and to ignore strings that are not long enough?
length, and to ignore strings that are not long enough?
Shawn said:How can I force table entries, through a forms text box, to be a certain
length, and to ignore strings that are not long enough?
Klatuu said:oh, that is quite different, but also easy:
In the After Update event:
If Len(Me.txtPkgID) <> 16 Then
'Do what ever you need to do for a wrong length
End If