Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
I have searched all over for this
#10
Well, the good news is, you got no errors! And atleast the textbox is splurting out something, lol!

Here is the exact code you need, sir.

Code:
sub rtb() Handles RichTextBox1.textchanged
TextBox1.Text = ""
        Dim i As Integer = 1
        Do Until TextBox1.Lines.Count = RichTextBox1.Lines.Count
            TextBox1.AppendText(i.ToString + vbNewLine)
            i = i + 1
        Loop
end sub
If you copy and paste this code into your form, it is guaranteed to work.
My Blog | My Setup | My Videos | Have a wonderful day.


Messages In This Thread
I have searched all over for this - by VicDesigns - 08-05-2011, 03:47 AM
Re: I have searched all over for this - by brandonio21_phpbb3_import2 - 08-06-2011, 07:09 PM
Re: I have searched all over for this - by xolara - 09-09-2011, 09:29 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)