illustration of hierarchies with trees?

  • Thread starter Thread starter Lars
  • Start date Start date
L

Lars

How can I illustrate the hierarchies of the tables in my
database with trees?
Is there a way in Access or VBA?

Thanks!
Lars
 
For reference, see:

http://msdn.microsoft.com/library/default.asp?
url=/library/en-us/cmctl198/html/vbobjTreeView.asp


One thing that I've learned is that after you add a
treeview to a form, you get a reference to Microsoft
Windows Common Controls. Then, you can use something like:


Dim ctlTree as MSComctlLib.TreeView
Set ctlTree = Me.ControlName.Object

This way intellisense works, and things are much easier.
Good luck.

Chris Nebinger
 
Back
Top