home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Datafile PD-CD 3
/
PDCD_3.iso
/
pocketbk
/
utilsm
/
notepad
/
batt
/
LOAD.OPL
< prev
next >
Wrap
Text File
|
1993-01-01
|
397b
|
28 lines
PROC LoadProc:
local f$(128),t$(128),x%
dinit"File to copy"
dfile f$,"From:",0
dfile t$,"To:",1
if dialog
do
busy "Copy"
gat 1,40
gprintb"Process started!",235,3
gat 1,60
gprintb"Go to Battery Checker",235,3
trap copy f$,t$
if err
do
beep 5,50
x%=x%+1
until x%=20
dinit"Error while copying!"
dtext"Error:",err$(err)
dialog
stop
endif
busy off
until key
endif
ENDP