Heh--thanks John!  One of the new features I want to incorporate into
the new site is a "member news" section so we can keep track of what
our members are up to.  I don't know how everyone else feels, but I
think if I had a better sense of who everyone is, what everyone's
working on, etc. it would make the group more cohesive and allow us to
network better.  We can talk about details at the next meeting.

Matt


On Wed, 15 Dec 2004 15:22:21 -0600, John Ivanoff <[EMAIL PROTECTED]> wrote:
> a shameless plug would be the author bio rss feed
> http://www.sys-con.com/author/feeds.cfm?id=5103
> 
> 
> On Wed, 15 Dec 2004 14:29:50 -0600, Matt Woodward <[EMAIL PROTECTED]> wrote:
> > Technically yes, sending the PDF out en masse probably isn't a great
> > idea.  Here's a link to that article:
> > http://www.sys-con.com/story/?storyid=47203&DE=1
> >
> > And there's a follow up in this month's CFDJ:
> > http://www.sys-con.com/story/?storyid=47446&DE=1
> >
> > These articles might be a good primer for the discussion in February.
> >
> > [shameless plug] While you're on the CFDJ site you can also check out
> > my Flex with CF article:
> > http://www.sys-con.com/story/?storyid=47443&DE=1
> >
> > Matt
> >
> > On Wed, 15 Dec 2004 14:08:07 -0600, John Ivanoff <[EMAIL PROTECTED]> wrote:
> > > ColdFusion Developer's Journal has a CF101 on components this month
> > > but I can't find a link for it on their web site
> > > http://www.sys-con.com/coldfusion/ I have a PDF of it but would that
> > > be illegal to send a copy of the article?
> > >
> > > I'm up for cfc in feb.
> > >
> > >
> > > On Wed, 15 Dec 2004 13:47:26 -0600, Matt Woodward <[EMAIL PROTECTED]> 
> > > wrote:
> > > > Thanks Tom!  The reason I suggested February for talking CFCs in
> > > > general is because Tom has agreed to come talk to us in February about
> > > > cfcPowerTools.  (Don't mean to put you on the spot here Tom--if that
> > > > doesn't work out for some reason we can reschedule.)
> > > >
> > > > I figure we can have a general discussion about CFCs at the beginning
> > > > of the meeting and then let Tom show how cfcPowerTools can make our
> > > > lives a lot easier!
> > > >
> > > > Matt
> > > >
> > > > On Wed, 15 Dec 2004 12:24:54 -0600, Schreck, Tom
> > > > <[EMAIL PROTECTED]> wrote:
> > > > >
> > > > >
> > > > >
> > > > > I'm developing an application for generating CFCs.  My app is called
> > > > > cfcPowerTools.  You can check it out at www.cfcpowertools.com.  Right 
> > > > > now
> > > > > the site is informational.  I'm wrapping up how I'm going to 
> > > > > distribute my
> > > > > application.  I hope to have it finished and available the first part 
> > > > > of
> > > > > January.  Please check out the site.  I have a white paper and an
> > > > > informational movie on what the tool will do for you.
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > Thanks
> > > > >
> > > > >
> > > > >
> > > > > Tom Schreck
> > > > >
> > > > > 972-361-9943
> > > > >
> > > > >  ________________________________
> > > > >
> > > > >
> > > > > From: Jordan Gouger [mailto:[EMAIL PROTECTED]
> > > > >  Sent: Wednesday, December 15, 2004 10:54 AM
> > > > >  To: [EMAIL PROTECTED]
> > > > >  Subject: Re: CFC help
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > This may or may be a stupid question, as I am trying out CFC's too, 
> > > > > but when
> > > > > you are instantiating the component, do you need to instaniate each 
> > > > > method,
> > > > > or like in Java or .net, you instantiate the class, and have all of 
> > > > > the
> > > > > methods / properties in the component work like class? Also how are
> > > > > CFPROPERTY tags used properly? Also does anyone have any tips about
> > > > > developing XML apps with Cold Fusion?
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > Matt, and others I remember that a few days ago, that group was 
> > > > > talking
> > > > > about getting a CFC meeting together. I'd be very intrested in 
> > > > > attending
> > > > > that, even if it means traveling from SA.
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > Thanks for help,
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > Jordan
> > > > >
> > > > >  Chris Gomez <[EMAIL PROTECTED]> wrote:
> > > > >
> > > > >
> > > > > I'm trying out cfc's for the first time. I can get it to invoke
> > > > >  correctly, but I'm having problems changing the default arguments. It
> > > > >  won't accept any URL vars (besides 1). I tried cfinvokeargument and 
> > > > > it
> > > > >  didn't work either. Any ideas?
> > > > >
> > > > >  Thanks,
> > > > >  Chris
> > > > >
> > > > >  Here's the current cfc code:
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >  SELECT TRO.Faction, TRO.Name, TRO.Class, TRO.VType AS XVType,
> > > > >  TRO.Weight, TRO.APrev as Prev, TRO.ANext as Next, TRO.UnitID,
> > > > >  Mass.TMass as uMass, TRO.TMass, TRO.Faction AS XFaction, TRO.Era AS
> > > > >  XEra, TRO.Votes AS AVotes
> > > > >
> > > > >  FROM Era INNER JOIN (Faction INNER JOIN (Weight INNER JOIN 
> > > > > (VTypeINNER JOIN
> > > > > (Mass INNER JOIN (Class INNER JOIN TRO ON Class.ClassID =
> > > > >  TRO.Class) ON Mass.MassID = TRO.TMass) ON VType.VTID = TRO.VType) ON
> > > > >  Weight.ID = TRO.Weight) ON Faction.FactionID = TRO.Faction) ON
> > > > >  Era.EraID = TRO.Era
> > > > >
> > > > >  WHERE
> > > > >  (TRO.Era = #Arguments.XEra#) AND
> > > > >
> > > > >  (((TRO.Faction)=#Arguments.XFaction#) AND
> > > > >  ((TRO.VType)=#Arguments.XVType#) AND ((TRO.Weight)=3))
> > > > >
> > > > >  ORDER BY TRO.TMass, TRO.Name;
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >  test page code:
> > > > >
> > > > >
> > > > >  returnvariable="MechQuery">
> > > > >  value="#XFaction#">
> > > > >  ----------------------------------------------------------
> > > > >  To post, send email to [EMAIL PROTECTED]
> > > > >  To unsubscribe:
> > > > >  http://www.dfwcfug.org/form_MemberUnsubscribe.cfm
> > > > >  To subscribe:
> > > > >  http://www.dfwcfug.org/form_MemberRegistration.cfm
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > >
> > > > --
> > > > Matt Woodward
> > > > [EMAIL PROTECTED]
> > > > http://www.mattwoodward.com
> > > > ----------------------------------------------------------
> > > > To post, send email to [EMAIL PROTECTED]
> > > > To unsubscribe:
> > > >    http://www.dfwcfug.org/form_MemberUnsubscribe.cfm
> > > > To subscribe:
> > > >    http://www.dfwcfug.org/form_MemberRegistration.cfm
> > > >
> > > >
> > > ----------------------------------------------------------
> > > To post, send email to [EMAIL PROTECTED]
> > > To unsubscribe:
> > >    http://www.dfwcfug.org/form_MemberUnsubscribe.cfm
> > > To subscribe:
> > >    http://www.dfwcfug.org/form_MemberRegistration.cfm
> > >
> > >
> >
> > --
> > Matt Woodward
> > [EMAIL PROTECTED]
> > http://www.mattwoodward.com
> > ----------------------------------------------------------
> > To post, send email to [EMAIL PROTECTED]
> > To unsubscribe:
> >    http://www.dfwcfug.org/form_MemberUnsubscribe.cfm
> > To subscribe:
> >    http://www.dfwcfug.org/form_MemberRegistration.cfm
> >
> >
> ----------------------------------------------------------
> To post, send email to [EMAIL PROTECTED]
> To unsubscribe:
>    http://www.dfwcfug.org/form_MemberUnsubscribe.cfm
> To subscribe:
>    http://www.dfwcfug.org/form_MemberRegistration.cfm
> 
> 


-- 
Matt Woodward
[EMAIL PROTECTED]
http://www.mattwoodward.com
----------------------------------------------------------
To post, send email to [EMAIL PROTECTED]
To unsubscribe: 
   http://www.dfwcfug.org/form_MemberUnsubscribe.cfm
To subscribe: 
   http://www.dfwcfug.org/form_MemberRegistration.cfm

Reply via email to