Peter's Data Entry Suite includes four textboxes that handle numeric data. Here are the features of each numeric TextBox.
Positive and negative <des:IntegerTextBox ID="IntegerTextBox1" runat="server" Width="100px" /> <br/> Positive only <des:IntegerTextBox ID="IntegerTextBox2" runat="server" Width="100px" ShowThousandsSeparator="True" AllowNegatives="False" ShowSpinner="True" />
Positive and negative <des:DecimalTextBox ID="DecimalTextBox1" runat="server" Width="100px" /> <br/> Positive only <des:DecimalTextBox ID="DecimalTextBox2" runat="server" Width="100px" ShowThousandsSeparator="True" AllowNegatives="False" ShowSpinner="True" />
Without Currency Symbol <des:CurrencyTextBox ID="CurrencyTextBox1" runat="server" Width="100px" /> <br/> With Currency Symbol <des:CurrencyTextBox ID="CurrencyTextBox2" runat="server" Width="100px" ShowThousandsSeparator="True" AllowNegatives="False" UseCurrencySymbol="True" ShowSpinner="True" />
Integer only <des:PercentTextBox ID="PercentTextBox1" runat="server" Width="40px" /> <br/> Decimal <des:PercentTextBox ID="PercentTextBox2" runat="server" Width="40px" ShowSpinner="True" WholeNumbersOnly="False" MaxDecimalPlaces="2" />