I noticed in vb 2008, you can right click a text box, and in that menu it says, "Text" or something of that variation. You can paste all of the text right there, and your program will start with that text in it.
I was wondering if there was a way to get rich text (alot of text) into a rtb in vb6. Going to text in the properties bar and pasting doesn't work. It only pastes one line to it.
Another question.
I have a listbox, and it has a list of events. Each event has a lot of text. I want, when you click one of the events, to have it display all of that text to textbox1 say. Is there a way to do that, so that I copy all of that text into the listbox so when you click it it copies it to the textbox? I tried doing
private Sub List2_Click()
Select Case List2.ListIndex
Case "0" Text1.Text = "1st line of about 200" & vbNewLine & "2nd Line of about 200"
I've tried pasting all of the text I need to appear under the Case "0"
but it reads it as like a code, and errors (in red).
Thanks in advance.