Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Richtextbox -> ListBox

Status
Not open for further replies.
I would suggest you find all instances of the "Return Character" in your RTF. Then break it up into individual chunks to add to your listbox.

public void ParseRTF(string myRTF)
{

while (myRTF.Length > 0)
{
//Find the index of the RTF Return Character
int index = myRTF.IndexOf("\r\n");
//Extract the RTF to that point
string temp = myRTF.Substring(0, index);
//Trim the extracted part of the RTF
myRTF = myRTF.Substring(index, myRTF.Length - index);

//Add the item to your list box
listBox1.Items.Add(temp);
}
}

Something to that effect.

<insert stupid signature here>
 
I created a new project and tried this and for some reason it does not work.

private void button1_Click(object sender, System.EventArgs e)
{
String myRTF = richTextBox1.Rtf;
while (myRTF.Length > 0)
{
//Find the index of the RTF Return Character
int index = myRTF.IndexOf("\r\n");
//Extract the RTF to that point
string temp = myRTF.Substring(0, index);
//Trim the extracted part of the RTF
myRTF = myRTF.Substring(index, myRTF.Length - index);
//Add the item to your list box
listBox1.Items.Add(temp);
}
}
 
I wrote that code in my head - but the general idea should be there.

You will need to find the RTF return characters. Typically "\r\n" is the return character but RTF may be different.

<insert stupid signature here>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top