hello,
i have a list box to which i keep addign records.
i also ahve a delete button.
when i click on the delete button i want the record in the listbox to get deleted and it shoudl eb physically removed.
its an unbound form.
i have used the following code in my delete button but the record is still seen in the list box.
Dim str As String
str = "" & Me!lstInvoice.Column(5)
colList.Remove str
thanks
i have a list box to which i keep addign records.
i also ahve a delete button.
when i click on the delete button i want the record in the listbox to get deleted and it shoudl eb physically removed.
its an unbound form.
i have used the following code in my delete button but the record is still seen in the list box.
Dim str As String
str = "" & Me!lstInvoice.Column(5)
colList.Remove str
thanks