Having more than one method

I’m having a “more than one method” while trying to run a SQLite DB (see attached image) but there is no method with the same name. DB_Bigl is a ListBox

What am I doing wrong?

Thank you

replace the parenthesis after addrow by a space

1 Like

AddRow will only take strings, but you are sending an integer in the second parameter.

3 Likes

So the OP needs to change “integerValue” to “integerValue.ToString”.

Or just BiglRS.Field("Num_Bigl").StringValue

3 Likes

I see two times DB_Bigl below the error line (DB_Bigl.DB_Bigl.AddRow etc.)

Yes, and I don’t understand why. In the code there only one of them

Yes, I changed IntegerValue to StringValue and it worked.

Thanks

1 Like