Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
open (
& unit = fhand, ! fhand is an integer set to a value
& file = iFilename,
& status = 'UNKNOWN',
& access = 'DIRECT', ! Otherwise it assumes a record header
& form = 'UNFORMATTED',
& recl = 1,
& err = 100) ! 100 is a label which tells you an error has occurred
write (fHand, rec=1) bfType, bfSize, bfReserved, bfOffBits
close (fHand)