TrUz said:TreeView is not a data bound control. Well you can data bind the Tag and that is it. You will need to manually code your TreeView.
TrUz
Hope that helps![]()
Always keep related data together.
Try splitting (normalising) the table down. This will make the database more logical, easier to maintain and should speed it up (as the database will be looking at less information - unless you are always bringing back the whole row).
If you are just reading the data, then open it, read the data, and close it as soon as you can. This is especially important for access which doesnt like too many connections to be open to it at once. For data adaptors im not 100% sure of the situation - maybe someone else can help![]()