I used form user control(instead of form in C# winform).
In this user control, i have one combo box and one textbox.
When combo box is changed, for selected value(1 or 2 or 3),text of textbox start with 1 or 2 or 3 respectively.
User can add 6 digit number in textbox but should not able to delete or change 1 or 2 or 3.
how do i do?
See if this will work, it is handling the TextChanged Event to verify that the first Character is the value from the ComboBox selection.