home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_01_02 / 1n02031b < prev    next >
Text File  |  1990-07-09  |  483b  |  13 lines

  1.  
  2.    to handle remoteCommand msgstring 
  3.      conditions 
  4.        when item 1 of msgstring = "addRecord" 
  5.          send addRecord item 2 of msgstring, item 3 of msgstring,\ 
  6.                         item 4 of msgstring, item 5 of msgstring 
  7.        when item 1 of msgstring = "changeRecord" 
  8.          send changeRecord item 2 of msgstring, item 3 of msgstring,\ 
  9.                            item 4 of msgstring, item 5 of msgstring 
  10.      end conditions 
  11.    end remoteCommand 
  12.  
  13.