I have three tables
tblCompany = Company Information
tblContacts = Contacts within each company linked to tblCompany.
tblCallInfo = Information on calls to contacts linked to both tblCompany and tblContact.
I want to click a button and have a form appear requesting new CallInfo. On that form I want to have two combo boxes. In the first the user will select a company. That combo box will get it's list from tblCompany. After the company is selected in the first combobox I want the second combobox to update listing only contacts from tblContacts which are linked to that company in tblCompany. After all is said and done I just want the key numbers from tblContact and tblCompany to be added to the new record in tblCallInfo.
Does anyone know how I can do this?
-al
tblCompany = Company Information
tblContacts = Contacts within each company linked to tblCompany.
tblCallInfo = Information on calls to contacts linked to both tblCompany and tblContact.
I want to click a button and have a form appear requesting new CallInfo. On that form I want to have two combo boxes. In the first the user will select a company. That combo box will get it's list from tblCompany. After the company is selected in the first combobox I want the second combobox to update listing only contacts from tblContacts which are linked to that company in tblCompany. After all is said and done I just want the key numbers from tblContact and tblCompany to be added to the new record in tblCallInfo.
Does anyone know how I can do this?
-al