You've posted a lot of code, which is helpful, but it's hard trying to
follow what you're doing - I don't think you've got it quite right. I think
you'd be better off creating tables for the individual items:
Table MDF_TB
Column MDF_ID = ID for a specific MDF
Table CAN_TB
Column CAN_ID = ID for a specific CAN
Table TAG_TB
Column TAG_ID = ID for a specific tag block
Table LINE_TB
Column LINE_ID = ID for a specific line
You then want to set up a bunch of tables representing the relatinoships
between all of the above. I
Table MDF_TAG_LINK
Column MDF_ID
Column TAG_ID
Table CAN_TAG_LINK
Column CAN_ID
Column TAG_ID
Table CAN_LINE_LINK
Column CAN_ID
Column LINE_ID
Table TAG_LINE_LINK
Column TAG_ID
Column LINE_ID
What's confusing me is that it seems that lines connect to tag (tab?)
blocks which can connect to both CANs and to the MDF? Is that right?
--
Message posted via
http://www.accessmonster.com