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
 
----- Original Message -----
To: <
Sent: Thursday, September 26, 2002 11:32 AM
Subject: R to B

I did a simple command at the R> and I got a B>.
 
Does anyone know why that happend and what I need to do to get back to the R> ?  Tricia

Reply via email to