Hello.
Can anyone help?
I will move the list obtained via php SELECT from tbl in MySQL to Listview1.
If I click on any line in Listview1, it does not respond.... (SelectionColor should change....in AfterPicking, Enable buttons should change...etc). None of that will happen.
Can you post a simple project here showing this problem? With any sample list.
Edit.
After thinking about it, I can answer that any change to the properties of the ListView such as colors, font, etc., resets the entire ListView. You can't change the appearance of a ListView without creating the entire ListView from scratch.
Set ListView.SelectionColor out of the AfterPicking block...you can set it before picking.
I have the same behavior if set the SelectionColor inside the AfterPicking block, but it works if I set it out of the block (I don't know if it's a bug or not, but it's a bit strange behavior).
As I mentioned earlier, after changing any properties, the ListView is reset, and therefore the display of the selected item is also reset. You can get around this by reselecting the item programmatically.
I've already tried about everything with AfterPicking in ListView1... It won't work for me. Is there any other alternative than ListView1 to display the list?