home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Des Monats 1995 October
/
CD10_95.bin
/
swdirekt
/
netze
/
wincimd
/
install
/
scripts.lib
/
POSSERVE.SCR
< prev
next >
Wrap
Text File
|
1994-12-29
|
1KB
|
63 lines
!
! Copyright (c) 1994
! by CompuServe Incorporated, Columbus, Ohio
!
! The information in this software is subject to change without
! notice and should not be construed as a commitment by CompuServe.
!
! Pos-Serve:
! Connect to Pos-Serve
! Success: returns %Success
! Failure: saves error msg in %FailureMsg and returns %Failure
!
!+V
! "3.5.2"
!-V
show "Verbindungsaufbau mit Pos-Serve LL";
Tries = 5;
on cancel goto Return_Cancel;
Wait_PosServe:
if Tries = 0 goto PosServe_Failure;
Tries = Tries - 1;
wait
"@" goto Send_CNS,
%mdm_Failure goto PosServe_Failure,
"CONNECTED" goto Return_Success
until 80;
send %CR;
goto Wait_PosServe;
Send_CNS:
wait until 5;
show "Pos-Serve LL-Kennung wird ⁿbertragen...";
send "cns" & %CR;
goto Wait_PosServe;
PosServe_Failure:
define %FailureMsg = "Pos-Serve LL antwortet nicht";
exit %Failure;
Return_Cancel:
exit %Cancel;
Return_Success:
exit %Success;