TreeView

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

Guest

Hi,

I would like to add a treeView to a form where the top level items are
countrys and inside of it would appear the holidays that belong to each
country...

I have a SQL SERVER Table Countrys and a Table Holidays, they have
relationships between them...

How can I bind them?
 
Hi there,

You can either output the dataset as XML and bind it to the treeview. Or you
have to write some data access code where you get the data from the dataset,
create and attach nodes onto the treeview.

Hope this helps.
 
Back
Top