mvDDecode

*************************************************************************

* mvDDecode: Decodes and describes an mvDesigner message

*              Warning: This is a Raining Data development tool.

*              The protocols used are not published and are subject

*              to change without warning.

*************************************************************************

* 18Oct00 Add c_MESSAGEAS, verify overall message length

              

include wbp w3Include

CRT @(-1):

CRT "Enter message:": ; Input raw

CRT @(-1):

        

meaning = ""

call w3mvDDecode(raw, meaning)

cnt = dcount(meaning, @am)

for i = 1 to cnt

    CRT meaning<i>

next i

stop