Page 1 of 1

If function

PostPosted: Sun Jan 15, 2006 5:23 pm
by Troodon
How the if function works? Not the same way as in many programming programmes. (visual basic, lotus script, html)

PostPosted: Sun Jan 15, 2006 6:03 pm
by Novice
Code: Select all
if (condition==true)
{
execute this code;
...
}
else if (condition!=true)
{
execute this code;
...
}
else execute this code;

re:

PostPosted: Tue Jan 17, 2006 4:29 pm
by Troodon
Thank you.