I decided to use "Format File" as a way to save data from one program
to be opened in another, because it seemed like the easiest way to
bundle and unbundle the different types of data.
My format is "%d;%d;%s;%s" where I used ";" as a separator.
The problem is such: when my string is too long with spaces in between,
for example:
"5;10;XXXX
XXXX
XXXX;OOOO". The "Scan for File" function only reads the XXXX as the 3
input.
and if it's too short, like "5;10;XX;OO", then my 3 input becomes XX;OO.
How do I make sure that my entries are clearly distinguished from
eachother so that I could retrieve them with "Scan File". And how do I
tell the program that, for example, the 3rd entry will have exactly 60
characters.
Thanks
Aleks.