Re: ATTENTION Adobe! Multiple Broken CF-Related Links on Adobe.com!

2013-04-15 Thread Jerry Barnes

Back up plan:  http://www.getrailo.org/index.cfm/download/

J

-

Ninety percent of politicians give the other ten percent a bad reputation.
- Henry Kissinger

Politicians are people who, when they see light at the end of the tunnel,
go out and buy some more tunnel. - John Quinton


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:355410
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Homesite 5.5

2011-06-14 Thread Jerry Barnes

I hate to sound like I'm hating on CFB - I love CFB - but I'm giving up on
using it for front end dev and just going to use it for pure CF.

I agree 100% with this.  And it's not hating on CF.  It's just using CF's
stronger attributes (server side computing) and using other tools for
client-side.

It is very tempting anytime someone asks a question about cfform or cflayout
to advise someone to switch to an alternative method, but I hold my tongue.
To each their own.


J

-

Ninety percent of politicians give the other ten percent a bad reputation. -
Henry Kissinger

Politicians are people who, when they see light at the end of the tunnel, go
out and buy some more tunnel. - John Quinton


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:345251
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Homesite 5.5

2011-06-13 Thread Jerry Barnes

That being said - if you don't like CFEclipse or CFBuilder and want to move
to something more modern, _definitely_ check out Dreamweaver CS 5.5. I'm
really, _really_ digging it lately especially in terms of how well it
supports JavaScript.


It's only a matter of time.  I am slowly migrating to the mac.  When I am
using my mac, I use Dreamweaver CS 5.  Compared to the older versions of DW,
it's not bad at all.  I like it better than CFEclipse.  And as you said, it
does a nice job with Javascript (very nice with the continuing growth of
jQuery).

I've already started customizing the tags in DW.  I had so many macros and
customizations that made Homesite my tool of choice.  After enough
customization, DW will probably be a more than capable replacement.

Now, if they would only implement tabs as spaces.

J


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:345229
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Homesite 5.5

2011-06-10 Thread Jerry Barnes

Glad I'm not the only one who still prefers it over the newer stuff :)

I use it everyday.

I try other applications, but I always come back.

J


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:345158
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: SOT: jquery(ui) menu

2011-04-04 Thread Jerry Barnes

I use click menu.

http://p.sohei.org/jquery-plugins/clickmenu/

I like it since by default it does not fly out on a mouse over.  No
modification necessary.


J

-

Ninety percent of politicians give the other ten percent a bad reputation. -
Henry Kissinger

Politicians are people who, when they see light at the end of the tunnel, go
out and buy some more tunnel. - John Quinton


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:343524
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: REGEX hell

2010-11-25 Thread Jerry Barnes

Regex that is useful but unfortunately, my skills are pretty weak in that
area.

I use an application named The Regex Coach' to build my code.  It has a
place to put the string you are trying to match and another place to put
your regex code.  As you modify the regex code, it highlights how much of
the string matches.

The program is free with the option of donating via paypal to the creator if
you like it.



J

-

No man's life, liberty, or property is safe while the legislature is in
session. - Mark Twain


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339530
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Dealing with tree node sorting

2010-11-25 Thread Jerry Barnes

How are you tracking parent/child relationship now?

When I build trees, I use an adjacency list model with a column for parent
id, a column for current id, and a column for the description.  When
building the tree, I retrieve the whole data set and then use a recursive
function to parse the tree.  I pass the query into the function and use
query of query so I don't have to continually hit the database.  This works
fine on small trees like nested menus.  Unfortunately,  it can be very slow
on large trees.  On large trees, I build the tree and save the results in a
table with an indent column and sort order column.  When new nodes are
added, I rerun the build and update the stored tree.  Not optimal, but it
works.


Anyway, the administration of the trees is pretty easy.  Just open a node
and pick it's new parent.

J

-

No man's life, liberty, or property is safe while the legislature is in
session. - Mark Twain


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339531
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF8 Autosuggest doesn't work

2010-11-20 Thread Jerry Barnes

Use jquery

I'll second this.  I use jQuery autocomplete and it works great.


J

-

No man's life, liberty, or property is safe while the legislature is in
session. - Mark Twain

The artificial aristocracy is a mischievous ingredient in government, and
provisions should be made to prevent its ascendancy. - Thomas Jefferson



