Thankyou very much for your speedy response it has saved a lot of head scratching at my end
Further down the script I have other similarly written lines such as
Yes, it applies. It would translate into something like this if together with new keyword.
[tt] Dim oRecipient As new CDOEXM.IMailRecipient[/tt]
would be ported to late-binding
[tt] Dim oRecipient
'then some where later before using it
set oRecipient=createobject("CDOEXM.IMailRecipient")[/tt]
This is normal mode. It may not necessarily createobject(). It might be assigned from something resultant object etc...
With "Option Explicit", dim is strictly necessary (except for dynamic array), else it is optional.
Just want to correct the last sentence where I changed my mind in the phrasing without move the segment to proper place. It should be read of course like this.
>With "Option Explicit", dim is strictly necessary, else it is optional [blue](except for dynamic array)[/blue].
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.