Easy way to show/hide rows on desktoplistbox?

Hi!

Is there a easy way to show/hide rows on desktoplistbox?

like… lbx.hideRowAt(2)=true?

Thank you!

Alex

Unfortunately, no. You have to delete the rows you want to hide, and then restore the list to “unhide” them. This of course means that you have to store the source data somewhere other than in the listbox itself, which is good MVC programming practice anyway.

1 Like