L
Luciano
I have some controls in a form wit h an Inputmask. Depending of my client, I
must have another inputmask for these controls. (For Example: the inputmask
for a telephone in Belgium(BE) is "000000000" (9X0) and in The
Netherlands(NL) "0000000000" (10X0). In VBA it will be something like this:
If Country = "BE" then
forms!frmReservations!txtTel.Inputmask="0000000000"
end if
If Country="NL" then
forms!frmReservations!txtTel.Inputmask="0000000000"
end if
In which module have I to write this code?
must have another inputmask for these controls. (For Example: the inputmask
for a telephone in Belgium(BE) is "000000000" (9X0) and in The
Netherlands(NL) "0000000000" (10X0). In VBA it will be something like this:
If Country = "BE" then
forms!frmReservations!txtTel.Inputmask="0000000000"
end if
If Country="NL" then
forms!frmReservations!txtTel.Inputmask="0000000000"
end if
In which module have I to write this code?