Hi,
With the following code, i get an error when I run runtime error 2 at 0001.0056)...
VAR
gegevens: FILE OF datalogg;
recgegevens: datalogg;
output_text: Text;
output_rec: datalogg;
i: integer;
BEGIN
ASSIGN(gegevens,'c:\temp\log-data.dta');
{$I-} RESET(gegevens)...
To Glen9999,
Thx a lot! This works, I had the largest problem assigning it to a txt-file.
I suppose that, in case the data file contains more than one record (I have records of this kind), I can put the loop in something like
while(NOT(EOF(filegegevens))) DO
BEGIN
...
END;
Or is the pointing...
Hello,
Thx guys for the reaction. Just fyi, I'm really a TurboPascal green.
I went trough the program, and found out that de data file I want to look at is a record in Pacal.
TYPE tabel=RECORD
compnaam: STRING[12];
compnr: BYTE;
diskstal...
Hello,
I have a customer who uses a TurboPascal program of 1994 to get readings out of a climate computer. The program creates logfiles with the daily information. These logfiles are stored as .dta files. I want to use these data in new programming language, and so I would like to convert the...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.