I want to check if the Text box has some text entered by the user but can't. The statement below always returns false
if (MyLLVTextEdit->getMessage() == NULL)
{
MessageBox(NULL,"No Text", "no Text",NULL);
}
also tried
if (MyLLVTextEdit->getMessage() == "")
{
MessageBox(NULL,"No Text", "no Text",NULL);
}
if (MyLLVTextEdit->getValue() == NULL)
{
MessageBox(NULL,"No Text", "no Text",NULL);
}
if (MyLLVTextEdit->getValue() == "")
{
MessageBox(NULL,"No Text", "no Text",NULL);
}
Any ideas please?
Don't familiar with your library, but you should use
strcmp
function to compare strings (char*), to check if string is empty, you may callstrlen
operator==
may be used only if you use some string classes likestd::string
QString
or whatever