I have one textbox which has the following text.
TextBox1.Text = "The above materials will be delivered at Site. One copy of the Delivery Challan / Invoice to be send to Head Office."
In that, I want to make the following text "One copy of the Delivery Challan / Invoice to be send to Head Office" as in Capital Letters and also in Bold.
I tried the following coding:
TextBox1.Font.Bold = true;
But it made all the text as bold. How do I make it?