Input Mask HELP!!!!

sysop470

Registered User.
Local time
Yesterday, 18:26
Joined
Mar 25, 2005
Messages
87
I have created an input mask but it depends what type of currency is..

If Me![Currency Counter] = "1" Then
Me![Serial No].InputMask = "LL00 000000"
Else
If Me![Currency Counter] = "2" Then
Me![Serial No].InputMask = "LL-00000000-L"
endif
endif

The problem is that if for example the currency counter = 2 the serial must be
AA-11111111-A but it is saving AA1111111A and i dont want it to save it like this.

Any help pls...
 
Change the input mask and tell it to not save the mask with the data.
 
Thanks.. I solved the problem...
 

Users who are viewing this thread

Back
Top Bottom