Search results for query: *

  1. Z

    Question How to get the howl html document not just the source code ??

    Thank you guys but seems that somehow uninstalling and installing again vs2010 solved my problems i can know use browser control as before and get the text i need. :) lucky I. Thank you again for all the effort :)
  2. Z

    Question How to get the howl html document not just the source code ??

    When i use web browser control i get java script errors and the content that i need is not displayed. hmmm Tnx
  3. Z

    Question How to get the howl html document not just the source code ??

    So guys Im now working 5 days on solving this problem. I need to get some inner text from a div witch is not visible in the source code. Someone any idea how to get him? Here is what I have until now Dim doc As New HtmlAgilityPack.HtmlDocument Dim web As New HtmlWeb...
  4. Z

    Question Get text from webpage but not the easy one ;)

    I searched a bit around and this is what i have now but still not solving my problem: Dim plain As String = String.Empty Dim htmldoc As New HtmlAgilityPack.HtmlDocument htmldoc.LoadHtml("http://openbook.etoro.com/ahanit/#/profile/Trades/") Dim goodnods As...
  5. Z

    Question Get text from webpage but not the easy one ;)

    This is what I have build up until now its working but not giving any output ? Dim code As String Using client As New WebClient code = client.DownloadString("http://openbook.etoro.com/alemzolota/#/profile/Trades/") End Using Dim htmlDocument As...
  6. Z

    Question Get text from webpage but not the easy one ;)

    Using client As New WebClient Dim htmlDocument As mshtml.IHTMLDocument2 = client.OpenRead("http://openbook.etoro.com/alemzolota/#/profile/Trades/") Dim allElements As mshtml.IHTMLElementCollection = htmlDocument.body.all Dim divs As...
  7. Z

    Question Get text from webpage but not the easy one ;)

    Im know 2 days working on solving this problem but seems that i found my master :) Here is the problem: I need to get some text from this web page ==>> eToro Open Book I want to use the trade feed for my program to analyse the sentiment of the markets. I used the browser control and the get...
Back
Top