Been trying different approached to achieve what I am looking for and was posting in the coding subforum but wasn't able to resolve the desired result.
Basically, I'm working to create an overview form that would be the first form seen in an application to manage assorted honeybee apiaries and hives.
The form is designed to be continuous with one Apiary per for row on the form. Next to the basic info for the Apiary is a list of Hives and some basic info for each Hive.
The tables are T_Log_Apiary and T-Log_Hives and there is a many to one relationship (many Hives to each Apiary).
This is the form I am currently working with and I have two methods I am using to generate the Hive lists. First is using Allen Browne's ConcatRelated() Function with does pull the correct info for each Apiary and the second is a list box pulling the information from a query with a condition that the field Link_to_Log_Apiary_ID = Log_Apiary_ID (Basically calling on the relationship).
So, while the first option correctly lists the info, each text box is independent of the other and when the list extends past the bottom of the box, I would need to scroll and the three boxes do not scroll in unison.
The second option allows for each piece of info to remain on the same row and allows for scrolling but apparently there is an issue where list boxes (and combo boxes) only relate to the first row in a continuous forms environment. As you can see, the Hive details are the same for each Apiary with this option.
So, What I need to accomplish is either 1) Create a way for a single scroll bar to scroll the three text boxes that use the ConcatRelated() function or 2) figure out how to force the list box to properly link to each row in the continuous form respectively.
I can upload the entire database if anyone has any ideas that may work for this.
Thanks for any thoughts on this.