Forum Discussion
hugetv
10 years agoVisitor
"TheEndless" wrote:
That looks like you're getting a back index back from the event. You should add a null check...
Instead ofselection = seriesList.GetEntry(msg.GetIndex())[msg.GetData()]
Break it into multiple statements...list = seriesList.GetEntry(msg.GetIndex())
if list <> invalid then
selection = list[msg.GetData()]
end if
I thank you very much worked