8 messages in org.openoffice.fr.progRe: [prog] "Le symbole a déjà reçue u...
FromSent OnAttachments
LE LOUARNE SergeFeb 17, 2005 10:52 pm 
Laurent GodardFeb 17, 2005 11:00 pm 
LE LOUARNE SergeFeb 17, 2005 11:34 pm 
Laurent GodardFeb 18, 2005 12:01 am 
Bernard MarcellyFeb 18, 2005 5:08 am 
LE LOUARNE SergeFeb 18, 2005 5:48 am 
Bernard MarcellyFeb 18, 2005 7:28 am 
LE LOUARNE SergeFeb 18, 2005 9:45 am 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:Re: [prog] "Le symbole a déjà reçue une autre définition"Actions...
From:Bernard Marcelly (marc@club-internet.fr)
Date:Feb 18, 2005 5:08:18 am
List:org.openoffice.fr.prog

1 do while enuChamps.hasMoreElements 2 enuchamps.nextElement() 3 for i = LBound(oValeurs()) to UBound(oValeurs()) 4 enuChamps.Content = oValeurs(i).text 5 next 6 loop

Mauvaise utilisation de l'énumération, à mon avis. Il faudrait plutôt Dim unChamp As Object 1 do while enuChamps.hasMoreElements 2 unChamp = enuchamps.nextElement() 3 for i = LBound(oValeurs()) to UBound(oValeurs()) 4 unChamp.Content = oValeurs(i).text 5 next 6 loop

Bernard