I'm using Access 2003.
This might be a bonehead question, but is it possible to use a multi-table query for a form's Record Source and still be able to update records in one of the tables?
I have the following query as the Record Source for a form:
The table to update is tblLoading, and in my form I'm currently only displaying fields from tblLoading. (But I'd like to add the other fields for display-only later.) However, when I use this query as my Record Source, I cannot update the record in the form. (All fields seem to be read-only.)
Can this be done?
Thanks for any help you can give.
Wayne
This might be a bonehead question, but is it possible to use a multi-table query for a form's Record Source and still be able to update records in one of the tables?
I have the following query as the Record Source for a form:
Code:
[FONT=Courier New]SELECT tblLoading.LoadingID,[/FONT]
[FONT=Courier New] tblLoading.ClaimPartyID,[/FONT]
[FONT=Courier New] tblLoading.ContractNumber,[/FONT]
[FONT=Courier New] tblLoading.PoolID,[/FONT]
[FONT=Courier New] tblLoading.Tonnes,[/FONT]
[FONT=Courier New] tblLoading.LastUserName,[/FONT]
[FONT=Courier New] tblLoading.LastUpdateDtm,[/FONT]
[FONT=Courier New] qryClaimPartyWithChildTotals.ClaimPartyAmount,[/FONT]
[FONT=Courier New] qryClaimPartyWithChildTotals.TotalLoadingTonnes[/FONT]
[FONT=Courier New]FROM qryClaimPartyWithChildTotals[/FONT]
[FONT=Courier New] INNER JOIN tblLoading ON qryClaimPartyWithChildTotals.ClaimPartyID = tblLoading.ClaimPartyID[/FONT]
The table to update is tblLoading, and in my form I'm currently only displaying fields from tblLoading. (But I'd like to add the other fields for display-only later.) However, when I use this query as my Record Source, I cannot update the record in the form. (All fields seem to be read-only.)
Can this be done?
Thanks for any help you can give.
Wayne