bonjour à tous , merci d'avance pour votre aide
mon problème est :
j'ai une bouton "ajouter au panier" et une table "mon panier"
avec ces codes ci , quand j'ajoute les articles, il y a toujours une ligne dans ma table, et chaque fois ça affiche que le dernier article que j'ai ajouté
j'ai besoin de votre aide
merci d'avance
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 nIndice est un entier nIndice = TableAjoute(TABLE_Mon_Panier) rprixnet est un réel = SAI_prixnet_commande nquantite est un entier = SAI_quantitecommande EcranVersFichier() TABLE_Mon_Panier[nIndice].COL_Référence_Article = SAI_ref_article_commande TABLE_Mon_Panier[nIndice].COL_Prix_NET = SAI_prixnet_commande TABLE_Mon_Panier[nIndice].COL_quantité = SAI_quantitecommande TABLE_Mon_Panier[nIndice].COL_prixtotal = (rprixnet*nquantite) TableAffiche(TABLE_Mon_Panier,taInit)
Partager