Hello everyone.
my question is pretty simple allthough i can't find a correct answer..I want to be able to check if a multiline textfield is empty or not.
i have tried this but without result.
if (my_txt.text != "")
{
do something;
}
if (my_txt.text.length != 0)
{
do something;
}
Non of these work.I searched other forums and i realized that this could work only on single line textfield.But what about multiline??