View web-scraping-hacker-news-using-vba.bas
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Option Explicit | |
Public Sub Main() | |
Dim htmlDocument As htmlDocument | |
Dim tableWithStories As HTMLTable | |
Dim rowsWithStories As IHTMLElementCollection | |
Dim storylinkAnchors As Collection | |
Dim output As Variant | |