Ken, The form Allow edits is set to yes. Here is the sql query for the form
query
SELECT tblInvoiceHeader.InvoiceHeaderID,
tblNewProductionCompanies.ProductionCompanyName, tblNewShows.ShowName,
tblNewShows.BillToContactName
FROM (tblNewProductionCompanies INNER JOIN tblNewShows ON
tblNewProductionCompanies.ProductionCompanyID =
tblNewShows.ProductionCompanyID) INNER JOIN tblInvoiceHeader ON
tblNewShows.ShowID = tblInvoiceHeader.ShowID;
HTH,
Robert
Ken Snell said:
Chances are that your form's RecordSource query is not updatable. Or that
you have your form's AllowEdits property set to No. Either of these would
mean that your form will not let you edit data.
You'll need to post info re: your form's RecordSource query (such as the SQL
statement, the tables' structure, etc.) so that we might provide some
suggestions.
--
Ken Snell
<MS ACCESS MVP>
Robert Johnson said:
Yup. The field name is there. The pull down works but I can't make any
changes.
Robert
What is the control source property of the combo box? If you want it to
update a value in the form's record source, then it should be a
field
name
like:
Control Source: [MyField]
--
Duane Hookom
MS Access MVP
--
Hi all. I have a combo box populated by tblPropMaster that writes to
tblInvoiceHdr. I can pull down the combo box and see the choices but
cannot
select any. It just beeps and does nothing. Any ideas?
TIA
Robert