1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
| void tabl_lister()
{
gotoxy(6,6);printf("ÚÄÄÄÄÄÄÄÄÄÄÄÂÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÂÄÄÄÄÄÄÄÄÄÄÄÄÄÄÂÄÄÄÄÄÄÄÄÄÄÂÄÄÄÄÄÄÄÄÄÄ¿\n");
gotoxy(6,7);printf("³ Code ³ Designiation ³ Quantite ³ PA ³ Marge ³\n");
gotoxy(6,8);printf("ÃÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄ´\n");
}
tabl_lister(); // ***
j=0;
while(!feof(fa))
{
flushall();
fscanf(fa,"%s\t%s\t%s\t%s\t%s\n",&one.code_article,one.designiation,one.quantite,one.prix_achat,one.marge);
gotoxy(6,9+j);printf("³ ³ ³ ³ ³ ³\n");
gotoxy(8,9+j);printf("%s",one.code_article);
gotoxy(20,9+j);printf("%s",one.designiation);
gotoxy(40,9+j);printf("%s",one.quantite);
gotoxy(55,9+j);printf("%s",one.prix_achat);
gotoxy(66,9+j);printf("%s",one.marge);
gotoxy(6,9+j);printf("³ ³ ³ ³ ³ ³\n");
j++;
}
gotoxy(6,12+j);printf("ÀÄÄÄÄÄÄÄÄÄÄÄÁÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÁÄÄÄÄÄÄÄÄÄÄÄÄÄÄÁÄÄÄÄÄÄÄÄÄÄÁÄÄÄÄÄÄÄÄÄÄÙ\n");
} |
Partager