Hello,
I try to get the code source (with dhtml, javascript) from a Web Page like https... to get back the tables of my account but I have only a frame (the first frame of the page)... I have this macro vba: (which works well with the other pages)
IE.navigate "Do Until IE.readyState = READYSTATE_COMPLETE
DoEvents
Loop
nFile = FreeFile
Open "C:\Compte.htm" For Output Shared As #nFile
Print #nFile, IE.document.documentElement.innerHTML
Close #nFile
Have you a means there to get back vba the code source of the complete page and not only the first frame (or layer?)?
Thank you for your help
I try to get the code source (with dhtml, javascript) from a Web Page like https... to get back the tables of my account but I have only a frame (the first frame of the page)... I have this macro vba: (which works well with the other pages)
IE.navigate "Do Until IE.readyState = READYSTATE_COMPLETE
DoEvents
Loop
nFile = FreeFile
Open "C:\Compte.htm" For Output Shared As #nFile
Print #nFile, IE.document.documentElement.innerHTML
Close #nFile
Have you a means there to get back vba the code source of the complete page and not only the first frame (or layer?)?
Thank you for your help