Thank you! That worked. Can I please ask 2 more questions?
1- Why do you need \\ and not \ in the field path?, and
2- I'm trying to create code to go to the folder after I create it. This is
what I have. It's not working, can you help?
var objWeb
objWeb = CreateObject("InternetExplorer.Application");
objWeb.Navigate("C:\\test");
objWeb.Visible = True;
Thanks,
Joel
> Retrieve the value of your field with something like:
>
[quoted text clipped - 20 lines]
>> Thank you so much,
>> Joel
S.Y.M. Wong-A-Ton - 03 Nov 2006 22:51 GMT
\ is a special character in JScript and other languages like JScript, so you
have to escape it with another \ to let JScript know that you really mean "\"
as a string and not the special character.
Regarding your IE question, perhaps you may want to post it in the IE
newsgroup, because the problem is not really related to InfoPath, unless it's
a security issue you're having. You could also do a search on the Internet on
"automating internet explorer".
---
S.Y.M. Wong-A-Ton
> Thank you! That worked. Can I please ask 2 more questions?
>
[quoted text clipped - 35 lines]
> >> Thank you so much,
> >> Joel