Generate Windows Form out of XML

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello

I've got a problem : I would like to automatically generate a windowsform starting with an XML-file

Let's say f.e. you have got this piece of XML
Code:
<person><name>Joske Vermeulen</name><country>Belgium</country></person>[/code

Is there some way visual studio.net can go 'oh, a <name>-tag, this belongs in a label with this position and these properties'

All help would be appreciated a lo

Matthieu
 
Hi Gibbon,

Why not,

If you make it as a dataset than you can do

me.text = ds.tables(0).rows(0).item(0).tostring
me.labe = ds.tables etc (or fill in the table name and columnnames where now
is the indexer as a zero).

It is a very easy way to make it for a language which you can edit from
outside the program.

But I asume you can go far, I saw this link yesterday.

I also saw this link yesterday

http://www.eggheadcafe.com/articles/20030908.asp

I hope this helps?

Cor
 
Back
Top