1 pièce(s) jointe(s)
Insertion dans Oracle Forms
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
Code:
1 2 3
| if :chk_1 = 1 then
:txt_1 := '- essai 01';
end if; |
case à cocher N°2
Code:
1 2 3 4 5
| if :chk_2 = 1 then
:txt_1 := :txt_1||CHR(10)||'- essai 02';
end if; |
Case à cocher N°3
Code:
1 2 3 4 5
| if :chk_3 = 1 then
:txt_1 := :txt_1||CHR(10)||'- essai 03';
end if; |
Le problème, 1er ligne marche, 2e ligne marche, et puis 3e ligne ne marche plus pourtant il y aura 10 lignes
voici un capture d'écran pour le forms en question