On Fri, Nov 19, 2010 at 10:22 PM, Daniel Baughman dan.baugh...@gmail.comwrote:


 Use jquery

 Sent from my mobile device

 On Nov 19, 2010, at 7:46 PM, Richard  Steele r...@photoeye.com wrote:

 
  Hi, Need some help on this one. I couldn't get Ben Forta's autosuggest
 example to work. I had to make a virtual directory in IIS to the CFIDE
 folder in order for the button animation to work. But the icon just sits
 there and rotates. Nothing is suggested. I know that the cfartgallery is
 returning records. What am I missing?
 
  input_test.cfm
 
  cfform
  Art:
  cfinput type=text
 name=artname
 autosuggest=cfc:autosuggest.lookupArt({cfautosuggestvalue})
  /cfform
 
 
  autosuggest.cfc
 
  cfcomponent output=false
 
  cfset THIS.dsn=cfartgallery
 
 !--- Lookup used for auto suggest ---
 cffunction name=lookupArt access=remote returntype=array
  cfargument name=search type=any required=false default=
 
  !--- Define variables ---
  cfset var data=
  cfset var result=ArrayNew(1)
 
  !--- Do search ---
  cfquery datasource=#THIS.dsn# name=data
  SELECT artname
  FROM art
  WHERE UCase(artname) LIKE Ucase('#ARGUMENTS.search#%')
  ORDER BY artname
  /cfquery
 
  !--- Build result array ---
  cfloop query=data
  cfset ArrayAppend(result, artname)
  /cfloop
 
 !--- And return it ---
  cfreturn result
 /cffunction
 
  /cfcomponent
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339413
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: REgarding SQL Server (express vs full)

2010-06-01 Thread Jerry Barnes

Aqua Data studio should work fine as a front end.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334173
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: How to make a select option tag selected in CF?

2010-05-29 Thread Jerry Barnes

Oh and as a matter of preference (and for some code checking tools) I hate
it when tags are embedded in other tags.

Write a UDF that you can embed in the tag.  You'll never have to worry about
embedding again.

Something like isChecked(chkValue,qryValue) which would return an empty
string or checked.  Keeps the code clean.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334110
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Home Site+ and Windows 7

2010-05-24 Thread Jerry Barnes

Periodically, I'll download a bunch of editors to see if any match the
features I like about Homesite +.None have been able to replace Homesite
+ though.  Topystyle 4 is the only one to come remotely close.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:333962
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Not so simple date format question...

2010-04-28 Thread Jerry Barnes

You could also convert the date to a new format in a view.


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:333181
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: How to output formatted text from a CFC method

2010-03-30 Thread Jerry Barnes

Wrap the text in a pre tag.

On Tue, Mar 30, 2010 at 8:52 AM, Jason Fisher ja...@wanax.com wrote:


 So, you could make those line breaks br / tags -OR- return your current
 output to the browser in a large textarea which will show your line
 breaks cleanly.

 

 From: Kym Kovan dev-li...@mbcomms.net.au
 Sent: Tuesday, March 30, 2010 6:53 AM
 To: cf-talk cf-talk@houseoffusion.com
 Subject: Re: How to output formatted text from a CFC method

 Mike do a view source in the browser, you probably do have CRs and LFs
 but the browser looses them on display of course

 Kym





 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:332433
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Development Apps - Does anyone use homesite still?

2010-03-14 Thread Jerry Barnes

After reading this thread, I got interested in text and code editors again.
It seems to happen every two years or so.  I download Topstyle 4.  It is
very similar to Homesite + and customizable.  I think I will spend some more
time investigating it.


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:331727
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Make HomeSite+ Open Source? (WAS: RE: Development Apps - Does anyone use homesite still?)

2010-03-11 Thread Jerry Barnes

I have cs4 installed.  Maybe I should fire it up for my next project.

