Thanks, Bob.
I was able to find a way to fill my 3 combo boxes with data from three Access tables so that the drop downs showed the whole field as the list elements. Like this:
Private Sub CboFunder_Dropdown()
Set Con = New ADODB.Connection
Set rs = New ADODB.Recordset
Con.Open strCon
ssql = "Select Funder From Funding_Source Order by Funder"
rs.Open ssql, Con
Do Until rs.EOF
CboFunder.AddItem rs("Funder")
rs.MoveNext
Loop
rs.Close
Set rs = Nothing
Con.Close
Set Con = Nothing
End Sub
Here's what I'm up to. I want to track contracts by selecting site, program, and funder from 3 individual Access tables that are in a single db. I have been able to connect to the db, and produce a field list for each of the three boxes from which the user will select one each. What I can't figure out is how to save the selected data from the three to a fourth comprehensive Access table in the same db where the other three tables are located. All the info I can find only updates the record source from which the lists were drawn and I am trying to get that info added to a fourth table that will hold all contract data that is put together in a comprehensive list for all the sites, programs, and funding streams. I am (obviously, I'm sure) new to VB and have bit off a large chunk--not too much I hope. Can you tell me how to pass the info from the three boxes on the form to a different table in the same db? I'd appreciate any help. --Ed