Any probs with CF5 COM?

2001-06-20 Thread Dylan Bromby
I know this vague, but has anyone experienced any odd problems with CF5.0 and COM objects? --Dylan ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives:

RE: Any probs with CF5 COM?

2001-06-20 Thread David Shadovitz
I'm not running 5.0, but Dain Anderson pointed out to me that the order of the arguments to CreateObject has changed. Beta 3: objWord = CreateObject(COM, Word.Application, Local); RC1: objWord = CreateObject(COM, Local, Word.Application); It also may be that looping over collections sometimes

Re: Any probs with CF5 COM?

2001-06-20 Thread Michael Dinowitz
Looping over collections inside CFSCRIPT doesn't work. This might be what he was referring to. One of the major pet peeves we had. I'm going to check on that attribute order switch. They said that they were moving it back to the original for the full release. I'm not running 5.0, but Dain