It would be nice to have ELSE-"action" with the IF-"action".
Timo
Professional Software Development Tools
It would be nice to have ELSE-"action" with the IF-"action".
Timo
Yes, Yes!!
"Missing or not missing"
It should be nice to have "else"; we are waiting for the news in v6.0.0.3, but the missing else is no great restriction:
If Condition 1
Do something
Goto label Next
End If
If !(Condition 1)
Do something else
End If
Next (label)
------------------
/jfn
If Condition 1
Do something
Goto label Next
End If
If !(Condition 1)
Do something else
End If
Next (label)
--> It works, but it's not good using GOTOs
Its very unreadable !An ELSE statement is better.
You don't need the gotos.
if(condition)
A
end if
if(!condition)
B
end if
If "condition" is true, "B" will never be performed.
--[[ Indigo Rose Software Developer ]]