Re: Problem with untyped files (writing to file)

Posted by Andrew on January 28, 2006

In Reply to Re: Problem with untyped files (writing to file) posted by DelphiMan on January 27, 2006

MyRecord = record
Name: string[50];
Desc,
Code,
Keys: TStrings;
End;

That's the record declaration. If it might help, below is how I open the file.

Assignfile( myfile, filename);
If FileExists( filename) Then Reset( myfile, 1 )
Else Rewrite( myfile, 1 );

Related Articles and Replies