home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Actual 15
/
CDACTUAL15.iso
/
cdactual
/
program
/
basic
/
QBNWS102.ZIP
/
QEXEC.ZIP
/
QEXECDEM.BAS
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
BASIC Source File
|
1990-02-02
|
232 b
|
13 lines
DEFINT A-Z
DECLARE FUNCTION QExec% (CmdLne$)
CLS
PRINT "We will be shelling to ASK.EXE and return an errorlevel..."
FileName$="ASK.COM"+CHR$(0)
RetCode = QExec(FileName$)
PRINT "You pressed the number "; RetCode
END