I have a series of ListViews that, when selected, populate Label1 with a relevant text string.
Is there any way to advance the ListView position by +1 or -1, and in doing so, updating Label1 by a Click event on label1?
Can you even call the ListView1_ItemClick from Label1_ItemClick? This is the error I get when I attempt it:
"Compiling code. Error
Error parsing program.
Error description: Undeclared variable 'position' is used before it was assigned any value.
Occurred on line: 758
ListView1_ItemClick (Position As Int, Value As Object)"
Is there any way to advance the ListView position by +1 or -1, and in doing so, updating Label1 by a Click event on label1?
Can you even call the ListView1_ItemClick from Label1_ItemClick? This is the error I get when I attempt it:
"Compiling code. Error
Error parsing program.
Error description: Undeclared variable 'position' is used before it was assigned any value.
Occurred on line: 758
ListView1_ItemClick (Position As Int, Value As Object)"