Hello, consider the following two lines:
With the first line, I get the following error:
If I leave the argument constant(3 in this example), everything is running like a charm.
txt123.Text is defined and it has value.
What's the reason for this weird behavior?
B4X:
'CallSubDelayed2(aRecipesAddEdit, "loadDataByID", txt123.Text)
CallSubDelayed2(aRecipesAddEdit, "loadDataByID", 3)
With the first line, I get the following error:
java.lang.Exception: Sub loaddatabyid signature does not match expected signature.
If I leave the argument constant(3 in this example), everything is running like a charm.
txt123.Text is defined and it has value.
What's the reason for this weird behavior?