Hi Guys, the masked text box in my C# application has a customed format as >LLL/LL/LL/000/0/0000/0000. When the application loads it will be like ( / / /
/ / / ). The user can insert any characters in the first 7 blank spaces (in the place of L's) and it will allow any numbers in the remaining 12 blank
spaces (in the place of 0's). When the user finishes inserting, the masked text box displays something like ABC/DE/FGH/012/3/4567/8900.
However i want to make a restriction on the first 3 characters(ABC) . I want the application to insert the first 3 charactes (i.e ABC to be some other pre-defined character, say CHW and the user is expected to fill the remaining.)
Can anybody help me on this?
Thanks,
/ / / ). The user can insert any characters in the first 7 blank spaces (in the place of L's) and it will allow any numbers in the remaining 12 blank
spaces (in the place of 0's). When the user finishes inserting, the masked text box displays something like ABC/DE/FGH/012/3/4567/8900.
However i want to make a restriction on the first 3 characters(ABC) . I want the application to insert the first 3 charactes (i.e ABC to be some other pre-defined character, say CHW and the user is expected to fill the remaining.)
Can anybody help me on this?
Thanks,
Comment