I just noticed that
Spinner.SelectedIndex.0 (or any value)
won't trigger the matching
Spinner_ItemClick (Position as Int, Value as Object) sub routine.
Is it suppose to, or is this the correct functionality?
It just seems a bit weird to programmatically change a spinner value and not trigger the _ItemClick subroutine. But, maybe I am incorrect in my thinking?
Thanks.
P.S.
However, I am aware that you can simply use the following to trigger the event sub;
Spinner_ItemClick(0,"Whatever")
Which accomplishes the task. But, I am just curious as to why it doesn't trigger it when you change the spinner position/value via code?
Spinner.SelectedIndex.0 (or any value)
won't trigger the matching
Spinner_ItemClick (Position as Int, Value as Object) sub routine.
Is it suppose to, or is this the correct functionality?
It just seems a bit weird to programmatically change a spinner value and not trigger the _ItemClick subroutine. But, maybe I am incorrect in my thinking?
Thanks.
P.S.
However, I am aware that you can simply use the following to trigger the event sub;
Spinner_ItemClick(0,"Whatever")
Which accomplishes the task. But, I am just curious as to why it doesn't trigger it when you change the spinner position/value via code?
Last edited: