Comment enregistrer les lignes d'une table dans un fichier
Fermé
hafande
-
19 avril 2020 à 02:41
hafande Messages postés 1 Date d'inscription dimanche 19 avril 2020 Statut Membre Dernière intervention 19 avril 2020 - 19 avril 2020 à 12:11
hafande Messages postés 1 Date d'inscription dimanche 19 avril 2020 Statut Membre Dernière intervention 19 avril 2020 - 19 avril 2020 à 12:11
A voir également:
- Windev hajoute
- Table ascii - Guide
- Comment ouvrir un fichier epub ? - Guide
- Comment réduire la taille d'un fichier - Guide
- Fichier rar - Guide
- Le fichier à télécharger est la nouvelle note de service de votre entreprise. importez ce fichier dans le bon dossier sur l'espace pix cloud. donnez à ce fichier les mêmes droits d'accès que les autres notes de service. ✓ - Forum Windows
1 réponse
yg_be
Messages postés
23342
Date d'inscription
lundi 9 juin 2008
Statut
Contributeur
Dernière intervention
21 novembre 2024
Ambassadeur
1 550
19 avril 2020 à 09:37
19 avril 2020 à 09:37
bonjour, qu'as-tu essayé?
19 avril 2020 à 12:11
K est un entier
K0 est un entier
K0 = TableOccurrence(TABLE_PROJET)
POUR K = 1 A K0
TPROJET.Numprojet = TABLE_PROJET.COL_NUMPRO[K]
TPROJET.libelprojet = TABLE_PROJET.COL_LIBELLE[K]
TPROJET.typrojet = TABLE_PROJET.COL_TYPEPRO[K]
TPROJET.codprovince = TABLE_PROJET.COL_CODPROV[K]
TPROJET.coutproj = TABLE_PROJET.COL_COUT[K]
HAjoute(TPROJET)
FIN
TableSupprimeTout(TABLE_PROJET)
Info(" enregistrement reussi")