Advertisement
Guest User

Untitled

a guest
Jun 4th, 2017
557
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.89 KB | None | 0 0
  1. my code:
  2. For Each el As HtmlElement In WebBrowser1.Document.GetElementsByTagName("td")
  3. Clipboard.SetText(Clipboard.GetText + vbNewLine + el.InnerText.ToString)
  4. Next
  5.  
  6. My results: I get this in my clipboard but the program crashes with error "Object reference not set to an instance of an object."
  7.  
  8. Starting Date:
  9. Ending Date:
  10.  
  11. Search
  12. Starting Date:
  13.  
  14. Ending Date:
  15.  
  16. Date
  17. IP Address
  18. Email
  19. Status
  20. Actions
  21. 07/07/2010 7:12 am
  22. 69.235.30.121
  23. rick1q@yahoo.com
  24. Content Received.
  25.  
  26.  
  27. The HTML Code:
  28.  
  29. <table width="100%" style="font-family: verdana;">
  30. <tr>
  31. <td style="font-weight: bold;">Date</td>
  32.  
  33. <td style="font-weight: bold;">IP Address</td>
  34. <td style="font-weight: bold;">Email</td>
  35. <td style="font-weight: bold;">Status</td>
  36. <td style="font-weight: bold;">Actions</td>
  37.  
  38. </tr>
  39. <tr style="background-color: #e9e9e9;">
  40. <td style="font-size: 11px;">07/07/2010 7:12 am</td>
  41.  
  42. <td>69.235.30.121</td>
  43. <td><a href="mailto:rick1q@yahoo.com">rick1q@yahoo.com</a></td>
  44. <td id="status_410159">
  45. <img src="/webicons/folder_go.png"> Content Received.
  46. </td>
  47. <td id="action_410159">
  48. </td>
  49. </tr>
  50. <tr style="background-color: #F1F1F1;">
  51.  
  52. <td style="font-size: 11px;">07/07/2010 7:36 pm</td>
  53. <td>174.26.142.176</td>
  54. <td><a href="mailto:alecjohn24@hotmail.com">alecjohn24@hotmail.com</a></td>
  55. <td id="status_411421">
  56. <img src="/webicons/folder_go.png"> Content Received.
  57. </td>
  58. <td id="action_411421">
  59.  
  60. </td>
  61. </tr>
  62. <tr style="background-color: #e9e9e9;">
  63. <td style="font-size: 11px;">07/08/2010 8:35 am</td>
  64. <td>92.12.193.86</td>
  65. <td><a href="mailto:dean_456@hotmail.co.uk">dean_456@hotmail.co.uk</a></td>
  66. <td id="status_413408">
  67. <img src="/webicons/folder_go.png"> Content Received.
  68. </td>
  69.  
  70. <td id="action_413408">
  71. </td>
  72. </tr>
  73. <tr style="background-color: #F1F1F1;">
  74. <td style="font-size: 11px;">07/08/2010 8:15 pm</td>
  75. <td>82.19.175.87</td>
  76. <td><a href="mailto:daxz737@live.co.uk">daxz737@live.co.uk</a></td>
  77. <td id="status_414639">
  78.  
  79. <img src="/webicons/folder_go.png"> Content Received.
  80. </td>
  81. <td id="action_414639">
  82. </td>
  83. </tr>
  84. <tr style="background-color: #e9e9e9;">
  85. <td style="font-size: 11px;">07/08/2010 8:37 pm</td>
  86. <td>82.4.7.134</td>
  87.  
  88. <td><a href="mailto:stuttard2002@hotmail.com">stuttard2002@hotmail.com</a></td>
  89. <td id="status_414997">
  90. <img src="/webicons/folder_go.png"> Content Received.
  91. </td>
  92. <td id="action_414997">
  93. </td>
  94. </tr>
  95. <tr style="background-color: #F1F1F1;">
  96. <td style="font-size: 11px;">07/08/2010 8:03 pm</td>
  97.  
  98. <td>69.235.31.7</td>
  99. <td><a href="mailto:rick1q@yahoo.com">rick1q@yahoo.com</a></td>
  100. <td id="status_415649">
  101. <img src="/webicons/folder_go.png"> Content Received.
  102. </td>
  103. <td id="action_415649">
  104. </td>
  105. </tr>
  106. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement