Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - srj

#1
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%