Okay since I love ya guys so much :3 I wanted to share this with you, how to read text off of the web (and this actually works too)
there is another way for actual webpages but i dont feel like posting that too at the moment lol. Later i can show u guys how to read a post off of a website if you want
First thing:
is first, make a text document and add whatever text you want into it. then upload it onto the web using your own fps directory or any other way you can
second:
Make a new Project and Add these to it:
Webbrowser1
Textbox1 or label1
Button1
Click on the webbrowser and put the url to your text document (this will make it so when the application loads it will load that website), now just make the webbrowser hidden
go into the code of the button and add this code:
Code:
TextBox1.Text = WebBrowser2.Document.Body.InnerText
or
Code:
label1.Text = WebBrowser2.Document.Body.InnerText
*Extra Info*
Ever got pissed about those annoying script errors on your webbrowsers? well here is how to turn it off.
click on you webbrowser and go to ScriptErrorSuppressed And switch that to "True"
