I currently have a mask of #9.99 The # is there for '+' or '-' sign.
When I set the value of the Masked text box, where the value is negative it will give me the correct value.
However when the value is positive it gives me the incorrect answer.
Here is actual code to test it out. Eg.
private void Form1_Load(object sender, EventArgs e){
double value = -0.14;
double value2 = 0.14;
maskedTextBox1.Text = value.ToString();
maskedTextBox2.Text = value2.ToString();
}
I need it to be _0.14
Setting the Property from RightToLeft does not work because I do not want the user to type from the right to left.
Any help is greatly appreciated.