Web dynamic data tree software to show relationships ....

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • bcap

    Web dynamic data tree software to show relationships ....

    Hi,

    I am looking for a software that can generate a tree of data. For
    example, I am trying to track real estate relationships like a lessor,
    tenant, general contractor, and subcontractors. I would like a visual
    representation of this relationship based on the values in my database
    showing the hierarchy much like a site map or family tree.

    Can anyone recommend how I could do this or suggest a software?

    Thank you,

    Ray
  • Evertjan.

    #2
    Re: Web dynamic data tree software to show relationships ....

    bcap wrote on 03 apr 2008 in microsoft.publi c.inetserver.as p.general:
    I am looking for a software that can generate a tree of data. For
    example, I am trying to track real estate relationships like a lessor,
    tenant, general contractor, and subcontractors. I would like a visual
    representation of this relationship based on the values in my database
    showing the hierarchy much like a site map or family tree.
    >
    Can anyone recommend how I could do this or suggest a software?
    >
    When you have a database with records, having n pointers to other such
    records in it's fields, it really is a just a simple reentrant subroutine,
    [except for the graphical part].

    ASP-vbscript pseudocode:

    depth = -1

    function getTheRecord(x)
    increment depth
    show the content of this record, using the depth for graphic position
    getTheRecord(po inter-1)
    getTheRecord(po inter-2)
    .....
    getTheRecord(po inter-n)
    decrement depth
    end function

    getTheRecord starting-record-pointer-here


    --
    Evertjan.
    The Netherlands.
    (Please change the x'es to dots in my emailaddress)

    Comment

    Working...