For Each Syntax Like VBScript

For Each Syntax Like VBScript

Postby floebel » Wed May 29, 2013 11:05 pm

Is there a way to emulate For Each syntax in FiveWin similar to VBScript when using CreateObject?
floebel
 
Posts: 4
Joined: Mon Aug 27, 2012 1:34 am

Re: For Each Syntax Like VBScript

Postby Colin Haig » Thu May 30, 2013 12:29 am

Antonio helped me with this a while ago - hope it helps

Code: Select all  Expand view


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
 


Colin
Colin Haig
 
Posts: 310
Joined: Mon Oct 10, 2005 5:10 am


Return to FiveWin for Harbour/xHarbour

Who is online

Users browsing this forum: jmartial and 108 guests