JoeD
08-18-2003, 11:43 AM
Before I spend a bunch of time going down a dead end, would anyone know if is it possible to do something like this VB code in Acucobol:
Dim SWs As New SHDocVw.ShellWindows
Dim IE As SHDocVw.InternetExplorer
For Each IE In SWs
Set Doc = IE.document
Print Doc.url
Next
SHDocVw is a reference to the Microsoft Internet Controls (SHDOCVW.DLL).
I have generated a .DEF file for SHDOCVW.DLL.
But what I'm not clear about is:
1) How to simulate the "for each" to iterate through the SHDocVW.InternetExplorer objects
2) If I did get back an SHDocVw.InternetExplorer object, how do I access its properties (such as .document).
BTW, what this code does is gets the current URL from every instance of Internet Explorer currently open.
Dim SWs As New SHDocVw.ShellWindows
Dim IE As SHDocVw.InternetExplorer
For Each IE In SWs
Set Doc = IE.document
Print Doc.url
Next
SHDocVw is a reference to the Microsoft Internet Controls (SHDOCVW.DLL).
I have generated a .DEF file for SHDOCVW.DLL.
But what I'm not clear about is:
1) How to simulate the "for each" to iterate through the SHDocVW.InternetExplorer objects
2) If I did get back an SHDocVw.InternetExplorer object, how do I access its properties (such as .document).
BTW, what this code does is gets the current URL from every instance of Internet Explorer currently open.