CellTextAt changed?

I upgraded to the latest Xojo. Suddenly the old way that the example project showed for custom cell no longer works. Here is programming I used to use to create a custom cell:

Listbox2.CellTextAt(i,0) = New StyleClass_ListboxCheckboxCell(Rec3.bRemove)

Now I get an error saying that there is more than one method with this name and this doest match any of the signatures. This caused 783 errors. I can’t test on a single error what to do because I have to fix 783 errors before it can run. Anyone have an idea how to set the cell to one of my cell style classes??? TIA

There’s a whole section in the blog post about this.

It looks like you’ll need to change it from .CellTextAt to .CellRendererAt if you are using a cell renderer there instead of a string.

Thank you for the quick help. I make the changes.