Les Isaacs
Registered User.
- Local time
- Today, 21:45
- Joined
- May 6, 2008
- Messages
- 186
Hi All
I have a function that creates an xml file in CurrentProject.path, which works fine. After creating the file I want to open it. I've tried
and I've tried
but in each case internet expolrer opens but then give a message that it is unable to open the file
. I can open the file directly from windows explorer (it opens with internet explorer).
Any ideas anyone
Thanks for any help.
Les
I have a function that creates an xml file in CurrentProject.path, which works fine. After creating the file I want to open it. I've tried
Code:
Shell ("c:\program files\internet explorer\iexplore.exe CurrentProject.path & ""\"" & ""xmldemo.xml""")
Code:
fname = CurrentProject.path & "\" & "xmldemo.xml"
Shell ("c:\program files\internet explorer\iexplore.exe fname")

Any ideas anyone

Thanks for any help.
Les