On Thu, Mar 11, 2010 at 9:20 AM, Raymond Camden rcam...@gmail.com wrote:


 While I'm firmly in the CFBuilder camp - for those who say Dreamweaver
 is slow and bloated... have you tried it lately? I had to use DWCS4
 for some articles I wrote for Adobe last year and I was _damn_
 impressed. It isn't as good as CFBuilder, but it worked very well and
 has some incredible features in regards to CSS/JS development.
 Seriously - if you don't like CFB and haven't tried a _modern_
 Dreamweaver, I'd give it a chance again.

 On Wed, Mar 10, 2010 at 7:13 PM, Jerry Barnes critic...@gmail.com wrote:
 
  I still use HOMESITE. I tried CFECLIPSE and I tried the beta version of
  Adobes CF developer thing.  Both are nice, both are a drain on system
  resources, slow, and bloated. Yes there are some nice features, but there
 is
  something to be said for just have a nice straight up, low burden code
  editing tool with insight, and a good search/replace routine.  And yes, I
  use Dreamweaver too... but it's also slow and bloated.
 
  That sums up my feelings exactly, except that I have tried dreamweaver,
 but
  don't use it.
 

 --
 ===
 Raymond Camden, ColdFusion Jedi Master

 Email: r...@camdenfamily.com
 Blog  : www.coldfusionjedi.com
 AOL IM : cfjedimaster

 Keep up to date with the community: http://www.coldfusionbloggers.o

 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:331628
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Make HomeSite+ Open Source? (WAS: RE: Development Apps - Does anyone use homesite still?)

2010-03-10 Thread Jerry Barnes

I still use HOMESITE. I tried CFECLIPSE and I tried the beta version of
Adobes CF developer thing.  Both are nice, both are a drain on system
resources, slow, and bloated. Yes there are some nice features, but there is
something to be said for just have a nice straight up, low burden code
editing tool with insight, and a good search/replace routine.  And yes, I
use Dreamweaver too... but it's also slow and bloated.

That sums up my feelings exactly, except that I have tried dreamweaver, but
don't use it.


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:331578
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Invitation to connect on LinkedIn

2010-03-05 Thread Jerry Barnes

LinkedIn
Jerry Barnes requested to add you as a connection on LinkedIn:
--

James,

I'd like to add you to my professional network on LinkedIn.

- Jerry

Accept invitation from Jerry Barnes
http://www.linkedin.com/e/kf_f_G1APNKUmMHaBOJgkT0vUW9a8-62-pGINmq/blk/I1864642450_2/1BpC5vrmRLoRZcjkkZt5YCpnlOt3RApnhMpmdzgmhxrSNBszYOnP0Rd38QdzgSe359bRZ3kQJUlDpHbP4VejwMc3gOcj4LrCBxbOYWrSlI/EML_comm_afe/

View invitation from Jerry Barnes
http://www.linkedin.com/e/kf_f_G1APNKUmMHaBOJgkT0vUW9a8-62-pGINmq/blk/I1864642450_2/39vc3kQczgSd3oUckALqnpPbOYWrSlI/svi/

-- 
DID YOU KNOW your LinkedIn profile helps you control your public image when 
people search for you? Setting your profile as public means your LinkedIn 
profile will come up when people enter your name in leading search engines. 
Take control of your image! 
http://www.linkedin.com/e/ewp/inv-22/

 
--
(c) 2010, LinkedIn Corporation

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:331381
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Jquery Ajax tabs -with Coldfusion

2009-11-10 Thread Jerry Barnes

You might need to post some code examples or a link to view.

I use both types of jquery scripts.  Neither has had any problem pulling
.cfm pages.


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:328214
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Baffled by Lost Session

2009-10-31 Thread Jerry Barnes

Try relocating to another page while passing the cfid and cftoken on the url
just to see if the session stays active.  This may help with tracking down
where the problem is.


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:327875
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: zip code list

2009-10-14 Thread Jerry Barnes

I found this:

http://www.zipcodeworld.com/zipcodefree.htm

Never used it, but I bookmarked it for future research.


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:327219
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Access db interface

2007-10-30 Thread Jerry Barnes
I think aquadata studios used to connect to access.


~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:292312
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Audio CD Creation software question

2007-10-17 Thread Jerry Barnes
Sorry.

Wrong list.

J

On 10/17/07, Jerry Barnes [EMAIL PROTECTED] wrote:

 Does anyone out there know of software that will burn a playlist of songs
 to multiple CD's?

 That is, suppose I have a playlist with several hours worth of mp3's.
 Obviously, this all won't fit on one audio CD.  In order to burn these, I
 have to split the playlist and do each CD individually.  It would be nice if
 some package just asked you to insert a new disk and moved on to the next
 file.

 I have googled this request several times, but I cannot find the right way
 to phrase the request in order to get back the results I need.  So, instead
 of continually banging my head against that wall, I thought I would ask all
 of you first.




~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291312
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Audio CD Creation software question

2007-10-17 Thread Jerry Barnes
Does anyone out there know of software that will burn a playlist of songs to
multiple CD's?

