Here's a copy of the event:
Sub MySeekBar_ValueChanged (index As Float, value As Object)
CallSub2(Starter, "ReloadData", False)
End Sub
ReloadData is too long to post, but the general idea looks like this:
Sub ReloadData
MySeekBar.Value = ValueFromDatabase
End Sub
The idea is that the ReloadData should only be called when a user changes the value of the SeekBar. But, sometimes, when the data is loaded, it can change the value of the SeekBar, too, which can cause another fire of ReloadData...and possibly an endless loop.