A very strange compiler error

I have some problems how solve this strange error:
mainWindows.UploadFile.Pressed, line 92
There is more than one method with this name but this does not match any of the available signatures.
ListOfColorFound_lb.ListOfColorFound_lb.AddRow (… )

The name of the Control DesktopListBox appears 2 times in the error, but in the code is correct :
ListOfColorFound_lb.AddRow (_…)

The code was working for many days where I am was coding, today some things is change and I have no idea how to solve this blocking situation.

I have also jut installed the new v3, but do not change.
Any idea will be very appreciate
thank you

You have included in the parameters a Variant (JSONItem.Value) and a double (CDbl). The parameters must all be String.

2 Likes

Thanks