That is, suppose I have a playlist with several hours worth of mp3's.
Obviously, this all won't fit on one audio CD.  In order to burn these, I
have to split the playlist and do each CD individually.  It would be nice if
some package just asked you to insert a new disk and moved on to the next
file.

I have googled this request several times, but I cannot find the right way
to phrase the request in order to get back the results I need.  So, instead
of continually banging my head against that wall, I thought I would ask all
of you first.


~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291311
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


gethttprequestdata question

2007-04-09 Thread Jerry Barnes
I am working on a project w/ several other programmers.  Most of our
forms use a component that requires gethttprequestdata to be passed in
as an argument.  This is causing a little problem for me because I
have some post form processing which needs to be done to the data
before it is passed to this component.  Is there anyway to modify the
content part of gethttprequestdata so that my changes can be passed to
the component?  From my experiments and google searches, I tend to say
no.  If this is the case, I'll have to convince my fellow programmers
to change the component (should be passing form data in IMO), but I
would rather avoid this if I can. Any help will be appreciated.

~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7  
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274895
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


OT: SQL Question

2007-04-02 Thread Jerry Barnes
The following query is slow.  I'd like to speed it up a bit.  Any
suggestions would be appreciated.


SELECT
   F.pid,
   F.acrostic,
   F.recid,
   F.recordthread,
   F.aed_onset,
   F.d_form
FROM
   vfrm_sae F
LEFT OUTER JOIN
   v_sae_jna_mr M
ON
   F.recordthread = M.i_recordThread
WHERE
   (M.i_recid IS NULL)



Basically, the query is looking for items in one table that have not
been marked in another table.  I have done this before but don't ever
remember it being this slow.  I can probably figure this out on my own
at some point, but the mental block I have now may take several days
to work out.

Thanks.

J

~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274325
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: OT: SQL Question

2007-04-02 Thread Jerry Barnes
Thanks for your replies.

I didn't get a chance to play with anything this afternoon due to
meetings.  I'll try to implement something tommorrow and fill you all
in on the results.

The recordsets aren't that big.  About 9k records in one table and 3k
in the other.

~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade  see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274383
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


A humorous flash presentation for college football fans

2006-09-05 Thread Jerry Barnes
If you follow college football (especially, the ACC), you will get a
kick out of the following:

http://www.newsobserver.com/1235/story/481010.html

There are some previous presentations below this one that are humorous as well.

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:252023
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfm captchas

2006-03-08 Thread Jerry Barnes
I haven't seen this one referenced:

http://www.christophertown.com/projects/captcha/

J


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:234596
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: get parent items from list?

2005-06-02 Thread Jerry Barnes
Sounds like an adjaceny list model.

Does the list contain the whole tree or does a list only contain a path from 
one node to another while other lists contain other paths?



On 6/2/05, Emmet McGovern [EMAIL PROTECTED] wrote:
 
 Brain Meltdown. Maybe someone can help.
 
 I have a list such as (item1,item2,item3,item4,item5). The list can be any
 length. Item1 would be the parent of item2 and item2 would be the parent 
 of
 item3 and so on.
 
 What's the most efficient way of determining the parent of any item in the
 list and determining that item1 has no parent?
 
 Thanks,
 Emmet
 
 
 
 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:208373
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFSlider on Firefox

2005-02-10 Thread Jerry Barnes
Problem solved.  

I installed JRE 1.4.0_01 and it seems to be running fine.  

J

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:194055
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


CFSlider on Firefox

2005-02-09 Thread Jerry Barnes
I am trying to use cfslider in a web app.  It works fine in IE.  Alas,
when I open the page in Firefox, Firefox goes into a permanent spin
cycle.  When I close, I get the XP message box asking me if I would
like to send an error report to MS.

So, has anyone used cfslider in Firefox?  If so, what's the trick?  Am
I missing a security setting?  Any help would be greatly appreciated.

J

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:193914
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: BUT what does it @#$%^ DO?????

2004-12-16 Thread Jerry Barnes
What kind of install is Plum?  Does the install leave you with a simple
exe or does it sink its hooks into the registery and other places?  I'd
like to look at it, but I don't want to have a lot of material left
behind if I decide to uninstall.  

J

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187876
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: BUT what does it @#$%^ DO?????

2004-12-16 Thread Jerry Barnes
Cool.  Thanks for the info.

J 

