Unable to drag-reorder Listbox rows

I am not able to drag a listbox row up or down to reorder it. Here are the particulars:

Allow Row Reordering = True,
Implemented CellClick event with a return of True (some fields are editable),
Implemented MouseDown event with a return of False,
Implemented DragReorderRows event with a return of False.

The problem is the DragReorderRows event never fires when I click and drag a row. There is no indication the row is even being dragged, either. Did I do someting wrong with the other events, perhaps the return values?

The Return True from CellClick may be the problem. Comment that temporarily and see if you can drag reorder.

2 Likes

I can now reorder the listbox by returning False in the CellClick event. Thank you for the suggestion.

1 Like