I need to disable ListView selection when i get Panel in Front of ListView so that i can using keys up or down on remote control do thinks in panel.
I try using:
Dim lv1 As ListView
Dim pnl1 As Panel
lv1.Enabled = False
lv1.BringToFront
pnl1.RequestFocus
But when i press up and down buttons on my remote control panel items is moving like it should but listview lv1 items are moving also up and down and they should not be moving...so how to fix this?
I try using:
Dim lv1 As ListView
Dim pnl1 As Panel
lv1.Enabled = False
lv1.BringToFront
pnl1.RequestFocus
But when i press up and down buttons on my remote control panel items is moving like it should but listview lv1 items are moving also up and down and they should not be moving...so how to fix this?