Does GLBASIC support fixed length file creation for random access rather than sequential access? If yes, please give an example of opening a file (and reading a record) where all the records are of the same length (fixed length records). Here is an example of opening a fixed record length of 1024 file for random access (in CBasic language): OPEN "datafile.dat" RECL 1024 AS fileId%