vba - Graphically displaying linked data -


i'm researching on way graphically display linked items within database. have list of screens on hmi scada system , i'm trying take list of screens links other screens can show chart representing how each screen linked another. screens can link several screens via navigation buttons.

what thinking doing through ms access build database , use visio build it, thought ask here see if might have idea easier want without me having design scratch.

i have 1 master table such this:

id           screen 1            home 2            page1 3            page2 4            page3 5            page4 6            page5 7            page6 8            page7 9            page8 10           page9 

then have table holds links. id primary key , mid (master id) , lid (link id) linked id in master table.

id           mid          lid 1            1            2 2            1            3 3            1            4 4            1            5 5            2            1 6            2            6 7            3            1 8            3            4 9            3            7 10           3            8 11           3            9 12           3            10 

from here, want build chart of kind draw screen names in boxes , show lines link boxes together.

any ideas improve this? open other programs if make easier. preferably free programs.

also, can code in vba, python, , started learning java if information help.

it sounds need graph visualizer, screens nodes , connections edges.

first find graph visualizer want use, figure out how store data based on that.

since said know python, maybe should check out 1 of libraries in this question. i've seen excel plugins graph visualization, imagine aren't cheap.


Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

Python ctypes access violation with const pointer arguments -