Default001
New Member
- Joined
- Oct 21, 2015
- Messages
- 7
Hi all,
I have the following code that allows me to access the website and select 100 entries per page, although I cannot figure out how to click on the button "Next 100" to access the next page. I tired just navigating to the on click event in the html but that had an error of something like "source already in use". Iv tried searching the internet for answers but cannot find anything helpful. The website is below:
EDGAR Search Results
I have the following code that allows me to access the website and select 100 entries per page, although I cannot figure out how to click on the button "Next 100" to access the next page. I tired just navigating to the on click event in the html but that had an error of something like "source already in use". Iv tried searching the internet for answers but cannot find anything helpful. The website is below:
EDGAR Search Results
Code:
Sub dates()Dim IE As New InternetExplorer
IE.Visible = True
IE.navigate "http://www.sec.gov/cgi-bin/browse-edgar?CIK=JBL&owner=exclude&action=getcompany"
Do
DoEvents
Loop Until IE.readyState = READYSTATE_COMPLETE
Dim Doc As HTMLDocument
Set Doc = IE.document
Doc.getElementById("count").Value = 100
Doc.forms.Item(0).submit