Xojo2025R1: errors

I have just downloaded the newest release 2025R1, I want to use it with the existing project that runs well with Xojo2024R4. As soon as I have clicked on Run toolbar button to test this on my local machine I have noticed errors that are not showing under 2024R4. All the errors seem to be of the type:

Error: Type "String" has no member named "StringValue".

They are generated for code like this:

s = s + ResultsList.CellTextAt(j, i).StringValue.ReplaceAll("'","`") + quote  

Here is the snapshot:

Can some experienced Xojo developer give me some hints as to why this is happening and what should I do to fix it? Thanks.

Y’all need to read release notes…

They separated the cell renderers from CellTextAt so you now need to use CellRendererAt.

2 Likes

Yeah, I read the release notes but didn’t get this, anyway, thanks for pointing this out.
I will research this topic a little more to see if I know how to do it correctly. Thanks again.

You don’t need to use .StringValue. As CellTextAt return a string value.

s = s + ResultsList.CellTextAt(j,i).ReplaceAll…

1 Like

Valdemar,
It looks like your suggestion works while the substitution of CellTextAt with CellRendererAt requires some additional work, see the snapshot:

A CellRenderer is not a string.

https://documentation.xojo.com/api/web/weblistboxstylerenderer.html

And seems that the docs are with outdated examples.

If you want the string, you use CellTextAt and remove “StringValue”
If you want the renderer, you use CellRendererAt

OK, I have substituted CellTextAt in places where it was relevant (I think), see snapshot below:

This seems to avoid the error now.
Thanks for help all of you guys.