First please excuse the lack of knowledge, im decent with vba but this is my first attempt at scraping data from IE
Ive been working on a macro for the past couple weeks which logs into a protected webapage a pulls a java generated report. ive managed (with limited knowledge) to get everything handled but the last step. I cant give out to much info because it is a secured site from work but i would appreciate any assistance.

My current code navigates to the site and logs in and navigates to the report section
Please Login or Register  to view this content.

The reason for the second sub is to pause for the user to select the report date then finish navigating through the frames
Please Login or Register  to view this content.
My issue is that the resulting data is displayed on a form(not a table, which there are tons of examples for) in DIV tags. I now there is javascripit that "GET"s the info from a secured server but i never could get the request headers and cookies right to gain autherization using XMLHTTP. So as a last ditch effort im try to scrape the DIV elements for the info. Cant post the full HTML but the hierarchy goes like this once ive clicked the hyperlink generated by the Date selecting dropdown.

IFRAME id=PaymentData
HEAD
FRAMESET NAME="MAINFRAMSET"
FRAME NAME="TOOLBARFRAME"
FRAMESET NAME="REPORTFRAMESET
FRAMESET NAME= "TOCFRAME"
FRAME NAME="REPORTFRAME"
HTML
HEAD
BODY
DIV CLASS="C12"
DIV CLASS="C13" AND SO ON

This generates a 1000+ page report which can be download a handfull of pages at a time which is why im trying to come up with a better method. It gets old downloading 50 pages at a time then combining 30+ workbooks into one usable file.
I hope Ive given enough info for someone to put me on the right path.
Again any advice would be greatly appreicated. And maybe theres even a better mothod to go about doing this?