|
Tricia
The B> prompt means that your code had a SWITCH block of code in it and it hit a BREAK command with no ending ENDSW command in the code. To get the R> prompt back, type ENDSW. Then edit the code and insert the missing ENDSW. The structure of a CASE block is:
SWITCH (.variablename)
CASE 'first possibility'
actions
BREAK
CASE 'second possibility'
actions
BREAK
etc
DEFAULT
actions
BREAK
ENDSW
David Blocker
|
- R to B Tricia PORTER
- Re: R to B Richard Starkey
- Re: R to B David M. Blocker
- Re: R to B Tricia PORTER
- Re: R to B Richard Starkey
