HI bullethead,
Thanks for your comment.
I'm already using the DblClick event to popup a form to give the user the abality of changing the data but I found that's a long way to change simple data.
That's why i was looking for something more simple to change it.
Do you know about ActiveX Listbox, I think that there's one which does that, but i can't find it.
Phetu
Main Topics
Browse All Topics





by: bulletheadPosted on 2003-03-04 at 02:10:51ID: 8063277
I don't think you can edit data in a listbox directly. What about if you used the Click or Double Click event to edit the source data itself, something like:
1.ListInde x, 0).Value = newval
Private Sub ListBox1_DblClick(ByVal Cancel As MSForms.ReturnBoolean)
newval = InputBox("Enter new value?", "New value")
Range("A2").Offset(ListBox
End Sub
would work for the first column. Not sure how to get it to work on the other columns though?