You are here: Home DOCUMENTATION information SBASIC Manual - Page 31

Technological Arts Inc.

Your Shopping Cart

Your Cart is currently empty.

SBASIC Manual - Page 31

Article Index
SBASIC Manual
Page 2
Page 3
Page 4
Page 5
Page 6
Page 7
Page 8
Page 9
Page 10
Page 11
Page 12
Page 13
Page 14
Page 15
Page 16
Page 17
Page 18
Page 19
Page 20
Page 21
Page 22
Page 23
Page 24
Page 25
Page 26
Page 27
Page 28
Page 29
Page 30
Page 31
Page 32
Page 33
Page 34
Page 35
Page 36
Page 37
Page 38
Page 39
Page 40
Page 41
Page 42
Page 43
Page 44
Page 45
Page 46
Page 47
Page 48
Page 49
Page 50
Page 51
Page 52
Page 53
Page 54
Page 55
Page 56
Page 57
Page 58
Page 59
Page 60
Table of Contents
Index
All Pages

     SBasic User's Manual     SBasic Version 2.7             Page 31
     Printed:  December 5, 1999

               case  2                  ' if selector = 2...
               case  3                  ' or 3...
               foo = n + 2              ' change FOO
               endcase                  ' end of second case

               foo = 4                  ' default action...
          endselect

     This example shows the use of multiple CASE statements within a CASE
     clause.  This feature comes in handy if your code must perform the
     same function for a group of selector values.

     This example also shows the method for performing a default action.
     The line FOO = 4 executes if no CASE clause matches the selector
     value.  Note that the default clause does not require an initial CASE
     statement or a terminating ENDCASE statement.

     Also, this example shows that the selector value for this example is
     an expression.  You can use any valid algebraic expression as the
     selector value in a SELECT statement.

     Note, however, that CASE statements only accept a numeric value, a
     constant, or a variable as an argument.  You cannot use an algebraic
     expression as the argument to a CASE statement!  Doing so will
     generate a compiler error.

     Finally, this example shows that you can change the selector value
     within a CASE clause, without affecting the actions of the SELECT
     statement.  This is because control passes to the ENDSELECT statement
     immediately after executing the code in any CASE clause.  Thus, any
     following CASE clauses do not evaluate the changed selector value.



     The EXIT statement allows you to leave a looping structure before the
     terminating condition, if any, is reached.  Control automatically
     jumps to the end of the currently active looping structure.

     You can also use EXIT to leave a SELECT-CASE structure.  In this case,
     control will jump to the corresponding ENDSELECT statement.

     Example:

          for n = 1 to 10
               if n = 5
                    exit
               endif
          next

     Here, control automatically leaves the FOR-NEXT loop when N equals 5.