When I click on the item, it glows with a color set to "Pressed color" and a "click" sound is heard. Is there any way I can remove this event? How to make this event disabled?
Yes. You can set the pressed color to transparent, in the designer. It disables the color animation.
Tell me the click sound is still there and I'll post code to remove it.
Yes. You can set the pressed color to transparent, in the designer. It disables the color animation.
Tell me the click sound is still there and I'll post code to remove it.
For i = 0 To CustomListView1.Size - 1
Dim jo As JavaObject = CustomListView1.GetPanel(i).Parent
jo.RunMethod("setSoundEffectsEnabled", Array(False))
Next