Hi Greg,
Thanks for the reply! Yes, that’s that I found for the error, but still scratching my head.
The error is coming in the RowData method, during the select
:
If filter = "" Then
rs = Session.platedDB.SelectSQL(sql)
Else
rs = Session.platedDB.SelectSQL(sql, filter + "%", filter + "%", filter + "%")
End If
I have tried different connections, with different names, new connections on each call, etc. and still get the error when the Reload() method is called, even from a button that does nothing else, yet don’t get it if I just reset the DataSource to itself, which is how it was set on creation:
Dashboard.ListBox1.DataSource = Dashboard
I’ll poke at it a bit more and report back, but for now I have a workaround. I’ll see if I can replicate with the example app.
Thanks!