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";
Hi 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 title is in bold? I tried with FontStyle.Bold but i can't seem to get this right. Help!,
frossie