I've trying to do a text value check with many different ways and always there is something that doesn't work!
How can I make this?
- Code: Select all
if (mfd_enter.text == "REB")
{
MFD = 1;
booted = 0;
}
I'm sure I've done this earlier.
if (mfd_enter.text == "REB")
{
MFD = 1;
booted = 0;
}
if (strcmp(mfd_enter.text, "REB") == 0)
{
MFD = 1;
booted = 0;
}
Users browsing this forum: No registered users and 1 guest