| re: Tab Forms with Multiple Rows
Not sure what you are trying to accomplish. Do you want one record per tab
page? It's trivially easy to place a Subform Control on a tab page and
display continuous forms view (which, of course, can show many records). I
can think of some scenarios for using that to display details of a
particular record on another page of the tab control.
As far as I know, there is no support for a tab page for each record -- that
would seem to be useful to me only for a small number of records or it would
overwhelm the user.
My applications just don't use datasheet view. I use it myself when I am
doing "end user" kind of things, but that wouldn't include embedding it in a
Subform Control on a tab page.
Larry Linson
Microsoft Access MVP
"Greg Neef" <neefg@linuxmail.org> wrote in message
news:25006370.0405311748.cca258@posting.google.com ...[color=blue]
> I need to develop a Tab Form where selecting a particular key from an
> unbound combo listbox will resulting in the display one or many
> records from several tables, where each tab has the matching rows for
> the selected key.
>
> There does not appear to be a similar example in the Northwind
> database. The objective is to show related records from several
> tables which have a common partial key. It seems that I cannot use a
> single query as the basis for all pages of the tab, as this seems to
> preclude displaying a datasheet of one or more records for any of the
> underlying tables. I have experimented with using an Apply Filter
> macro but this seems to only effect the overall form's underlying
> query. It seems like each page of the tab form needs its own
> underlying query to populate a datasheet specific to the table upon
> which that tab is based. I need to be able to change the selection
> key and then cause the datasheets for all the tabs to requery to match
> the new key selected.
>
> Eg:
>
> Key 1234567 (selected from a list of valid keys based on a query)
>
> Tab Page 1
> Key 123456 - Table 1 Row 131 data
> Key 123456 - Table 1 Row 293 data
>
> Tab Page 2
> Key 123456 - Table 2 Row 55 data
>
> Tab Page 3
> No records matching
>
> Tab Page 4
> Key 123456 - Table 3 Row 24[/color] |