Dynamic form creation in Forms .NET

  • Thread starter Thread starter Yash Ganthe
  • Start date Start date
Y

Yash Ganthe

Our application needs to dynamically build and display a form. The
fields and the controls to be shown in the form will be in an XML
file. Also, the data to be shown pre-populated in the form will be in
another XML file. The two files need to be parsed to show a form which
the user can edit.

Is there an existing library that lets you do this?

We use .NET 2.0

Thanks,
Yash
 
Yash said:
Our application needs to dynamically build and display a form. The
fields and the controls to be shown in the form will be in an XML
file. Also, the data to be shown pre-populated in the form will be in
another XML file. The two files need to be parsed to show a form which
the user can edit.

Is there an existing library that lets you do this?

We use .NET 2.0

Thanks,
Yash


<http://www.codeproject.com/KB/miscctrl/CratingDynamicForms.aspx>

Then you need to know how to load and use XMLDocument.

<http://www.c-sharpcorner.com/Upload...42005010141AM/ReadingXmlUsingXmlDocument.aspx>
 
Back
Top