1
vote
1answer
25 views
Displaying design-time pop-up form for MaskedTextBox.Mask property in a run-time
Does anybody know if it's possible to open a pop-up form "Input Mask" which is displayed when you want to change Mask property of MaskedTextBox editor and you click on the details …
0
votes
1answer
46 views
Display caret position in textfield in Firefox or resize textfield as needed.
There is an annoying bug in Firefox which allows me to set the caret position in a textfield, but it does not automatically scroll that caret into view.
My particular issue arises …
0
votes
0answers
56 views
MaskedTextProvider class behaves differently from MaskedTextBox. Why?
I have a requirement whereby I have to implement the masking provided by MaskedTextBox, but without using that UI component in the business layer or say for doing CLR integration i …
1
vote
7answers
267 views
Convert Difference between 2 times into Milliseconds?
I have two masked TextBox controls and was wondering how I'd go about getting the time in each one and then converting the difference into milliseconds. Like, say in tb1 I write "1 …
0
votes
1answer
201 views
MaskedEditExtender Is Too Hard to Use For Money
The MaskedEditExtender does a good job of enforcing the rules, but my users have trouble typing into its TextBox.
I want to select all the contents of my TextBox when it gains foc …
0
votes
2answers
117 views
Hiding the PromptChar for .NET’s MaskedTextBox
Is there a way to use MaskedTextBox without displaying the PromptChar? I would like to specify a mask to validate input against, but I don't want any prompt characters to take up …
1
vote
1answer
165 views
Can the mask of a RadMaskedTextBox be changed via javascript?
I have a dropdown and a RadMaskedTextBox on a form. I want the mask applied to the RadMaskedTextBox to be determined by the selected value of the dropdown. Is there any way to do …
0
votes
3answers
205 views
Password Character not working on System.Windows.Forms.TextBox
Thats it really..
I am using VS2008 Express.
All the samples say just to set the PasswordChar, but nothing gets masked.
I also tried setting the "UseSystemPasswordChar" = true.. …
0
votes
1answer
788 views
How can I add mask textbox control in DataGridView in windows C#?
I want to add Mask textbox in datagridview in windows application.
The mask textbox will hold the mask for time value.
How this can be done in the windows datagridview? Any hel …
3
votes
2answers
482 views
Bind nullable DateTime to MaskedTextBox
I have a masked text box bound to a nullabe datetime, but when the date is blanked out, the validation on the masked text box won't complete. Is there a way to force this behaviou …
0
votes
1answer
380 views
How to add Autocomplete to a Masked Text Box?
In .Net, there is the MaskedTextBox and there is the TextBox which has an autocomplete member. Autocomplete doesn't seem to be available for MaskedTextBox. How do you get MaskedT …
0
votes
2answers
2k views
C# Input validation for a Textbox: float
This supposedly easy task gave me some headache. I simply want to let the user enter any text that succeeds float.TryParse into a Textboxish control.
I could use a normal TextBox …
1
vote
3answers
294 views
How do I prevent a keypress from updating a MaskedTextBox’s text?
I need to validate characters entered by the user in a MaskedTextBox. Which characters are valid depends on those already entered. I've tried using IsInputChar and OnKeyPress, bu …
1
vote
0answers
395 views
Applying MaskedTextBox control behavior to a property item field in PropertyGrid
Hi all,
I am working on C# and .NET. As we know that, the best way to stop users from entering invalid data into an input control is Masked TextBox by which we can assign a predef …
