home *** CD-ROM | disk | FTP | other *** search
- /* RhinoCom Script */
-
- call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'
- call SysLoadFuncs
-
- 'UNLOADSPLICE BEMSPL'
-
- /* get the comport number from the user */
- 'RQUERY comport'
- port = rc
- 'ENTRYFIELD "Enter COM port" "Enter Port" "'||port||'"'
- port = rc
- if port = '' then signal quit
- 'RSET comport' port
-
- 'opencomm'
- call SysSleep 2
- 'loadsplice BEMSPL'
- exit
-
- /* if user aborts, close YAK */
-
- quit:
- 'menuaction ExitProgram'
- exit
-
-
-
-
-