I am one of several people using this database. I am the only one getting this error.
When I open the form, named frmEmployeeDetails, there is a combobox that is supposed to be populated with the results of a query. If I try to select the combobox, it gives me an "Enter Parameter Value" prompt asking for Forms!frmEmployeeDetails.Caption
. The Caption for the form is "EMPLOYEE DETAILS", but typing that in doesn't make the combobox work. The query for the combobox is asking for [FORMS]![frmEmployeeDetails].[Caption]
.
As far as I know I'm the only person getting this error. It happens only on my computer regardless of the version of the database opened (updates aren't fixing it). Re-installing Access didn't fix it either. I've also tried entering the [FORMS]![frmEmployeeDetails].[Caption]
in the query and letting it auto-fill to make sure nothing was spelled wrong.
Here is the row source of the combobox.
SELECT tblFormDataTables.DataID
, tblFormDataTables.Data
FROM tblFormDataTables
WHERE (((tblFormDataTables.Location)=[FORMS]![frmEmployeeDetails].[Caption]))
ORDER BY tblFormDataTables.Data;
Any suggestions?