Yes, I know I am not the smartest apple in the bunch.
I am using a StringBuilder to try and get bold and non-bold characters together in the Form.Text field. Am I going to have to do something with the OnPaint Method or is this just super easy and I am super slow at catching on?
Trying to get --> THISSUCKS into this.Text;
System.Text.StringBuilder ControlBarText = new System.Text.StringBuilder( "" );
ControlBarText.AppendFormat(IFormatProvider. "<strong>");
ControlBarText.Append( "<strong>" );
ControlBarText.Append( "THIS" );
ControlBarText.Append( "</strong>" );
ControlBarText.Append( "SUCKS" );
ControlBarText.Append( appendText );
this.Text = ControlBarText.ToString();
I am using a StringBuilder to try and get bold and non-bold characters together in the Form.Text field. Am I going to have to do something with the OnPaint Method or is this just super easy and I am super slow at catching on?
Trying to get --> THISSUCKS into this.Text;
System.Text.StringBuilder ControlBarText = new System.Text.StringBuilder( "" );
ControlBarText.AppendFormat(IFormatProvider. "<strong>");
ControlBarText.Append( "<strong>" );
ControlBarText.Append( "THIS" );
ControlBarText.Append( "</strong>" );
ControlBarText.Append( "SUCKS" );
ControlBarText.Append( appendText );
this.Text = ControlBarText.ToString();