Hi,
You can program it in C#. Just have a button on the form which when clicked
displays a form to the user. The user can browse and select the XML file
from there. When user dismisses this form, have your logic to parse the XML
file. Then you can update the fields on the form simply using
thisXDocument.DOM.SelectSingleNode("XYZ").nodeTypedValue = YourValue;
Where exactly are you facing problems ?
Thanks,
Gaurav
> Hi,
>
[quoted text clipped - 9 lines]
>
> Franz
Franz Demmel - 17 Feb 2006 16:24 GMT
Gaurav Bhardwaj schrieb:
> Hi,
>
[quoted text clipped - 4 lines]
>
> thisXDocument.DOM.SelectSingleNode("XYZ").nodeTypedValue = YourValue;
You're right. I've found an example that's shipped with office 2003
(UIBasic.xsn)
where it is described how to do this with scripting (maybe I'll try c#
after I have
the first results).
The problem I'm facing now are more security related (fully trusted
forms, etc.) But I hope to solve them soon.