I have a Value List type listbox (lstdeliverables) that contains three columns. The third column contains a "Quantity" value. I would like to allow the user to select any number of the rows in the listbox and update its quantity value for the row using a value from a textbox (txtNewQuantity) in the same form that the user would use to provide a new valid quantity value. Each time I do this using the following snippit of code I get an error 424 'Object Required'. Can anyone explain why this doesn't work? I thought this would be quite easy and straightforward.
For Each varItm In Me.lstdeliverables.ItemsSelected
Me.lstdeliverables.Column(2, varItm) = Me.txtNewQuantity
Next
For Each varItm In Me.lstdeliverables.ItemsSelected
Me.lstdeliverables.Column(2, varItm) = Me.txtNewQuantity
Next