home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
World of Shareware - Software Farm 2
/
wosw_2.zip
/
wosw_2
/
DATABASE
/
APFORM.ZIP
/
APFORM.SC
< prev
next >
Wrap
Text File
|
1990-12-02
|
809b
|
42 lines
; Copyright (c) 1989/90 RichPlum Ltd. All Rights Reserved.
release procs all
release vars all
proc system_chk()
if version() < 3
Then beep
Quit "To execute APFORM you must be using PARADOX 3"
Endif
if memleft() < 57*1024
Then beep
Quit "APFORM requires a minimum of 57K to function"
Endif
endproc
system_chk() ;check that APFORM can be loaded
release procs all
release vars all
retval = true
APFORM_INIT = true ;inform APFORM to reset its variables
while retval
AutoLib = SDir()+"Apform"
APfinit()
release procs APFINIT
if not retval
then quitloop
endif
APForm()
endwhile
release procs all
release vars all
Quit "APFORM unloaded"