-Original Message-
From: Adam Churvis [mailto:[EMAIL PROTECTED] 
Sent: Thursday, December 16, 2004 10:35 AM
To: CF-Talk
Subject: Re: BUT what does it @#$%^ DO?

Plum installation / uninstallation shouldn't mess with the Registry at
all.
Plum has its own configuration file in XML.

By default, Plum stores Client variables in the Registry, but we tell
people throughout Plum to use another method as soon as possible.  The
only reason why Plum defaults to Registry for Client storage is because
ColdFusion does so as well, and it saves additional steps from the setup
process.

Respectfully,

Adam Phillip Churvis
Member of Team Macromedia
http://www.ProductivityEnhancement.com

Download Plum and other cool development tools, and get advanced
intensive Master-level training:

* C#  ASP.NET for ColdFusion Developers
* ColdFusion MX Master Class
* Advanced Development with CFMX and SQL Server 2000

- Original Message -
From: Joe Rinehart [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Thursday, December 16, 2004 9:58 AM
Subject: Re: BUT what does it @#$%^ DO?


 Plum can be uninstalled through Add / Remove programs.  Not sure what
 it leaves behind...Adam?

 -joe


 On Thu, 16 Dec 2004 09:26:58 -0500, Jerry Barnes [EMAIL PROTECTED]
wrote:
  What kind of install is Plum?  Does the install leave you with a
simple
  exe or does it sink its hooks into the registery and other places?
I'd
  like to look at it, but I don't want to have a lot of material left
  behind if I decide to uninstall.
 
  J
 
 

 



~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187936
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: variables... to prefix or not to prefix

2004-12-13 Thread Jerry Barnes
I prefix my variables.  It helps with reading the code and debugging,
especially when someone who didn't write the code is doing the reading
or debugging.  I even prefix parameters for custom tags with p_
(attributes.p_blnDebug for example).  Different strokes for different
folks I guess. 

Anyway, here's another reason for prefixes:  a coworker used to have
problems naming variables with reserved words.  Using prefixes kills
this problem.

J

-Original Message-
From: Tangorre, Michael [mailto:[EMAIL PROTECTED] 
Sent: Monday, December 13, 2004 10:03 AM
To: CF-Talk
Subject: variables... to prefix or not to prefix

Just out of curiosity, who prefixes their variables with a data type
abbreviation...
 
integer - intVariableName
numeric - numVariableName
string - strVariableName
structure - stcVariableName
array - arrVariableName
object - objVariableName
query - qryVariableName
etc...
 
We are ever expanding our best practices and guideline documents and
this is an agenda point up for discussion soon... I want to some in with
some pros and cons.
At first glance, the code becomes more descriptive but I do see and have
run into, many problems such as passing around URL params.. do you
really want to give anymore information than necessary into the type of
data within a variable? What about if you encrypt variables?... The
number 1 could be viewed as URL.intSomeId but once encrypted it is no
longer an interger it is a string URL.strSomeId, this only touches the
tip here.
 
Anyone have anything to offer on this topic?
 
Thanks.
 
Mike




~|
Special thanks to the CF Community Suite Silver Sponsor - New Atlanta
http://www.newatlanta.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187402
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: sql LIKE question

2004-12-07 Thread Jerry Barnes
Are all of the account numbers the same length?  


J 

-Original Message-
From: Scott Mulholland [mailto:[EMAIL PROTECTED] 
Sent: Monday, December 06, 2004 6:11 PM
To: CF-Talk
Subject: sql LIKE question

Is there any way to force LIKE to match on leading zeros?  If I have a
query along the lines of:
 
select accountkey
from companies
where accountno LIKE '%#searchString#%'
 
and I search with a string of: 0059
 
I am getting results like:
 
05976574
12343459
59748311
 
It treats it as if I entered 59 in the search string.
 
Thanks,
Scott

---
[This E-mail scanned for viruses by Declude Virus]




~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186434
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: sql LIKE question

2004-12-07 Thread Jerry Barnes
I am not a SQL guru so this may be way off.

select  accountkey
fromcompanies
where   left(accountno,6) = '00'
And accountno LIKE '%#searchString#%' 

You would have to count the leading zeros everytime though and adjust
accordingly 
Which wouldn't be much fun.





-Original Message-
From: Scott Mulholland [mailto:[EMAIL PROTECTED] 
Sent: Monday, December 06, 2004 6:11 PM
To: CF-Talk
Subject: sql LIKE question

Is there any way to force LIKE to match on leading zeros?  If I have a
query along the lines of:
 
select accountkey
from companies
where accountno LIKE '%#searchString#%'
 
and I search with a string of: 0059
 
I am getting results like:
 
05976574
12343459
59748311
 
It treats it as if I entered 59 in the search string.
 
Thanks,
Scott

---
[This E-mail scanned for viruses by Declude Virus]




~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186512
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: MSDE VS. SQL Server

2004-11-24 Thread Jerry Barnes
http://www.teratrax.com/articles/msde_vs_sql_server.html



-Original Message-
From: Will Tomlinson [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, November 23, 2004 8:21 PM
To: CF-Talk
Subject: MSDE VS. SQL Server

I'm thinking about different options for my clients when suggesting the
right database for the right application. My question is this: Is MSDE
designed to even a viable option? Or is it mainly used for testing apps,
then running live with SQL Server?


Thanks,
Will



~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:185285
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Update multiple rows

2004-11-17 Thread Jerry Barnes
Below is a link for a DHTML/Javascript spreadsheet.  At the same site, I
found a DHTML/Javascript slider that I modified to work.  You may be
able to do the same with this.  

http://www.blueshoes.org/en/javascript/spreadsheet/

J

-Original Message-

I need to write an app where the user can update multipe rows from one
screen - like a GRID (but not using CFGRID or similar tags) - needs to
be table based.

I need a starting point to learn how to do this.

Can anyone point me to suitable articles, tutes etc

Thank you muchly

++
Kevin Parker
Web Services Manager
WorkCover Corporation

p: 08 8233 2548
m: 0418 806 166
e: [EMAIL PROTECTED]
w: www.workcover.com

++

This e-mail is intended for the use of the addressee only. It may
contain information that is protected by legislated confidentiality
and/or is legally privileged. If you are not the intended recipient you
are prohibited from disseminating, distributing or copying this e-mail.

Any opinion expressed in this e-mail may not necessarily be that of the
WorkCover Corporation of South Australia. Although precautions have been
taken, the sender cannot warrant that this e-mail or any files
transmitted with it are free of viruses or any other defect.

If you have received this e-mail in error, please notify the sender
immediately by return e-mail and destroy the original e-mail and any
copies.




~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184571
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: DWMX 2004 - Whats new for us?

2003-08-25 Thread Jerry Barnes
Vertical select would be a nice feature.  Also allowing the user to insert spaces for 
tabs and indicating the cursor column position in code view would make good additions. 
 

J

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 25, 2003 2:32 PM
To: CF-Talk
Subject: Re: DWMX 2004 - Whats new for us?


What I'd like to know is if they've finally added the ability to mark a column of text 
in code view mode just like UltraEdit32 can.  Until I see that feature added, 
UltraEdit will probably remain my editor of choice.

That's not to say that I don't used DWMX at all.  I just find myself using UltraEdit 
more than DWMX.


~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com


RE: File manager app

2003-07-24 Thread Jerry Barnes
I downloaded something called filesurfer from the coldfusion developers exchange 
several months ago.  It was free and pretty easy to use.

Jerry

-Original Message-
From: Ryan Mitchell [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 24, 2003 10:48 AM
To: CF-Talk
Subject: File manager app


Hello

Has anyone seen/written a file manager application in CF, that lets you upload, 
rename, delete files/folders, and is free :)

Thanks
Ryan


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

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

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: defaults in Access

2003-07-22 Thread Jerry Barnes
http://www.devguru.com/Technologies/jetsql/quickref/alter_table.html

J

-Original Message-
From: Barney Boisvert [mailto:[EMAIL PROTECTED] 
Sent: Monday, July 21, 2003 6:27 PM
To: CF-Talk
Subject: defaults in Access


Anyone know how to add a default constraint to a field in MS Access using only SQL?  
I've tried a bunch of variations on the SQL Server syntax and none of them work.

thanks,
barneyb

---
Barney Boisvert, Senior Development Engineer
AudienceCentral
[EMAIL PROTECTED]
voice : 360.756.8080 x12
fax   : 360.647.5351

www.audiencecentral.com

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.501 / Virus Database: 299 - Release Date: 7/14/2003


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

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

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: How to add shortcuts to snippets in DW MX

2003-06-09 Thread Jerry Barnes
Control M would be a nice feature.  You may already know about this feature which is 
similar.  Beneath the file name tabs and above the properties window is a list of tags 
in the document.  If you click one of these tags, it will highlight everything between 
the tags.

-Original Message-
From: DURETTE, STEVEN J (AIT) [mailto:[EMAIL PROTECTED] 
Sent: Monday, June 09, 2003 8:50 AM
To: CF-Talk
Subject: RE: How to add shortcuts to snippets in DW MX


Massimo,

Since you seem to know a lot about some pretty complicated issues in dreamweaver maybe 
you can provide an answer.

Do you know of any way to add the Ctrl-M feature of CFStudio and Homesite (when in a 
tag, jump to it's closing tag)?

I have to review and maintain a LOT of code created by contractors and this feature is 
critical.  It's the only reason why I haven't moved to dreamweaver mx (it's installed, 
just not used).  I'm using homesite+ instead.

Thanks,

Steve


-Original Message-
From: Massimo, Tiziana e Federica [mailto:[EMAIL PROTECTED]
Sent: Sunday, June 08, 2003 10:37 AM
To: CF-Talk
Subject: How to add shortcuts to snippets in DW MX


I know many people complain about this, so, since I tried to cover the issue in the 
past, I summarized everything in a single post. I hope it could be help to fellow 
developers. Please be free to share this everywhere and post it on blogs as you see 
fit (if possible include the whole post, no editing
please)

Adding keyboard shortcuts to snippets is possible with DW MX as well, it's just a 
painful process... Here it is:

1) Go in Design View (in order to enable the History Panel)

2) Insert a Snippet

3) Now inside the History Panel you should have an entry for the snippets insertion

4) Select the entry in the panel and, from the contextual menu, choose Copy Steps

5) Open an external text editor (Notepad would be fine) and paste

6) Inside the text editor you should now see the API call to the snippet, something 
like this:

dw.snippetPalette.insertSnippet('MyFolder\\MySnippet.csn');

7) Quit DW

8) Open the monster menus.xml file inside you local configuration,
typically:

C:\Documents and Settings\username\Application Data\Macromedia\Dreamweaver 
MX\Configuration\Menus\Menus.xml

For more details read:

http://www.macromedia.com/support/dreamweaver/ts/documents/multiuser.htm

9) At the very top of the monster menus.xml you can find many entries for keyboard 
shortcuts, add something along these lines:

shortcut key=your key combination here 
command=dw.snippetPalette.insertSnippet('MyFolder\\MySnippet.csn')
name=My powerful snippet id=anUniqueID /

10) Restart DW, you are done


