For Each Syntax Like VBScript
For Each Syntax Like VBScript
Is there a way to emulate For Each syntax in FiveWin similar to VBScript when using CreateObject?
-
- Posts: 310
- Joined: Mon Oct 10, 2005 5:10 am
Re: For Each Syntax Like VBScript
Antonio helped me with this a while ago - hope it helps
Colin
Code: Select all
for each oItem In oCMSFolder:Items
nItem++
dMail := oItem:ReceivedTime
cSender := oItem:sendername
cSubject := oItem:subject
cBody := oItem:body
for each oAttach In oItem:Attachments
cAttach := oAttach:filename
aadd(aAttach,{str(nItem,2),cAttach})
next
aadd(aData,{str(nItem,2),dtoc(dMail),(left(alltrim(cSender) + space(30),30)),(left(alltrim(cSubject) + space(30),30)),cBody})
next