- Code: Select all
if (LoginName.text == Name & LoginPass.text == Pass)
{
SendActivationEvent("Work");
what is the error?
here is a picture of the Error:
if (LoginName.text == Name & LoginPass.text == Pass)
{
SendActivationEvent("Work");
if (strcmp(LoginName.text, Name) == 0 && strcmp(LoginPass.text, Pass) == 0)
{
SendActivationEvent("Work");
}
Users browsing this forum: No registered users and 1 guest