Search results for query: *

  1. S

    Xpath query on an XML returns 0 results

    So i've searched the net and found something that looks like a solution, i've changed my code to : Dim doc As New System.Xml.XmlDocument() doc.Load("products.xml") Dim root As System.Xml.XmlElement = doc.DocumentElement Dim nsMgr As...
  2. S

    Xpath query on an XML returns 0 results

    The problem seems to be with the <html> tag attribute : <html xmlns="http://www.w3.org/1999/xhtml"> As soon as i removed the xmlns attribute my "selectNodes" method started working ... So now - Is there a way to still make it working without removing that xmlns attribute ? Thanks !
  3. S

    Xpath query on an XML returns 0 results

    Hi guys ! A little something i hope you could help me with - I've converted an html to XML and now i want to get all the child nodes nested within a DIV element with a specific attribute (class="itemInfo"). Because the html that the XML is based on changes from time to time i want to use a...
  4. S

    Question XPath or any other way to solve this ...

    Second run Thank you John, I want to try that (maybe something is wrong in the full html document). 1. You wrote "I loaded the document from the string you posted", for learning purposes - what do i have to change in my code to load html from string ? 2. The full html page i'm dealing with is...
  5. S

    Question XPath or any other way to solve this ...

    Hello to all ! Sorry in advance for the long post. I'm trying to get the value of a specific <div> from an html. This div has a class attribute of "itemPrice6", but problem is that this class appears few more times for other <div>s in which i'm not interested in. Best thing for me is if i am...
  6. S

    Question RegularExpression for html?

    Hi to all ! I am new to "Regular Expressions", tried to figure out all these weird stuff but I can't seem to get it right ... I need to extract only the "555" out of an full html string (of course it could be any other number). part of the html string : </div> <div...
  7. S

    What is the meaning of this error message ?

    i have a : If NOT (bgWorker001.IsBusy) then bgWorker001.RunWorkerAsync End if And i think it should give a different error in that case. Really weird .. :confused:
  8. S

    What is the meaning of this error message ?

    "Exception has been thrown by the target of an invocation" Instead of words, here is my code's logic : while loop run BGworker01 run BGworker02 ... run BGworker09 application.doEvents thread.sleep(10) end while All the bgWorkers do the same thing (sending some...
Back
Top