Question Importing data from .txt (Picutres)

griffithdesign

Active member
Joined
Sep 17, 2008
Messages
34
Programming Experience
Beginner
Ok I am still new to the Visual Basic community and I really only make web browsers. But if someone can teach me this then I will be able to make a lot more of what people ask me to make. And I made sure to explain it will so I could get the most efferent answer. So here is my application.

index.cgi

If the image is not working click here...

Now where the text box is (RichTextBox1) I want it to display text when you hit the buttons. But they are huge lists. Like 5,000 lines long. So I imported them into the resources.

index.cgi

If the image is not working click here...

Now how do I get the text, for example from Emote_list to display when you click on the Emote List button on the application. I know its an easy thing for you guys, but I have searched everywhere and I cant find it. Please help me. Thank you.
 
VB.NET:
RichTextBox1.Text = My.Resources.Emote_List
See also help for My.Resources object.
 
Back
Top