Jump to content

Question about programs


wwat

Recommended Posts

Posted

When programing an 'action' the program provides 8 options, the first 3 being:

Run (If)

Run Then

Run Else

 

I'm trying to work out what the difference is between the three.

 

Any help appreciated.

 

Thanks,

Wayne

Posted

Wayne,

 

Run (If) Runs the code from the top of the program. The Then code will only be executed if the IF conditions are True. The Else code will be executed if the IF conditions are False.

 

Run Then Runs the Then code regardless of the state of the IF conditions.

 

Run Else Runs the Else code regardless of the state of the IF conditions.

 

Hope this helps.

 

Frank

Posted

Hello Wayne,

 

Run Then and Run Else are fairly self-explanatory; they run the code in the Then clause or the Else clause, respectively.

 

Run (If) evaluates the If clause and runs either the Then or the Else clause, depending on whether the If is True or False. If the If clause is empty, then the Then clause is run.

Guest
This topic is now closed to further replies.

×
×
  • Create New...