Having trouble getting help?
Contact Support
Contact Support
Banner Text Support in Windows Forms Integer TextBox
4 Feb 20251 minute to read
The IntegerTextBox control can display banner text in the text field, at run time. A BannerTextProvider should be available for this purpose. Also, we need to set AllowNull, NullString and Text properties as below, to make this feature effective.
this.integerTextBox1.AllowNull = true;
this.integerTextBox1.NullString = "";
this.integerTextBox1.Text = "";
Me.integerTextBox1.AllowNull = True
Me.integerTextBox1.NullString = ""
Me.integerTextBox1.Text = ""