Bonjour à tous
J'ai un forms oracle, il ya plusieurs checkbox, j'aimerai à chaque case à cocher, il ya une insertion dans un champ TXT
donc voici chaque triggeur de chaque case à coché (WHEN-CHECKBOX-CHANGED)
case à cocher N°1
case à cocher N°2
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3 if :chk_1 = 1 then :txt_1 := '- essai 01'; end if;
Case à cocher N°3
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5 if :chk_2 = 1 then :txt_1 := :txt_1||CHR(10)||'- essai 02'; end if;
Le problème, 1er ligne marche, 2e ligne marche, et puis 3e ligne ne marche plus pourtant il y aura 10 lignes
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5 if :chk_3 = 1 then :txt_1 := :txt_1||CHR(10)||'- essai 03'; end if;
voici un capture d'écran pour le forms en question
Partager