Awesome day to all! almost done with my system.. just one last question for now, (i hope) hehe..
say i have a Text1 (for username) and Text2 (for emailaddress)
if(Text1 == [username in database] AND Text2 == [eadd in database]
{
msgbox "Already exist"
}
else if(Text1 == [username in database] AND Text2 != [eadd in database]
{
data will be added to the table
}
else if(Text1 != [username in database] AND Text2 == [eadd in database]
{
data will be added to the table
}
else
{
data will be added to the table
}
that's what i want to happen, but i just don't know how to implement that in code..