Example of SCREENFIND, SCREENFIELD, and SCREENRECT
; ; Example of SCREENFIND, SCREENFIELD, and SCREENRECT ; LET File1 = “HPSWINFO.PUB.SYS” DISPLAY “^[&a0c0R^[J” SEND “LISTF ” & File1 & ...
; ; Example of SCREENFIND, SCREENFIELD, and SCREENRECT ; LET File1 = “HPSWINFO.PUB.SYS” DISPLAY “^[&a0c0R^[J” SEND “LISTF ” & File1 & ...
; ; This shows how to execute a command file on the HP e3000 from a ; script on the PC. ; SEND WAITC 17 SEND “XEQ HPCMDFIL” END
; ; Checks if file exists on HP e3000. ; LET sVar1 = “UNKNOWN” GOSUB FileTest IF ( sRETURN = 1 ) DISPLAY “File Found^M^J” ELSE DISPLAY “File NOT Found^M^J” ...
; This example calls an HP e3000 and logs in, transfers a file, and logs off. ; If the host does not answer, the user is prompted to retry. LABEL DIAL ; dial a number SEND ATDT15551212 ; set ...
; ; This example calls an HP e3000 and logs in and runs an application. ; If the host does not answer, the user is prompted to retry. LABEL DIAL ; dial a number SEND ATDT15551212 ; set timer to ...
# This example calls an HP e3000 and logs in. # If the host does not answer, the user is prompted to retry. LABEL DIAL # dial a number SEND ATDT15551212 # set timer to 40 seconds TIMER 40 # go to ...
; ;This example logs onto a HP9000. ; LABEL SENDBREAK XMITC 13 TIMER 5 ONTIMER SENDBREAK WAITS login: GOTO SENDID LABEL LOGINAGAIN WAITS login: LABEL SENDID SEND doug TIMER 5 ONTIMER LOGINAGAIN ...
Change the transfer parameters as appropriate to BINARY, ASCII, RECSIZE, SAVEINF. For Windows, modify DOSPRMPT.PIF to use a window. For DOS, use COMMAND.COM in place of DOSPRMPT.PIF. The host ...
Change the transfer parameters as appropriate to BINARY, ASCII, RECSIZE, SAVEINF. ; ; Destination directory LET Var1="C:\temp\" ; ; File selection LET Var2="F@" ; ; Maximum number of files to be ...
Below is an MPE/iX command file that allows for file transfer operations within a menu. This can also be called from a logon UDC to allow file transfers without giving access to a colon (MPE) ...