Probably a very basic newby question...here goes...
I have a form (form1) that has 4 combo boxes (Combo23, Combo25, Combo27, and Combo29).
The row source for each of these 4 boxes is:
SELECT [Size Table].[Size] FROM [Size Table];
The Size Table has one field (Size) and 8 records.
I would like when the user is presented with the form to select from each of the 4 combo boxes one of the 8 records and have another table Size Capture Table to update.
The Size Capture Table has 4 fields (Size1, Size2, Size3, and Size4) and 1 record (this one record would included the 4 size selected in the step above).
Is there a way to update this other table by using some sort of exit procedure for each of the combo boxes or do I need to create a button that would update the Size Capture Table all at once.
What if I have instead of 4 combo boxes, I have just text boxes? How could I get another table to be updated as well. I think I will need to do both. I.E. have combo boxes and text boxes as input for another table.
I would need some detail in setting this up for I am very new to VB.
thanks in advance
david
I have a form (form1) that has 4 combo boxes (Combo23, Combo25, Combo27, and Combo29).
The row source for each of these 4 boxes is:
SELECT [Size Table].[Size] FROM [Size Table];
The Size Table has one field (Size) and 8 records.
I would like when the user is presented with the form to select from each of the 4 combo boxes one of the 8 records and have another table Size Capture Table to update.
The Size Capture Table has 4 fields (Size1, Size2, Size3, and Size4) and 1 record (this one record would included the 4 size selected in the step above).
Is there a way to update this other table by using some sort of exit procedure for each of the combo boxes or do I need to create a button that would update the Size Capture Table all at once.
What if I have instead of 4 combo boxes, I have just text boxes? How could I get another table to be updated as well. I think I will need to do both. I.E. have combo boxes and text boxes as input for another table.
I would need some detail in setting this up for I am very new to VB.
thanks in advance
david