I
iTISTIC
Posted a previous message about setting a sub-reports record source
property using VBA, but I think I'll be a little clearer as there may
be a better solution I am just not aware of.
Here my situation. I have 2 reports. Lets call them Parent and
Sub-Report to keep things easy. The parent report shows customer detail
information (phone numbers, mailing addresses, etc.). In this parent
report I have the sub-report. I want the sub-report to list all of the
piece of equipment available in the system with checkboxes, and have
the checkbox checked for each piece of equipment the customer owns.
Table structur is as follows:
tblCustomers
==
account_number - PK
first_name
last_name
.... etc
tblCustomerEquipment
==
rec_id - PK
account_number - FK
product_generic_id
tblProductGenerics
==
product_generic_id - PK
product_name
.... etc
Due to what appears to be a bug in Access, I can't construct a query
that will list ALL records in tblProductGenerics and the associated
values for tblCustomerEquipment where there is a related record in
tblCustomerEquipment. Access treats the queries I create as INNER JOINS
even though they are LEFT JOINS. Here is a description of the problem I
have:
http://support.microsoft.com/kb/275058/en-us
Although it says the Jet Service Pack will fix the issue, when I
download the proper service pack for Windows XP and execute it I am
told the service pack is older than the version I currently have and
that the update is exiting and not necessary.
Any idea how I can accomplish this?
property using VBA, but I think I'll be a little clearer as there may
be a better solution I am just not aware of.
Here my situation. I have 2 reports. Lets call them Parent and
Sub-Report to keep things easy. The parent report shows customer detail
information (phone numbers, mailing addresses, etc.). In this parent
report I have the sub-report. I want the sub-report to list all of the
piece of equipment available in the system with checkboxes, and have
the checkbox checked for each piece of equipment the customer owns.
Table structur is as follows:
tblCustomers
==
account_number - PK
first_name
last_name
.... etc
tblCustomerEquipment
==
rec_id - PK
account_number - FK
product_generic_id
tblProductGenerics
==
product_generic_id - PK
product_name
.... etc
Due to what appears to be a bug in Access, I can't construct a query
that will list ALL records in tblProductGenerics and the associated
values for tblCustomerEquipment where there is a related record in
tblCustomerEquipment. Access treats the queries I create as INNER JOINS
even though they are LEFT JOINS. Here is a description of the problem I
have:
http://support.microsoft.com/kb/275058/en-us
Although it says the Jet Service Pack will fix the issue, when I
download the proper service pack for Windows XP and execute it I am
told the service pack is older than the version I currently have and
that the update is exiting and not necessary.
Any idea how I can accomplish this?