G
Guest
I have a list box that can select multiple rows. I need to get each row
added to table and do a index/search. I currently have the following code
(partial listed here):
For Each PartInList In Me.PartList.ItemsSelected
P.Index = "PartNumber"
P.Seek "=", Forms!frmcreatequote!PartList
If Not P.NoMatch Then
Q!part = P!partnumber
If P!GSA = 1 Then
Q!price = (P!unitPRICE * 0.75)
......
Next PartInList
My problem is that i can't do a 'search' using a column in the list box,
because the bound column is now null (due to multiple selections). How can I
add each row to the table and do a search for data on another table using the
row that is currently in use by the code??
added to table and do a index/search. I currently have the following code
(partial listed here):
For Each PartInList In Me.PartList.ItemsSelected
P.Index = "PartNumber"
P.Seek "=", Forms!frmcreatequote!PartList
If Not P.NoMatch Then
Q!part = P!partnumber
If P!GSA = 1 Then
Q!price = (P!unitPRICE * 0.75)
......
Next PartInList
My problem is that i can't do a 'search' using a column in the list box,
because the bound column is now null (due to multiple selections). How can I
add each row to the table and do a search for data on another table using the
row that is currently in use by the code??