I have a form (frmIntelInfo) that has a combo box that I want to populate with data from a table (tblAKA) that is filtered by the text in a textbox (txtID) that is on the form. It seem like the query for the combo box might be activated prior to the query for the form so there is never any info for the query. The combo box does not populate with anything. I have the properties for the combo box to populate via the query:
SELECT tblAKA.ID, tblAKA.AKA
FROM tblAKA
WHERE (((tblAKA.ID)=([Forms]![frmIntelInfo]![txtID].[text])))
ORDER BY tblAKA.AKA;
Any suggestions?
SELECT tblAKA.ID, tblAKA.AKA
FROM tblAKA
WHERE (((tblAKA.ID)=([Forms]![frmIntelInfo]![txtID].[text])))
ORDER BY tblAKA.AKA;
Any suggestions?