PS If you are in the Wash DC area June 15-16th you can learn a lot more about CF MX at 
CFUN-02 http://www.cfconf.org/cfun-02/ Speakers include Ben Forta, Charlie Arehart, 
Steve Drucker, Hal Helms and Michael Dinowitz.
- Michael Smith, TeraTech, Inc http://www.teratech.com/

Christine Lawson wrote:

> Nope, this is the final version - the Preview Release was not final and still had 
>some bugs, etc. I would highly suggest you uninstall and then install the final 
>trial: http://www.macromedia.com/software/trial_download/.
>
> Best Regards,
> Christine
>
> -----Original Message-----
> From: Frank Mamone [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, May 29, 2002 1:55 PM
> To: CF-Talk
> Subject: Re: ColdFusion MX / Studio MX now available!
>
> Are these the same as the preview releases? Can we just install over them?
>
> ----- Original Message -----
> From: "John Beynon" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Wednesday, May 29, 2002 12:22 PM
> Subject: RE: ColdFusion MX / Studio MX now available!
>
> > In DWMX? It's fixed (on my install at least) it took 10 minutes to start
> the
> > preview release this morning, but I've just ran up the trial problem in 10
> > seconds :)
> >
> > > -----Original Message-----
> > > From: John McKown [mailto:[EMAIL PROTECTED]]
> > > Sent: 29 May 2002 17:29
> > > To: CF-Talk
> > > Subject: RE: ColdFusion MX / Studio MX now available!
> > >
> > >
> > > I wonder if they will fix the annoying security bug that
> > > crashes it every other time I open it.
> > >
> > >
> > > John McKown
> > >
> > >
> > >
> > > > -----Original Message-----
> > > > From: Shawn Grover [mailto:[EMAIL PROTECTED]]
> > > > Sent: Wednesday, May 29, 2002 11:15 AM
> > > > To: CF-Talk
> > > > Subject: RE: ColdFusion MX / Studio MX now available!
> > > >
> > > >
> > > > And then CFTalk goes deathly quiet as everyone rushes off to
> > > > download MX...
> > > > LOL
> > > >
> > > >
> > > >
> > > > -----Original Message-----
> > > > From: Neil Clark - =TMM= [mailto:[EMAIL PROTECTED]]
> > > > Sent: Wednesday, May 29, 2002 2:10 AM
> > > > To: CF-Talk
> > > > Subject: ColdFusion MX / Studio MX now available!
> > > >
> > > >
> > > > Macromedia has just announced the availability of ColdFusion MX /
> > > > Studio MX!
> > > >
> > > >
> > > > :-)
> > > >
> > > >
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > Neil Clark
> > > > Team Macromedia
> > > > http://www.macromedia.com/go/team
> > > >
> > > > Announcing Macromedia MX!!
> > > > http://www.macromedia.com/software/trial/.
> > > >
> > > > -----Original Message-----
> > > > From: Matt Liotta [mailto:[EMAIL PROTECTED]]
> > > > Sent: 29 May 2002 07:13
> > > > To: CF-Talk
> > > > Subject: RE: Array Question
> > > >
> > > > COM is evil! If you want to have a good middle tier that works with
> > > > multiple languages you will need to use Java and/or Corba.
> > > >
> > > > -Matt
> > > >
> > > > > -----Original Message-----
> > > > > From: David Jones [mailto:[EMAIL PROTECTED]]
> > > > > Sent: Tuesday, May 28, 2002 11:01 PM
> > > > > To: CF-Talk
> > > > > Subject: Array Question
> > > > >
> > > > > Thanks, I'll check out that site.
> > > > >
> > > > > Another Question
> > > > >
> > > > > I am using com objects to return arrays to the CF page. I
> > > do most of
> > > > my
> > > > > coding ASP and the objects work wonderfully. I seem to be running
> > > > > into
> > > > a
> > > > > lot
> > > > > of silly problems when trying to code this way for CF. My
> > > objective
> > > > > is
> > > > to
> > > > > have separation between my database layer and my
> > > presentation layer.
> > > > So
> > > > > that
> > > > > if I need to convert the code later to some other
> > > language it wont
> > > > > be
> > > > a
> > > > > problem. Some projects I do require CF, some ASP, and some times
> > > > others.
> > > > > So
> > > > > I want to have good componentized code that I can reuse.
> > > How do you
> > > > guys
> > > > > handle things like this in CF? Do any of you program with COM
> > > > regularly? I
> > > > > am getting the feeling that it might not be the best idea
> > > with CF.
> > > > > Any guidance would be appreciated.
> > > > >
> > > > > Thanks,
> > > > >
> > > > > Dave
> > > > >
> > > > >
> > > > > -----Original Message-----
> > > > > From: Jeff Garza [mailto:[EMAIL PROTECTED]]
> > > > > Sent: Wednesday, May 29, 2002 1:32 AM
> > > > > To: CF-Talk
> > > > > Subject: RE: Unstructured info
> > > > >
> > > > >
> > > > > The function UBound(arrayname, 2) returns the greatest value from
> > > > > the second dimension of the array ArrayName. The closest
> > > function in
> > > > > CF to this
> > > > is
> > > > > ArrayMax(arrayName) but that only returns the greatest
> > > value from a
> > > > one
> > > > > dimensional array.  You'll have to copy the values from second
> > > > dimension
> > > > > of
> > > > > your array to a separate array and then get the ArrayMax
> > > of the new
> > > > array.
> > > > > You might also want to check CFLib.org and see if there is a user
> > > > defined
> > > > > function that will deal with multi-dimensional arrays.
> > > > >
> > > > > Jeff
> > > > >
> > > > > -----Original Message-----
> > > > > From: David Jones [mailto:[EMAIL PROTECTED]]
> > > > > Sent: Tuesday, May 28, 2002 10:19 PM
> > > > > To: CF-Talk
> > > > > Subject: RE: Unstructured info
> > > > >
> > > > >
> > > > > This may sound like a silly question but I am having a hard time
> > > > figuring
> > > > > this out.
> > > > >
> > > > > What is the CF equivalent to the VBScript UBound(arrayName,2)? I
> > > > > have
> > > > been
> > > > > all through the docs and cant find it.
> > > > >
> > > > > Thanks,
> > > > >
> > > > > Dave
> > > > >
> > > > >
> > > > >
> > > > >
> > > >
> > > >
> > > >
> > >
> >
>
> 
______________________________________________________________________
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to