elseif

March 6th, 2008 No Comments   Posted in Controls

elseif IF statement condition.
elseif is used with IF. The statements after the elseif are
executed if the expression is true and all the preceding IF and
elseif expressions are false. An expression is considered true if
the real part has all non-zero elements. Read More

if

March 6th, 2008 No Comments   Posted in Controls

if if statement condition.
The general form of the if statement is Read More

else

March 6th, 2008 No Comments   Posted in Controls

else Used with IF.
else is used with IF. The statements after the else are executed
if all the preceding IF and ELSEIF expressions are false. Read More