I think I can describe this without posting code, so here goes.
I have a row in a SQLite column that contains an empty string value, stored as '' in the cell.
I read the value of that cell into the text property of a label, and the label displays "".
Now, I want to test the text property of that label in code, and I cannot get any statement to yield True.
I have tried the following:
(double quotes) If label.text="" then ...
(single quotes) If label.text='' then ...
(single quotes enclosed in double quotes) if label.text="''" then ...
(double quotes enclosed in double quotes) if label.text="""" then ...
Any suggestions? How does B4A handle empty strings?
Thanks in advance.