GRLOAD integer (Disk microbees only)

This command will load the graphics file specified by the previous OPEN command. The OPEN command must be given before using this command.

Note: Files saved out with a particular stream number must be re-loaded with that same stream number.

Program Example.

00100 REM Graphics Load
00110 HIRES
00120 PLOT 0,0 TO 0,255 TO 511,255 TO 511,0 TO 0,0
00130 OPEN "a",6,"graphic"
00140 GRSAVE 6
00150 CLOSE 6
00160 CLS
00170 OPEN "i",6,"graphic"
00180 GRLOAD 6
00190 CLOSE 6
00200 END 

Try it

See also GRSAVE, OPEN, CLOSE.