Jump to content

Question about programs


wwat

Recommended Posts

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

Link to comment

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.

Link to comment
Guest
This topic is now closed to further replies.

×
×
  • Create New...