je teste 2 zones quantité pour voir si elles sont différentes
et j'ai ce message "type mismatch" ....
pour moi elles sont definies de la même façon dans mon masque et je ne maitrise pas bien
le débogueur...
Michael (SMS-Phobique)
----------------------------
"La théorie, c'est quand on sait tout et que rien ne fonctionne. La pratique, c'est quand tout fonctionne et que personne ne sait pourquoi."
Albert EINSTEIN
Sub traiteinfo(doc As NotesDocument)
doc.statut="Demande traitée" + Cstr(Now)
Dim histo As NotesItem
Set histo=doc.Getfirstitem("Histo")
Call histo.Appendtotextlist("Demande traitée le " + Cstr(Now))
If doc.quantite <> doc.quantite_exp_info Then
doc.comments_info_util = doc.comments_info
doc.quantite_exp_util = doc.quantite_exp_info
End If
doc.envoi="8"
Call doc.save(True,False)
End Sub
re quand tu fais appel en lecture a un champ d'un notesdocument il faut mettre l'indice doc.quantite(0) car notes gere les champs comme les array
Cordialement
Michael (SMS-Phobique)
----------------------------
"La théorie, c'est quand on sait tout et que rien ne fonctionne. La pratique, c'est quand tout fonctionne et que personne ne sait pourquoi."
Albert EINSTEIN
ilf au passer par des options de masquages et renseigner un champ qui indiquera si on masque ou pas la zone
Cordialement
Michael (SMS-Phobique)
----------------------------
"La théorie, c'est quand on sait tout et que rien ne fonctionne. La pratique, c'est quand tout fonctionne et que personne ne sait pourquoi."
Albert EINSTEIN