I have a user form with a SeekBar on it that the user can change which will raise the _ValueChanged event. However, I'm also loading in data from a database occasionally and the loaded data can also change the value of the Seekbar. But, I want the commands in the _ValueChanged event to fire only if the user changes the value, not the data. Is it possible to differentiate between the two events? Here's some sample pseudocode:
* I just realized that the scenario I proposed wasn't accurate - rewriting it.
B4X:
Sub MySeekBar_ValueChanged
...do something...but only if the user changes the value, not the loaded data...
End Sub
* I just realized that the scenario I proposed wasn't accurate - rewriting it.
Last edited: