Top "Maskedtextbox" questions

A useful .NET control that allows a user to display and edit values based on the mask defined.

How to set masked text box values to decimal numbers?

I am new to C# Here i am using masked textbox and set the mask as 00.0. And in database respective …

c# winforms decimal maskedtextbox
Masked TextBox with decimal numbers

In my window application I need masked textbox which accept real decmal numbers. eg. 1) 1.56 2) 22.34 3) 123.34 4) 12312.34 This all value should be valid. …

c# winforms textbox decimal maskedtextbox
In C# windows forms how a MaskedTextBox for email address can be implemented

public void Form1_Load(Object sender, EventArgs e) { // Other initialization code mtxtEmailID.Mask = ".........."; what should be the Mask Type in …

c# regex winforms email-validation maskedtextbox
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 …

.net winforms user-interface maskedtextbox
Is it possible to use KnockoutJS with a masked input?

I´m using that plugin : https://github.com/plentz/jquery-maskmoney to format my money editor... I tried to use KnockoutJS …

knockout.js maskedtextbox
Right to left typing in text box?

I have a Currency Textbox with a mask. Mask is shown in textbox as --------.-- So user types in …

c# .net winforms textbox maskedtextbox
C# masked text box

How can I change masked text box properties for IP address input? For example private void Interneta_savienojums_Load(object …

c# ip maskedtextbox
Having a MaskedTextBox only accept letters

Here's my code: private void Form1_Load(object sender, EventArgs e) { maskedTextBox1.Mask = "*[L]"; maskedTextBox1.MaskInputRejected += new MaskInputRejectedEventHandler(maskedTextBox1_MaskInputRejected); } …

c# winforms maskedtextbox
Masked Input Plugin and regular expressions (for decimal numbers)

I have a text input field in which I want to insert just numbers, then a comma, and then just …

jquery jquery-plugins maskedtextbox maskedinput
Email mask for MaskedTextBox in C#

Does anyone have a ready email mask for MaskedTextBox? e.g. [email protected] / [email protected] / aaaa...…

c# textbox maskedtextbox