china99boy
Registered User.
- Local time
- Today, 16:43
- Joined
- Apr 27, 2006
- Messages
- 161
hello... I have a form with 2 combo box. The second combo box items are limited based on the selection in the first. Everything works great on the form, except when I embed this form on another. As soon as I make a choice in the first combo box, and then try to select something in the second box I get a pop up box called "Enter Parameter Value" shows up with "Forms!frmTracking.cmbTracking.Value"
The form that I have it embed to is called frmMain. Below is the sql for the query. Can you guys guide me to what I am missing? Thanks in advance.
The form that I have it embed to is called frmMain. Below is the sql for the query. Can you guys guide me to what I am missing? Thanks in advance.
Code:
SELECT DISTINCT tblMtgType.mtgType, tblMtgType.ltv, tblMtgType.ltvDescription
FROM tblMtgType
WHERE tblMtgType.mtgType =[forms]![frmTracking].[cmbTracking].[value];