Inputmask question

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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?
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top