How do i use a loop to count how many lines there are in a richtextbox?
Don't use a loop. You can probably store the text in the richtextbox in a string and split it by newline.
If you look at the members of a RichTextBox, you might notice that it has a "Lines" member.
If you further investigate this "Lines" member, you would notice that it is a string array, which means that you can use the "Length" property.
length = myRTB.Lines.Length
thanks guys! but my dad just helped me do it.
now i can continue on with the easy part.
Quote from: VeBee on August 05, 2006, 08:52 PM
now i can continue on with the easy part.
That *was* the easy part.