home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 13
/
CD_ASCQ_13_0494.iso
/
maj
/
2200
/
imagic2.exe
/
APPEL.BAS
< prev
next >
Wrap
BASIC Source File
|
1993-09-12
|
972b
|
35 lines
'Programme d'essai d'un appel à IMAG
CLS
PRINT "Voici une image affichée par IMAG"
PRINT "Vous quitterez cette image en appuyant sur Entrée"
PRINT
PRINT "Ne fonctionne que si le répertoire contenant IMAG.EXE et IMAGE.01 est actif"
PRINT
PRINT "Appuyez sur une touche !"
DO
LOOP UNTIL INKEY$ <> ""
'Cette ligne peut évidemment se trouver dans un programme plus long
SHELL "imag 9 image.01 0 0 28"
PRINT "Forme de l'appel en Basic: SHELL "; CHR$(34); "imag 9 image.01 0 0 28"; CHR$(34)
PRINT
PRINT "Si l'on faisait afficher cette image aux coordonnées ( 200, 200)"
PRINT "IMAG ne l'afficherait pas, faute de place à l'écran"
PRINT "L'appel sera alors:"
PRINT "Forme de l'appel en Basic: SHELL "; CHR$(34); "imag 9 image.01 200 200 28"; CHR$(34)
PRINT "Appuyez sur une touche"
DO
LOOP UNTIL INKEY$ <> ""
SHELL "imag 9 image.01 200 200 28"
PRINT "Programme APPEL.BAS exécuté"
PRINT "Appuyez sur une touche"
DO
LOOP UNTIL INKEY$ <> ""