I would like a text control to be formatted such that dashes or /'s are fixed, such as entering a phone number in the format of XXX-XXX-XXXX. As a user enters the numbers, the dashes stay fixed. Any clues?
Use the event structure. On key down event, check length of your string control. If length = 3, concatenate the dash and wire it to the control's local variable. If length = 7, concat another dash. Do similar thing for dates.