DoubleTextBox Max and Min Values

I''ve tried creating a DoubleTextBox with a double value of 0.00001. This works fine. However when I set the MaxValue to 1 and the MinValue to 0.000001, I get a run time value of zero displayed. My MaxLength is 32767 and my NumberDecimalDigits is 7.

1 Reply

AR Anupama Roy Syncfusion Team August 29, 2005 10:20 AM UTC

Hi, Please set the UseNullString property to true and specify the NullString to be displayed as shown below: this.doubleTextBox4.UseNullString = true; this.doubleTextBox1.NullString = "0.00001"; Please let me know if this helps. Regards, Anu.

Loader.
Up arrow icon