ResultForm.richTextBox1.Text += "Return Result # " + (beginResultPage + i + 1).ToString() + "\r"; ResultForm.richTextBox1.Text += gresult.resultElements[i].title + "\r"; ResultForm.richTextBox1.Text += gresult.resultElements[i].snippet + "\r"; ResultForm.richTextBox1.Text += gresult.resultElements[i].URL + "\r\r"; ResultForm.richTextBox1.Text = ResultForm.richTextBox1.Text.Replace("**", ""); ResultForm.richTextBox1.Text = ResultForm.richTextBox1.Text.Replace("**", ""); ResultForm.richTextBox1.Text = ResultForm.richTextBox1.Text.Replace(" ", " ");
Hi reading from the codes above, i want to bold some of the results that is recieved through the richTextBox control in the form. For eg, if i want to make bold the title that is produced using this line of code, ResultForm.richTextBox1.Text += gresult.resultElements[i].title + "\r"; What do i need to add in to ensure that the results is in bold? frossie