OPEN “temp.txt” FOR OUTPUT AS #1
PRINT #1, “Hello World”
CLOSE
OPEN “temp.txt” FOR BINARY AS #1
GET #1, a$
PRINT a$
Code: QB64: [Select]With the above, we’ll see a blank screen. a$ has a length of 0, so the GET statement got 0 bytes from the file to fill its contents.
It is now possible to have variable-length strings in User Defined Types (UDTs).is an empowerment of possibility to code an UDT.
in that case we need a warning in compiler or a trap error to avoid the case that you have shown in your post.
Please say me
what is the actual situation (inner managment or user managment) ?
Thanks to read