I have a combo box that displays all my contracts fine. There are a couple of times when you select a value that a different record actually shows up and I dont' know why. It is an unbound combobox with the following record source
The first time in, the list of contract show properly and in most cases the combo box works properly. However, if I select 92-9305, it ends up displaying 03-3641. The only thing that is duplicated is the fldsubdivisionname but I am bound to fldcontractid as the boundcolumn. I don't know what to do to fix this issue and hoping for some help. Thanks lhuffst
Code:
SELECT tblContracts.FldContractNum, tblContracts.fldSubdivisionName, tblContracts.fldContractId FROM tblContracts;
The first time in, the list of contract show properly and in most cases the combo box works properly. However, if I select 92-9305, it ends up displaying 03-3641. The only thing that is duplicated is the fldsubdivisionname but I am bound to fldcontractid as the boundcolumn. I don't know what to do to fix this issue and hoping for some help. Thanks lhuffst