Final notes:

- Be careful editing menus.xml, never open it in DW!

- Always back up the menus file, DW does it automatically (see Menus.xbk)

- Be careful identifying keyboard combination not already in use

- Each id inside menus.xml must be unique, valid JavaScript variable name


My considerations:

Q: Is it worth?
A: It depends, for me it isn't, but I am definitely a mouse user

Q: Is it a painstaking process?
A: Yes, it is

Q: Shouldn't be easier?
A: Yes, sure, anything is better than this

Q: Shouldn't DW expose this capability from a GUI?
A: Sure, I vote for it!

Q: What we can do?
A: Ask MM, send them hundreds of requests:

http://www.macromedia.com/support/email/wishform/


Massimo Foti
Certified Dreamweaver MX Developer
Certified Advanced ColdFusion MX Developer http://www.massimocorner.com/




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Frames Craziness.

2002-11-19 Thread Jerry Barnes
If I understand your post, then all you would need is this at the top of your next 
form.

script language=JavaScript
if (parent.frames.length  0) 
{   
parent.location.href = self.document.location
}
/script



-Original Message-
From: Luce, Greg [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, November 19, 2002 3:44 PM
To: CF-Talk
Subject: Frames Craziness.


I'm inside a frameset and I'd like to cflocation to a template that would break me out 
of the frameset, but still be in the same window.

I have a multipart form in a frameset that has paging also. The paging buttons submit 
the form to itself, do some processing and repost the frame. When done I want it to 
repost to itself do some processing, then cflocation to the next form that isn't in 
the frameset. 

Right now when I cflocation I do the processing and of course it runs the next form 
inside the frame. :-(

Any ideas?
***Sterling Financial Investment Group, Inc. (SFIG) is a member of NASD/MSRB/NFA/SIPC. 
 Email transmissions may be monitored.  SFIG cannot accept orders to buy or sell via 
email.  Please visit www.mysterling.com for more information.*** 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm