Hollis
Registered User.
- Local time
- Today, 20:13
- Joined
- Nov 20, 2008
- Messages
- 13
Hi All,
I am making a details list with names, address, phone numbers all the usual stuff.
For the phone numbers, on the form I have seperate inputs for a mobile and landline. Formatting the input mask for these is easy as the are two seperate objects.
Landline mask: !\09\ 0000\ 0000;;_
Comes out as: 03 1111 1111
Mobile number mask: !\0999\ 000\ 000;;_
Comes out as: 0411 111 111
Now on the form I am putting these two feilds in the same text box so that if you have one and not the other it shows up in line, and if you have both the text box will grow and the second number will be put under neith.
My problem is trying to have the seperate input masks applied to the two seperate feilds. I have no idea how to do this.
This is what I have to show the two numbers:
=[ContactNumber] & " " & [MobileNumber]
And they come out like:
311111111 411111111
Thanks
I am making a details list with names, address, phone numbers all the usual stuff.
For the phone numbers, on the form I have seperate inputs for a mobile and landline. Formatting the input mask for these is easy as the are two seperate objects.
Landline mask: !\09\ 0000\ 0000;;_
Comes out as: 03 1111 1111
Mobile number mask: !\0999\ 000\ 000;;_
Comes out as: 0411 111 111
Now on the form I am putting these two feilds in the same text box so that if you have one and not the other it shows up in line, and if you have both the text box will grow and the second number will be put under neith.
My problem is trying to have the seperate input masks applied to the two seperate feilds. I have no idea how to do this.
This is what I have to show the two numbers:
=[ContactNumber] & " " & [MobileNumber]
And they come out like:
311111111 411111111
Thanks