| | |
File of *Type*
Thread Solved |
•
•
Join Date: Sep 2008
Posts: 10
Reputation:
Solved Threads: 1
The declaration of the type is:
and the file implementation of it is here:
My problem is that when i try to compile the code it gives the error "Type TMediaLibrary needs finalization - not allowed in file type". This is my first post on any coding community site as most problems have already been solved already, but this has stumped me and google.
Thanks alot for any help.
Pascal and Delphi Syntax (Toggle Plain Text)
type TMediaLibrary = record Title:string[30]; TrackNo:integer; Artist:string[30]; Album:string[30]; Year:string[4]; Genre:string[30]; Comment:String[30]; Directory:string; end; var SongInfo: TMediaLibrary;
and the file implementation of it is here:
Pascal and Delphi Syntax (Toggle Plain Text)
procedure TForm1.Button1Click(Sender: TObject); var SongFile:string; MediaLibrary: file of TMediaLibrary; <<<Error is here begin . . . . AssignFile(MediaLibrary, 'C:\Program Files\toMedia Player\data\libr.db'); rewrite(MediaLibrary); Write(MediaLibrary, SongInfo); CloseFile(MediaLibrary); end;
My problem is that when i try to compile the code it gives the error "Type TMediaLibrary needs finalization - not allowed in file type". This is my first post on any coding community site as most problems have already been solved already, but this has stumped me and google.
Thanks alot for any help.
![]() |
Similar Threads
- upload download any file type to sql DB using c# windows form (C#)
- Windows Explorer forces file type search (Windows NT / 2000 / XP)
- File type help (Computer Science)
- Anyone know what .AL file type is. Please help (Mac Software)
- Convert any file type to pdf with distiller (C#)
- How do I get the default action of a specific file type? (Visual Basic 4 / 5 / 6)
- Windows media player- Does not support file type! (Windows Software)
- Having problems with a file type (Geeks' Lounge)
- Missing Mailto Protocol Reg File (Web Browsers)
Other Threads in the Pascal and Delphi Forum
- Previous Thread: Time scroll bar
- Next Thread: I need help with my code
| Thread Tools | Search this Thread |





