Hi,
Is it possible to open a XML file in Internet Explorer create a DDE link and read the content in row by row to an Access table? I am using MS Access 2000.
I have started with the following which works so far and establishes the DDE connection - but how do I actually read in the content? I am assuming it is a DDEREQUEST command but I dont know the exact syntax.
Dim intChan1 As Long
Dim myURL As String
myURL = "c:\output.xml"
Shell ("c:\program files\internet explorer\iexplore.exe " & myURL), vbMinimizedNoFocus
intChan1 = DDEInitiate("Iexplore", "System")
Is it possible to open a XML file in Internet Explorer create a DDE link and read the content in row by row to an Access table? I am using MS Access 2000.
I have started with the following which works so far and establishes the DDE connection - but how do I actually read in the content? I am assuming it is a DDEREQUEST command but I dont know the exact syntax.
Dim intChan1 As Long
Dim myURL As String
myURL = "c:\output.xml"
Shell ("c:\program files\internet explorer\iexplore.exe " & myURL), vbMinimizedNoFocus
intChan1 = DDEInitiate("Iexplore", "System")