AuthorMessage
Corayzon
Regular
Posts: 67

hey guys,
in lots of my code to reduce lines i use a little more complex but very effect if statement format...
basicly u use the ':' which represents the end of a statment with the '_' which represents the next line is attached to the end of the line it is writin on...
it sounds a little confusing but heres a example:
Code:
If strA = "matt" then _
   DoCode("=]"): _
   DoMoreCode(":D")

so now we have a if statement in a normal structure that has no End If.