hi guys iam working on a project, in my app project i have edittext1 and a button
i want my app to work like this :
once the user write in edittext1 the word "all" and something else for exampel "allfriends " and then click on the button some msg says "this is all"
and once just the word "all" is typed without something else it shows the msg "this isnt all" i use this code but the statement if isnt working.....thanks a lot!!
if edittext1.text = "all" & edittext1.text then
msgbox ("this is all", "this is all")
else if edittext1.text = "all" then
msgbox ("this isnt all", "this isnt all")
end if
i want my app to work like this :
once the user write in edittext1 the word "all" and something else for exampel "allfriends " and then click on the button some msg says "this is all"
and once just the word "all" is typed without something else it shows the msg "this isnt all" i use this code but the statement if isnt working.....thanks a lot!!
if edittext1.text = "all" & edittext1.text then
msgbox ("this is all", "this is all")
else if edittext1.text = "all" then
msgbox ("this isnt all", "this isnt all")
end if