XML Loaded Forms

  • Thread starter Thread starter Brian
  • Start date Start date
B

Brian

We have several forms we are going to deploy on the web.
Then we want a .net application that will edit,print, etc
the data submitted from the web. What we would like to
do is build the .net windows forms from the xml
documentation including layout and validation. Is anyone
aware of any examples on the web?

Thanks
 
Hi Brian,

I searched with the issue, but not find a proper example. I think you may
first load the XML document, for example:

Dim myXmlDocument as XmlDocument = new XmlDocument()
myXmlDocument.Load ("forms.xml"))

Dim node as XmlNode
node = myXmlDocument.DocumentElement

im node2 As XmlNode

For Each node2 In node.ChildNodes
...

Next

To change current form's layout, you may change it and its control's
property according the values you get from the XML file.

Hope this help,


Luke
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)
 
Back
Top