PC SOFT

FORUMS PROFESSIONNELS
WINDEVWEBDEV et WINDEV Mobile

Accueil → WINDEV 2024 → équivalent "For Each" de VB pour un objet OLEDB
équivalent "For Each" de VB pour un objet OLEDB
Débuté par olivier.wauquier, 22 fév. 2006 16:32 - 1 réponse
Posté le 22 février 2006 - 16:32
Comment trouver un équivalent au "For Each" de VB pour un objet OLEDB ?

Voir code ci-dessous:

Sub ProcessAttachments(iMsg As CDO.Message)
Dim iBp As CDO.BodyPart
Dim Filename As String
Dim Atchmts As CDO.IBodyParts
Set Atchmts = iMsg.Attachments

' Note that all attachments are contained in body
' parts -- the collection object
' exposes the IBodyParts interface.
If Atchmts.Count > 0 Then
For Each iBp In iMsg.Attachments
Filename = iBp.Filename
If Not Filename = "" Then

' Use the file name
End If
Next iBp
End If
End Sub


D'avance merci

Olivier WAUQUIER
tel: 0327895973
Posté le 23 février 2006 - 20:58
POUR TOUT FICHIER SUR IDFICHIER

FIN

Fab


"Olivier WAUQUIER" <olivier.wauquier@free.fr> a écrit dans le message de
news: 43fc6fd1$1@news.pcsoft.fr...

Comment trouver un équivalent au "For Each" de VB pour un objet OLEDB ?

Voir code ci-dessous:

Sub ProcessAttachments(iMsg As CDO.Message)
Dim iBp As CDO.BodyPart
Dim Filename As String
Dim Atchmts As CDO.IBodyParts
Set Atchmts = iMsg.Attachments

' Note that all attachments are contained in body
' parts -- the collection object
' exposes the IBodyParts interface.
If Atchmts.Count > 0 Then
For Each iBp In iMsg.Attachments
Filename = iBp.Filename
If Not Filename = "" Then

' Use the file name
End If
Next iBp
End If
End Sub


D'avance merci

Olivier WAUQUIER
tel: 0327895973