[Delphi5] Sa veux dire quoi " necessite une finalisation -non ...

Sa veux dire quoi " necessite une finalisation -non ... [Delphi5] - Programmation

Marsh Posté le 23-04-2001 à 10:13:17    

[#0000ff]  Bonjour cher(e)s  ami(e)s ....
 
 
Voila j'ai un petit soucis . Je desire creer un programme pour creer des fichiers , les enregistrer ....  
 
Mais voila , a chaque fois que je tente de le lancer il me met :  
 
'' [Erreur] Project2.dpr(16): Le type 'televe' nécessite une finalisation - non autorisé dans type fichier ''
 
sachant que mon type est celui ci :  
 
type
           televe=record
              nom:string[20];
              prenom:string[20];
              date:string;
           end;
 
 
var
F:file of televe
enreg:televe;
table:array[1..50] of televe;
choix:integer;
p,i:integer;
ne:longint;
nbenr:integer;
 
    merci d'avance ...
 
"blonde power"

Reply

Marsh Posté le 23-04-2001 à 10:13:17   

Reply

Marsh Posté le 23-04-2001 à 10:18:23    

essaye de mettre une taille a ta date: string; dans la déclaration de ton type televe...  
 
par exemple:

Code :
  1. televe=record
  2.     nom:string[20];
  3.     prenom:string[20];
  4.     date:string[8];
  5.   end;


devrait faire l'affaire.


---------------
www.alliancefrancophone.org ... Home is where the heart is
Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed