Search results

  1. V

    VB.Net 2008, Inside a webbrowser control - how do you click a link inside a...

    ...table with the same names? So say there is a table, the rows are always different (Say 5 Rows for example) - and 5 columns. One column going down each row has the exact same name link (Calculate) but a different location they all go to. It's sort of a dynamic every changing table you can...
  2. V

    Vb.net 2008 - Looping through webbrowser table question.?

    Dim Test As String = WebBrowser1.Document. GetElementsByTagName("table").Item(3). GetElementsByTagName("tr").Item(2). GetElementsByTagName("td").Item(3). InnerText I use that code to pull information out of a table, but the table is dynamic and changes - how would I go about making a loop...
  3. V

    Php, select from count question.?

    $query = "SELECT COUNT(*) FROM Table1 WHERE number > '$variable'"; My question is, say there are multiple variables in the Table1 and when counting from them they would all receive the same count. How would I go about this and make it check a second variable in case this happened. Slowly...
Back
Top