Inputmask question

B

Bill Johnson

I have a document number field that is formatted:
AA" PROP EMIS"AAAAAAA;0;_

The first two characters should actually be the same as what the user input
into another field, TYPE which could be BV or IV or WV etc.

Is there a way to have those two characters automatically fill in so the
user only keys in the last 7 digits?
 
B

Bill Johnson

on 12/078/2006 Jason Rice answered a question about Conditional Inputmask that
I think is going to work for me.

You can use something like this:

Select Case Country
Case "USA"
PostalCode.InputMask="00000\-9999;;_"
Case "Canada"
PostalCode.InputMask="" '- Sorry, I do not know the format for Canadian
Zip Codes
Case Else
Perhaps an error message?
End Select
 
Top