Re: Chrome: Cfinput text area: fckeditor

2008-09-26 Thread Mike Kear
I've taken another look at this, and it seems fairly straightforward
to me.   I think most of the differences between a default
installation of FCKEditor and the one delivered with ColdFusion are
either files omitted because they're unnecessary - related to the ASP
or PHP implementation for example,   or the configuration file which
is siteroot\CFIDE\scripts\ajax\FCKeditor\fckconfig.js

So to update your FCKEditor to the current version   ...

[A]  I'm not an expert on the CF8 implementation, so no guarantees.
Backup your whole \CFIDE\scripts\ajax\FCKeditor\  folder and
sub-folders, so you can roll back if necessary.

[B]  download the current version from http://www.fckeditor.net/   The
current stable version is 2.6.3

[C]  HAVING MADE SURE YOU HAVE BACKEDUP AS IN [A] ABOVE   unzip
the current version into \CFIDE\scripts\ajax\FCKeditor\ .

[D]  the \ajax\FCKEditor folder should then contain a folder called
editor,  and the following files: (the rest are unnecessary and can be
deleted but don't cause any harm if they remain)   fckconfig.js,
fckeditor.js, fckpackager.xml, fckstyles.xml, fcktemplates.xml,
license.txt.

[E] there's an additional file in the CF8 implentation - htaccess.txt
you may need to copy this over from the backup.   the notes on this
file say:

[quote]
 On some specific Linux installations you could face problems with Firefox.
 It could give you errors when loading the editor saying that some illegal
 characters were found (three strange chars in the beginning of the file).
 This could happen if you map the .js or .css files to PHP, for example.

 Those characters are the Byte Order Mask (BOM) of the Unicode encoded files.
 All FCKeditor files are Unicode encoded.

 Just rename this file to .htaccess and leave it in the editor directory.
 There are no security issues on doing it. It just sets the .js and .css
 files to their correct content types.
[/quote]

[F]  transfer the customisations for CF8 to the fckconfig.js  OR use
an additional sheet to override the settings in the default
fckconfig.js.  That's a much better way to do it, because then you can
just download new versions of FCKEditor as they are released, and copy
them into the folder and that's it.   Your customisations are still
available on your external config file. There is instructions on
how to do that in the FCKEditor documentation at
http://docs.fckeditor.net/FCKeditor_2.x/Developers_Guide/Configuration/Configuration_File
 (see method 2)   you can put any setting in there and it will
over-ride the setting in the default fckconfig.js.

[G]  you might have to restart your application if you have put some
of your fckeditor into the application scope.IN a shared hosting
environment, you can wait till it times out,  or you can simply change
the application name and upload application.cfc again - i usually name
my applications things like name=mysite0001  name=mysite0002  etc.

You will know if you have been successful because when you call a page
and see the editor embedded, and you click on the last icon on the
bottom row.  It will open with a popup showing the specifics of the
fckeditor version you have installed.

DISCLAIMER:  I have not actually done this myself - i dont use the
embedded FCKEditor - i have always installed FCKEditor separately and
deleted the one that came with CF8 because i wanted more control of
the way it looks myself.THEREFORE _ follow my instructions at your
own risk,  BACKUP BACKUP BACKUP!!   But having used FCKEditor
successfully for quite a few years through quite a few versions, I am
fairly sure of what i'm saying.

Hope this helps. Please give me some feedback as to whether what
i've said worked ok or not.


Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion, PHP, ASP, ASP.NET hosting from AUD$15/month

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313103
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: ColdFusion Consultant as a Java Consultant?

2008-09-26 Thread Jochem van Dieten
Dakota Burns wrote:
 Thanks all for the followup!  I'm sorry, but it was My Bad on the subject
 line.  I wasn't trying to suggest that a CF Developer could present him or
 herself as a Java developer, but rather present the idea of a CF Developer
 persuading a company to use ColdFusion versus Java for their web apps.

ColdFusion is compiled to Java. Hand the code to the company in an EAR 
or WAR and they won't ever know you used ColdFusion.

Jochem

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313104
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: My first attempt to install 64bit CF did not go well...

2008-09-26 Thread denstar
On Thu, Sep 25, 2008 at 10:02 AM, Ian Skinner wrote:
 All the logs we have looked at show now errors...

 We can run ColdFusion from the command line  /jrun4/bin/jrun -start
 cfusion...
 Nothing out of the ordinary happens during this.

 But when running Apache dies.. and will not even serve up HTML pages...
 Stop ColdFusion Apache serves up HTML but obviously CFM pages do nothing..
 Start cfusion ... nothing again.

All the logs, eh?  :-)

There's usually something somewhere-- unless you add a cfabort and
just forget about it, of course.

Port conflict, maybe?  This:  http://www.unix.ms/pcp/
will show you processes listening on port 80.

Hmm... probably not that...

Maybe you need to compile the JRun connector?  There'd be something in
the apache logs if that were the case, IIRC.

You sure you checked all the logs you can think of?

Force be with you!
:Den

-- 
In the perception of a tree we can distinguish the act of
experiencing, or perceiving, from the thing experienced, or perceived.
Samuel Alexander

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313105
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Chrome: Cfinput text area: fckeditor

2008-09-26 Thread Tom Chiverton
On Thursday 25 Sep 2008, Paul Ihrig wrote:
 the fckeditor in cf8 dosnt seem to render in chrome.
 any ideas?

Stop caring ?
Unless you're user base is *very* weird, no one is using that browser.

-- 
Tom Chiverton
Helping to widespreadedly facilitate industry-wide dot-com advanced high-yield 
applications





This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office. Any reference 
to a partner in relation to Halliwells LLP means a member of Halliwells LLP.  
Regulated by The Solicitors Regulation Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.com.

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313106
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfargument type equals 1 of 2 options

2008-09-26 Thread Richard White
thanks Micheal, will look into this.



You could use a type of string, then have a regex that test for the
allowed values.

Mike 

Hi

in one of our functions we need someone to pass in one of 2 options
(exist or not exists)

we have thought about making the argument type a boolean but we actually
need one of these 2 strings to be passed in. 

is there a way in the cfargument tag whether you can specify that the
value passed in has to be one of those 2 options?

thanks

richard 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313107
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: ColdFusion Consultant as a Java Consultant?

2008-09-26 Thread James Holmes
Just remember to include the cost of the CF license in your quote.
mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/

2008/9/26 Jochem van Dieten [EMAIL PROTECTED]

 Dakota Burns wrote:
  Thanks all for the followup!  I'm sorry, but it was My Bad on the
 subject
  line.  I wasn't trying to suggest that a CF Developer could present him
 or
  herself as a Java developer, but rather present the idea of a CF
 Developer
  persuading a company to use ColdFusion versus Java for their web apps.

 ColdFusion is compiled to Java. Hand the code to the company in an EAR
 or WAR and they won't ever know you used ColdFusion.

 Jochem


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313108
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: ColdFusion Consultant as a Java Consultant?

2008-09-26 Thread Adam Haskell
Let me know how much repeat business you get with that tactic please.

Adam

On Fri, Sep 26, 2008 at 3:31 AM, Jochem van Dieten
[EMAIL PROTECTED]wrote:

 Dakota Burns wrote:
  Thanks all for the followup!  I'm sorry, but it was My Bad on the
 subject
  line.  I wasn't trying to suggest that a CF Developer could present him
 or
  herself as a Java developer, but rather present the idea of a CF
 Developer
  persuading a company to use ColdFusion versus Java for their web apps.

 ColdFusion is compiled to Java. Hand the code to the company in an EAR
 or WAR and they won't ever know you used ColdFusion.

 Jochem

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313109
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


How to create force.com contact?

2008-09-26 Thread Rob Sherman
Hi,
I'm having trouble finding any good examples of using coldfusion 8 to create
a salesforce / force.com contact record.  I'm using the Enterprise WSDL and
I specifically don't want leads (at least the client doesn't), just
contacts.

I've poked around and found a few soap examples because force seems to be
..net but this has been the only shining example I can find on logging in
successfully.  I'm having a hard time creating the right contact object to
send to force.com.

Here is the login example I found that works well.  I'd like to expand this
to create contacts.. any help is appreciated.

!--- Login  ---
cffunction name=SFLogin
cfargument name=userName required=yes type=string
cfargument name=password required=yes type=string   
cfargument name=wsdl required=yes type=string   
cfset sfdc = createObject(webservice,#wsdl#) /
cfset result =
sfdc.login(#ARGUMENTS.userName#,#ARGUMENTS.password#) /
!--- create a SOAPHeaderElement called SessionHeader in the
SforceService namespace: ---
cfset authHeader =
createObject(java,org.apache.axis.message.SOAPHeaderElement).init(Sforc
eService, SessionHeader) /
!--- add (and populate) a text node called sessionId: ---
cfset
authHeader.addChildElement(sessionId).addTextNode(result.getSessionId())
/
!--- set the entire soap header: ---
cfset sfdc.setHeader(authHeader) /
!--- change the endpoint URL to what was returned by the login method:
---
cfset
sfdc._setProperty(javax.xml.rpc.service.endpoint.address,result.getServerU
RL()) /
cfset result = sfdc.getUserInfo() /
cfreturn sfdc
/cffunction



- Rob



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313110
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


cfdocument font problem

2008-09-26 Thread BJ McShane
I'm trying to deliver a packet of information to my user in a cfdocument 
format.  I have five programs and each program will build a printable page. I 
created a program and have cfdocument tag around it and this program I use the 
cfinclude tag to include the 5 programs.  I do it this way because that is the 
only way I could get the page break to work in the cfdocumentitem tag.  One of 
the called programs has a lot of information on it and it looks like the 
cfdocument reduces the font size to get it all in.  The problem is that it 
reduces the font on all the other ones also. So those pages the font is very 
small. If I comment out the cfinclude tag for this one program then the other 4 
print out in normal size.  Each program has it own style section but it still 
looks like it uses one for the whole group.

My guestion is am I doing something wrong or is there a trick to force it to 
behave one way for one program and another way for another program. I like the 
cfdocument tag but it seems like it still has a lot of problems.  I guess I'm 
going to break the printable button into two so the user can print them 
seperately. 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313111
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfdocument font problem

2008-09-26 Thread Ian Skinner
BJ McShane wrote:
 My guestion is am I doing something wrong or is there a trick to force it to 
 behave one way for one program and another way for another program. I like 
 the cfdocument tag but it seems like it still has a lot of problems.  I guess 
 I'm going to break the printable button into two so the user can print them 
 seperately.

If you are on CF8 you could look at creating five separate pdf's with 
the cfdocument... tag and then using the cfpdf tag to 
concatenate them into a single pdf file for delivery to the client.



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313112
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfdocument font problem

2008-09-26 Thread BJ McShane
Thanks, I'm on CF8 so I'll go ahead and try and set that up.

bj 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313113
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfdocument font problem

2008-09-26 Thread Yuliang Ruan
try putting them in different cfdocumentsection's. one section for each program 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313114
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


404 onMissingTemplate works with html, not with cfm

2008-09-26 Thread Paul Ihrig
ok..
i am not sure what to look at.
if you type a file like whatever.htm
our custom 404 page pops up just fine.

but if it is a missing .cfm
 i just get the cf debugger, and not a 404.cfm page

you know

The web site you are accessing has experienced an unexpected error.
Please contact the website administrator.

The following information is meant for the website developer for
debugging purposes.
Error Occurred While Processing Request
File not found: /products/inde22x.cfm


Resources:
Enable Robust Exception Information to provide greater detail about
the source of errors. In the Administrator, click Debugging  Logging
 Debug Output


do i need to do some thing in cfadmin?


thanks
-paul

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313115
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: 404 onMissingTemplate works with html, not with cfm

2008-09-26 Thread Charlie Griefer
you need to set a sitewide missing template handler in the cf admin.
if you're on CF 8, you can add an onMissingTemplate method to your
Application.cfc on a per-application basis (if need be).

On Fri, Sep 26, 2008 at 8:32 AM, Paul Ihrig [EMAIL PROTECTED] wrote:

 ok..
 i am not sure what to look at.
 if you type a file like whatever.htm
 our custom 404 page pops up just fine.

 but if it is a missing .cfm
  i just get the cf debugger, and not a 404.cfm page

 you know

 The web site you are accessing has experienced an unexpected error.
 Please contact the website administrator.

 The following information is meant for the website developer for
 debugging purposes.
 Error Occurred While Processing Request
 File not found: /products/inde22x.cfm


 Resources:
 Enable Robust Exception Information to provide greater detail about
 the source of errors. In the Administrator, click Debugging  Logging
  Debug Output


 do i need to do some thing in cfadmin?


 thanks
 -paul

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313116
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: 404 onMissingTemplate works with html, not with cfm

2008-09-26 Thread Justin Scott
 but if it is a missing .cfm
  i just get the cf debugger, and not a 404.cfm page

If you're running IIS, you can set the ISAPI filter and extension 
handler to check if file exists (off by default) which will cause IIS 
to actually look for the file on disk and only pass the request to 
ColdFusion if the file is actually there, otherwise it will fall over to 
the internal 404 setting for that site in IIS.


-Justin Scott, http://www.tlson.com/



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313117
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Using session variable data to create a chart?

2008-09-26 Thread Fawzi Amadu
I have written a query of queries that returns the required results. From those 
results I find aggregates of the various data groupings being returned (these 
are stored in session variables). 

What I need to do now is to use the aggregate results that exist in session 
variables to create a pie chart, but I have not found a way to do this. It 
seems I will necessarily have to save the information in a database and then 
use that information to create the chart.

I want to know if there is a way to just use the values in the session 
variables to create the chart. TIA

NB: Parts of my code are below:

!--- Query of Queries to return winning party ---

cfquery name=WinningConstituency dbtype=query 
maxrows=#SESSION.ConstituenciesReturning#
  select * from VotesByConstituency 
  order by TotalVotes desc
   
/cfquery




cfoutput query=WinningConstituency

!--- check which party won in the retrieved constituency and update its 
counter ---

cfif #WinningConstituency.Party# eq CPP
  cfset SESSION.CppMPCount = SESSION.CppMPCount + 1
  
cfelseif #WinningConstituency.Party# eq DFP
  cfset SESSION.DfpMPCount = SESSION.DfpMPCount + 1
  
cfelseif #WinningConstituency.Party# eq GCPP
  cfset SESSION.GcppMPCount = SESSION.GcppMPCount + 1
  
cfelseif #WinningConstituency.Party# eq NDC
  cfset SESSION.NdcMPCount = SESSION.NdcMPCount + 1
  
cfelseif #WinningConstituency.Party# eq NPP
  cfset SESSION.NppMPCount = SESSION.NppMPCount + 1
  
cfelseif #WinningConstituency.Party# eq PNC
  cfset SESSION.PncMPCount = SESSION.PncMPCount + 1
  
cfelse
/cfif

   
td#WinningConstituency.ConstituencyName#/tdtd#WinningConstituency.Party#/tdtd#WinningConstituency.TotalVotes#/td
   
   /tr !--- end of result row ---
   
/cfoutput 



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313118
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Using session variable data to create a chart?

2008-09-26 Thread Rob Parkhill
Why can't you use the session variables in the Cfchart tag?  if you really
can't, you could assign the session variables to a page variable, and use
those in the cfchart.  although I would be surprised if you couldn't just
use the session variables.
Rob

On Fri, Sep 26, 2008 at 11:51 AM, Fawzi Amadu [EMAIL PROTECTED] wrote:

 I have written a query of queries that returns the required results. From
 those results I find aggregates of the various data groupings being returned
 (these are stored in session variables).

 What I need to do now is to use the aggregate results that exist in session
 variables to create a pie chart, but I have not found a way to do this. It
 seems I will necessarily have to save the information in a database and then
 use that information to create the chart.

 I want to know if there is a way to just use the values in the session
 variables to create the chart. TIA




~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313119
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


(ot) Best development laptop

2008-09-26 Thread Andy Matthews
It's been suggested that the dev dept at our company (of which I am a part) get 
rid of our desktop machines and replace them with laptops. I'd like to run it 
past you guys and see what you thought about good, beefy development machines. 
Here's a partial list of the things that would need to run on each machine:

* 2-4 concurrent instances of JVM (and ColdFusion) - a sites instance, a 
control panel instance for our current code, and a sites, and control 
instance for a new set of code we're developing.
* Eclipse with mutliple projects, each containing potentially thousands of files
* Flex
* In at least my case, Photoshop and Flash CS3.
* Any number of business style apps (outlook, browsers, office apps, etc.)

Can any of you recommend high quality laptops that meet these criteria? We'd 
probably also be getting external monitors as well, but that's a little easier 
to define. I'd just like input from you guys as I'm sure that SOME of you are 
using laptops as your primary machines.


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313120
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: (ot) Best development laptop

2008-09-26 Thread Greg Luce
I have used a HP ZD7000 for 4+ years. 3 years as a primary development
machine. I would run it in the docking station with another 19 flat panel
next to it with CF7-8/MSSQL2005/WAMP/CS3... This was a nice rig. It has a P4
3GHz CPU and 2G RAM. If you can find something modern like that with an
upright docking station where you can run another monitor in dual mode that
works. I would ONLY try this with XP though. I have since gone to an HP
Quad-core with 3G RAM running Vista and it's PAINFUL. It's been a year and
I'm close to having to reinstall with XP.

Greg

On Fri, Sep 26, 2008 at 12:28 PM, Andy Matthews [EMAIL PROTECTED]wrote:

 It's been suggested that the dev dept at our company (of which I am a part)
 get rid of our desktop machines and replace them with laptops. I'd like to
 run it past you guys and see what you thought about good, beefy development
 machines. Here's a partial list of the things that would need to run on each
 machine:

 * 2-4 concurrent instances of JVM (and ColdFusion) - a sites instance, a
 control panel instance for our current code, and a sites, and control
 instance for a new set of code we're developing.
 * Eclipse with mutliple projects, each containing potentially thousands of
 files
 * Flex
 * In at least my case, Photoshop and Flash CS3.
 * Any number of business style apps (outlook, browsers, office apps, etc.)

 Can any of you recommend high quality laptops that meet these criteria?
 We'd probably also be getting external monitors as well, but that's a little
 easier to define. I'd just like input from you guys as I'm sure that SOME of
 you are using laptops as your primary machines.


 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313121
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: (ot) Best development laptop

2008-09-26 Thread Greg Morphis
I use a Dell D630 2Ghz intel core 2 duo processor, 2 GB of RAM for
work. It could use another gig of RAM to make it sweeter but it's not
bad at all.
I run multiple instances of Toad, IE, Firefox, Eclipse, CF
(development), at times add Dreamweaver to that list.. all with no
problems.
At home I have a Lenovo 1.8GHz intel core 2 duo with 4 GB of RAM, I
dual boot Windows Vista and Linux (Kubuntu 8.04). It's an awesome
machine.



On Fri, Sep 26, 2008 at 11:28 AM, Andy Matthews
[EMAIL PROTECTED] wrote:
 It's been suggested that the dev dept at our company (of which I am a part) 
 get rid of our desktop machines and replace them with laptops. I'd like to 
 run it past you guys and see what you thought about good, beefy development 
 machines. Here's a partial list of the things that would need to run on each 
 machine:

 * 2-4 concurrent instances of JVM (and ColdFusion) - a sites instance, a 
 control panel instance for our current code, and a sites, and control 
 instance for a new set of code we're developing.
 * Eclipse with mutliple projects, each containing potentially thousands of 
 files
 * Flex
 * In at least my case, Photoshop and Flash CS3.
 * Any number of business style apps (outlook, browsers, office apps, etc.)

 Can any of you recommend high quality laptops that meet these criteria? We'd 
 probably also be getting external monitors as well, but that's a little 
 easier to define. I'd just like input from you guys as I'm sure that SOME of 
 you are using laptops as your primary machines.


 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313122
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) Best development laptop

2008-09-26 Thread Wil Genovese
For myself I switched to a MacBook Pro back in February.  It runs fast  
without crashing and can easily handle CF8 64bit Dev edition,  
PostgreSQL 8.xx DB server, CfEclipse, and all my other apps including  
iTunes playing music at the same time.  All this on a 2.2Ghz Intel Duo  
CPU and 2Gb RAM.  I have no slow downs or hangs even when checking  
code in and out of my SVN.

For me Mac does it all better and faster.


Wil Genovese

One man with courage makes a majority.
-Andrew Jackson

A fine is a tax for doing wrong. A tax is a fine for doing well.

On Sep 26, 2008, at 11:56 AM, Greg Morphis wrote:

 I use a Dell D630 2Ghz intel core 2 duo processor, 2 GB of RAM for
 work. It could use another gig of RAM to make it sweeter but it's not
 bad at all.
 I run multiple instances of Toad, IE, Firefox, Eclipse, CF
 (development), at times add Dreamweaver to that list.. all with no
 problems.
 At home I have a Lenovo 1.8GHz intel core 2 duo with 4 GB of RAM, I
 dual boot Windows Vista and Linux (Kubuntu 8.04). It's an awesome
 machine.



 On Fri, Sep 26, 2008 at 11:28 AM, Andy Matthews
 [EMAIL PROTECTED] wrote:
 It's been suggested that the dev dept at our company (of which I am  
 a part) get rid of our desktop machines and replace them with  
 laptops. I'd like to run it past you guys and see what you thought  
 about good, beefy development machines. Here's a partial list of  
 the things that would need to run on each machine:

 * 2-4 concurrent instances of JVM (and ColdFusion) - a sites  
 instance, a control panel instance for our current code, and a  
 sites, and control instance for a new set of code we're developing.
 * Eclipse with mutliple projects, each containing potentially  
 thousands of files
 * Flex
 * In at least my case, Photoshop and Flash CS3.
 * Any number of business style apps (outlook, browsers, office  
 apps, etc.)

 Can any of you recommend high quality laptops that meet these  
 criteria? We'd probably also be getting external monitors as well,  
 but that's a little easier to define. I'd just like input from you  
 guys as I'm sure that SOME of you are using laptops as your primary  
 machines.




 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313123
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) Best development laptop

2008-09-26 Thread Josh Nathanson
I've used my Toshiba Tecra A4 laptop for over three years now, toting it 
back and forth to the office every day, and I've had absolutely no problems 
with it.

My particular machine isn't super beefy, but just as a brand, I'd highly 
recommend Toshiba products.  If you got one of their higher end models I'm 
sure you'd be happy with it.

-- Josh


- Original Message - 
From: Andy Matthews [EMAIL PROTECTED]
To: cf-talk cf-talk@houseoffusion.com
Sent: Friday, September 26, 2008 9:28 AM
Subject: (ot) Best development laptop


 It's been suggested that the dev dept at our company (of which I am a 
 part) get rid of our desktop machines and replace them with laptops. I'd 
 like to run it past you guys and see what you thought about good, beefy 
 development machines. Here's a partial list of the things that would need 
 to run on each machine:

 * 2-4 concurrent instances of JVM (and ColdFusion) - a sites instance, a 
 control panel instance for our current code, and a sites, and control 
 instance for a new set of code we're developing.
 * Eclipse with mutliple projects, each containing potentially thousands of 
 files
 * Flex
 * In at least my case, Photoshop and Flash CS3.
 * Any number of business style apps (outlook, browsers, office apps, etc.)

 Can any of you recommend high quality laptops that meet these criteria? 
 We'd probably also be getting external monitors as well, but that's a 
 little easier to define. I'd just like input from you guys as I'm sure 
 that SOME of you are using laptops as your primary machines.


 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313124
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: (ot) Best development laptop

2008-09-26 Thread Dave Watts
 I would ONLY try this with XP though. I have since gone to 
 an HP Quad-core with 3G RAM running Vista and it's PAINFUL. 
 It's been a year and I'm close to having to reinstall with XP.

Have you tried disabling Aero Glass? My Vista machines perform as well as
they did with XP.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313126
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


List and count from a database

2008-09-26 Thread daniel kessler
I am querying a db and it worked fine.  The results are of a single field, 
category, and they're in ascending order

I want to loop through the results, count up how many of each item are 
repeated, then put out the item and the count.  So the record set currently 
looks like this:

Health in the News
Health in the News
What are you doing?


I want to output that like:
Health in the News (2)
What are you doing? (1)


I feel that I have it basically, but the bottom part (the last CFIF) feels like 
a work-around.  I want to know a better way of doing this.

cfset the_num = 0
cfloop from=1 to=#features.recordCount# index=fe
cfparam name = the_category type = string default = 
#features.category[1]#
cfif the_category EQ features.category[fe]
  cfset the_num = the_num+1
 cfelse
  p#features.category[fe-1]# (#the_num#)/p
  cfset the_num = 0
  cfset the_category = features.category[fe]
 /cfif
/cfloop
cfif the_category NEQ features.category[1]
 p#the_category# (#the_num+1#)/p
/cfif


thanks in advance for any assistance.


daniel 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313127
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: (ot) Best development laptop

2008-09-26 Thread Dana Kowalski
For my personal laptop I use the 17in MBP and its incredible. I had some issues 
initially configuring CF 8 + Apache but once I overcame that hurdle it works 
great. I've never encountered a slowdown or any hangs.

For work we stick with the Dell D series. If you put enough ram in, they've 
worked like champs for us. 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313125
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: List and count from a database

2008-09-26 Thread Dawson, Michael
Use SQL to do this:

SELECT
category
,COUNT(category) AS categoryCount
FROM
MyTable
GROUP BY
category

m!ke 

-Original Message-
From: daniel kessler [mailto:[EMAIL PROTECTED] 
Sent: Friday, September 26, 2008 12:31 PM
To: cf-talk
Subject: List and count from a database

I am querying a db and it worked fine.  The results are of a single
field, category, and they're in ascending order

I want to loop through the results, count up how many of each item are
repeated, then put out the item and the count.  So the record set
currently looks like this:

Health in the News
Health in the News
What are you doing?


I want to output that like:
Health in the News (2)
What are you doing? (1)


I feel that I have it basically, but the bottom part (the last CFIF)
feels like a work-around.  I want to know a better way of doing this.

cfset the_num = 0
cfloop from=1 to=#features.recordCount# index=fe
cfparam name = the_category type = string default =
#features.category[1]#
cfif the_category EQ features.category[fe]
  cfset the_num = the_num+1
 cfelse
  p#features.category[fe-1]# (#the_num#)/p
  cfset the_num = 0
  cfset the_category = features.category[fe]
 /cfif
/cfloop
cfif the_category NEQ features.category[1]
 p#the_category# (#the_num+1#)/p /cfif


thanks in advance for any assistance.


daniel 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313128
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) Best development laptop

2008-09-26 Thread Dave Watts
 It's been suggested that the dev dept at our company (of 
 which I am a part) get rid of our desktop machines and 
 replace them with laptops. I'd like to run it past you guys 
 and see what you thought about good, beefy development 
 machines. Here's a partial list of the things that would need 
 to run on each machine:
 
 * 2-4 concurrent instances of JVM (and ColdFusion) - a 
 sites instance, a control panel instance for our current 
 code, and a sites, and control instance for a new set of code 
 we're developing.
 * Eclipse with mutliple projects, each containing potentially 
 thousands of files
 * Flex
 * In at least my case, Photoshop and Flash CS3.
 * Any number of business style apps (outlook, browsers, 
 office apps, etc.)
 
 Can any of you recommend high quality laptops that meet these 
 criteria? We'd probably also be getting external monitors as 
 well, but that's a little easier to define. I'd just like 
 input from you guys as I'm sure that SOME of you are using 
 laptops as your primary machines.

Any decent desktop replacement laptop can do this easily. Even some of the
more portable machines can do this very well. We have several Lenovo
Thinkpads (X61s, I think, but I'm not sure offhand), and they have a
fantastic level of build quality.

Macs can do all this too, although a lot of Flash developers seem to be
unsatisfied with the performance of the Flash IDE on OS X.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313129
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: (ot) Best development laptop

2008-09-26 Thread Andy Matthews
I wouldn't be adverse to this, but I think we probably want to avoid the
expense of a full MBP, plus we only use SQL Server and there's no tools for
the Mac, for MSSQL are there?


andy 

-Original Message-
From: Wil Genovese [mailto:[EMAIL PROTECTED] 
Sent: Friday, September 26, 2008 12:09 PM
To: cf-talk
Subject: Re: (ot) Best development laptop

For myself I switched to a MacBook Pro back in February.  It runs fast
without crashing and can easily handle CF8 64bit Dev edition, PostgreSQL
8.xx DB server, CfEclipse, and all my other apps including iTunes playing
music at the same time.  All this on a 2.2Ghz Intel Duo CPU and 2Gb RAM.  I
have no slow downs or hangs even when checking code in and out of my SVN.

For me Mac does it all better and faster.


Wil Genovese

One man with courage makes a majority.
-Andrew Jackson

A fine is a tax for doing wrong. A tax is a fine for doing well.

On Sep 26, 2008, at 11:56 AM, Greg Morphis wrote:

 I use a Dell D630 2Ghz intel core 2 duo processor, 2 GB of RAM for 
 work. It could use another gig of RAM to make it sweeter but it's not 
 bad at all.
 I run multiple instances of Toad, IE, Firefox, Eclipse, CF 
 (development), at times add Dreamweaver to that list.. all with no 
 problems.
 At home I have a Lenovo 1.8GHz intel core 2 duo with 4 GB of RAM, I 
 dual boot Windows Vista and Linux (Kubuntu 8.04). It's an awesome 
 machine.



 On Fri, Sep 26, 2008 at 11:28 AM, Andy Matthews 
 [EMAIL PROTECTED] wrote:
 It's been suggested that the dev dept at our company (of which I am a 
 part) get rid of our desktop machines and replace them with laptops. 
 I'd like to run it past you guys and see what you thought about good, 
 beefy development machines. Here's a partial list of the things that 
 would need to run on each machine:

 * 2-4 concurrent instances of JVM (and ColdFusion) - a sites  
 instance, a control panel instance for our current code, and a 
 sites, and control instance for a new set of code we're developing.
 * Eclipse with mutliple projects, each containing potentially 
 thousands of files
 * Flex
 * In at least my case, Photoshop and Flash CS3.
 * Any number of business style apps (outlook, browsers, office apps, 
 etc.)

 Can any of you recommend high quality laptops that meet these 
 criteria? We'd probably also be getting external monitors as well, 
 but that's a little easier to define. I'd just like input from you 
 guys as I'm sure that SOME of you are using laptops as your primary 
 machines.




 



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313130
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: 404 onMissingTemplate works with html, not with cfm

2008-09-26 Thread Paul Ihrig
i have a Missing Template Handler in cf admin /404.cfm
also the default 404 in IIS points to 404.cfm

every thig works well UNLESS it is a missing *.cfm file
then the 404.cfm seems to be ignored and i get the cf debugger looking
thing saying file not found.

404 URL /404.cfm

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313131
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: 404 onMissingTemplate works with html, not with cfm

2008-09-26 Thread Paul Ihrig
Justin
Can you explain this in greater detail?
thanks


On Fri, Sep 26, 2008 at 11:49 AM, Justin Scott [EMAIL PROTECTED] wrote:
 but if it is a missing .cfm
  i just get the cf debugger, and not a 404.cfm page

 If you're running IIS, you can set the ISAPI filter and extension
 handler to check if file exists (off by default) which will cause IIS
 to actually look for the file on disk and only pass the request to
 ColdFusion if the file is actually there, otherwise it will fall over to
 the internal 404 setting for that site in IIS.


 -Justin Scott, http://www.tlson.com/



 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313132
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) Best development laptop

2008-09-26 Thread Eric Roberts
I have a maxed out Lenovo T60p and kicks a**.  Their newer model, T61p is
even better.

Eric

/*-Original Message-
/*From: Andy Matthews [mailto:[EMAIL PROTECTED]
/*Sent: Friday, September 26, 2008 11:28 AM
/*To: cf-talk
/*Subject: (ot) Best development laptop
/*
/*It's been suggested that the dev dept at our company (of which I am a
/*part) get rid of our desktop machines and replace them with laptops. I'd
/*like to run it past you guys and see what you thought about good, beefy
/*development machines. Here's a partial list of the things that would need
/*to run on each machine:
/*
/** 2-4 concurrent instances of JVM (and ColdFusion) - a sites instance, a
/*control panel instance for our current code, and a sites, and control
/*instance for a new set of code we're developing.
/** Eclipse with mutliple projects, each containing potentially thousands of
/*files
/** Flex
/** In at least my case, Photoshop and Flash CS3.
/** Any number of business style apps (outlook, browsers, office apps, etc.)
/*
/*Can any of you recommend high quality laptops that meet these criteria?
/*We'd probably also be getting external monitors as well, but that's a
/*little easier to define. I'd just like input from you guys as I'm sure
/*that SOME of you are using laptops as your primary machines.
/*
/*
/*

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313133
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) Best development laptop

2008-09-26 Thread Eric Roberts
BTW...it's a 2.33gig Centrino Duo, 3 gig of ram and an ATI Radeon FireGL
card.  It also has an 80gig drive on board.  At work I hook it up to a 17
widescreen lcd.  I have also hooked it up at home to my 37 widescreen LCD
TV (it has a vga hookup on it) and played World of Warcraft and it looks
awesome.

Eric

/*-Original Message-
/*From: Andy Matthews [mailto:[EMAIL PROTECTED]
/*Sent: Friday, September 26, 2008 11:28 AM
/*To: cf-talk
/*Subject: (ot) Best development laptop
/*
/*It's been suggested that the dev dept at our company (of which I am a
/*part) get rid of our desktop machines and replace them with laptops. I'd
/*like to run it past you guys and see what you thought about good, beefy
/*development machines. Here's a partial list of the things that would need
/*to run on each machine:
/*
/** 2-4 concurrent instances of JVM (and ColdFusion) - a sites instance, a
/*control panel instance for our current code, and a sites, and control
/*instance for a new set of code we're developing.
/** Eclipse with mutliple projects, each containing potentially thousands of
/*files
/** Flex
/** In at least my case, Photoshop and Flash CS3.
/** Any number of business style apps (outlook, browsers, office apps, etc.)
/*
/*Can any of you recommend high quality laptops that meet these criteria?
/*We'd probably also be getting external monitors as well, but that's a
/*little easier to define. I'd just like input from you guys as I'm sure
/*that SOME of you are using laptops as your primary machines.
/*
/*
/*

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313134
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: List and count from a database

2008-09-26 Thread daniel kessler
Use SQL to do this:

That worked great - thanks Michael 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313135
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: (ot) Best development laptop

2008-09-26 Thread Dave Watts
 I wouldn't be adverse to this, but I think we probably want 
 to avoid the expense of a full MBP, plus we only use SQL 
 Server and there's no tools for the Mac, for MSSQL are there?

There are no native tools (obviously), but there are third-party tools that
are sufficient for building queries and performing simple management tasks.
Most of the CF developers I know who're using Macs end up running Windows on
them, either by dual booting or through Parallels/VMware.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313136
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: 404 onMissingTemplate works with html, not with cfm

2008-09-26 Thread Justin Scott
 Can you explain this in greater detail?

As you know, requests come through IIS.  For a simple page such as 
whatever.htm, it looks on the hard drive for whatever.htm, and if it's 
found, it is read and sent to the visitor.  If it's not found, IIS goes 
to the error control settings to see what it should do in the case of a 
404 and displays its 404 error, redirect, or whatever it's set to do.

In the case of anything with an extension handler or ISAPI filter (such 
as ColdFusion), by default IIS just passes the request to the filter and 
waits for a response.  In this case, the response it gets is output from 
ColdFusion as an error saying the file doesn't exist, and that gets 
passed back to the visitor.

In the ISAPI and extension handler settings in IIS, there is an option 
called verify that file exists which can be turned on.  When enabled, 
IIS will go check the hard drive for the file just like it does for 
unhandled file types such as basic HTML.  If the file exists, it will 
hand the request over to the filter normally.  If it doesn't exist, it 
will ignore the filter and go straight to the 404 error settings and 
handle it internally, so ColdFusion never sees the request.  Essentially 
it allows missing .cfm requests to be handled the same as any other 
missing file.

You need access to the IIS settings console or the metabase to make this 
change.  The only downside is that IIS will start looking on the hard 
drive for the file upon each request, and will increase disk I/O, though 
the difference is negligible.

In the IIS GUI, the setting is under the site properties, Home Directory 
tab, either of the edit buttons, then verify that file exists.


-Justin Scott, http://www.tlson.com/



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313137
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


CF 8 Standard and Exchange Integration

2008-09-26 Thread Kevin Miller
Can someone describe the differences in capability for Microsoft Exchange 
integration between CF 8 Standard and Enterprise?  Adobe's site is very vague, 
and I'm not sure to what extent the Standard version is feature crippled.

Thanks,
Kevin 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313138
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: cfdocument font problem

2008-09-26 Thread BJ McShane
Thanks! That did it.  I put the cfdocumentsction around each include and each 
page came out the way I wanted it to.

I'll need to mess around with the cfpdf tag in the future to see what I can do 
with that.

bj

try putting them in different cfdocumentsection's. one section for each 
program 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313139
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Ordered Argument names

2008-09-26 Thread Peter Boughton
Does anyone know how to make CF provide a list of the names of Arguments in the 
order provided and without using cfargument tag?

StructKeyList/StructKeyArray returns an arbitrary order in CF8, and a random 
order every time in CF7.

Using Array functions on the Arguments scope results in a random order every 
time in CF7 and CF8.


Run this code in CF to see the problem:

cffunction name=doStuff
cfdump var=#Arguments#/
cfdump var=#StructKeyList(Arguments)#/
cfdump var=#StructKeyArray(Arguments)#/
cfdump var=#ArrayToList(Arguments)#/
/cffunction

cfset doStuff( a:'first' , b:'second' , c:'third' ) /
cfset doStuff( z:'first' , y:'second' , x:'third' ) /
cfset doStuff( a:'first' , b:'second' , x:'third' , y:'fourth' ) /
cfset doStuff( b:'first' , d:'second' , f:'third' ) /


Both Railo and BlueDragon return the expected order, which makes it very 
irritating that CF doesn't.



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313140
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Ordered Argument names

2008-09-26 Thread Dan G. Switzer, II
Does anyone know how to make CF provide a list of the names of Arguments in
the order provided and without using cfargument tag?

StructKeyList/StructKeyArray returns an arbitrary order in CF8, and a
random order every time in CF7.

Using Array functions on the Arguments scope results in a random order
every time in CF7 and CF8.


Run this code in CF to see the problem:

cffunction name=doStuff
   cfdump var=#Arguments#/
   cfdump var=#StructKeyList(Arguments)#/
   cfdump var=#StructKeyArray(Arguments)#/
   cfdump var=#ArrayToList(Arguments)#/
/cffunction

cfset doStuff( a:'first' , b:'second' , c:'third' ) /
cfset doStuff( z:'first' , y:'second' , x:'third' ) /
cfset doStuff( a:'first' , b:'second' , x:'third' , y:'fourth' ) /
cfset doStuff( b:'first' , d:'second' , f:'third' ) /

You should be able to loop through the arguments array:

cfset a = arrayNew(1) /
cfloop index=i from=1 to=#arrayLen(arguments)#
cfset arrayAppend(a, arguments[1]) /
/cfloop

cfdump var=#a# /

-Dan


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313141
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Ordered Argument names

2008-09-26 Thread Charlie Griefer
using your code on CF8 (8,0,0,176276), i get the structs returned in the
same order (alpha by key name) each time.  neither arbitrary nor random.  i
understand this isn't necessarily what you want... but it does seem to be
consistent (for whatever that's worth).

On Fri, Sep 26, 2008 at 12:21 PM, Peter Boughton [EMAIL PROTECTED]wrote:

 Does anyone know how to make CF provide a list of the names of Arguments in
 the order provided and without using cfargument tag?

 StructKeyList/StructKeyArray returns an arbitrary order in CF8, and a
 random order every time in CF7.

 Using Array functions on the Arguments scope results in a random order
 every time in CF7 and CF8.


 Run this code in CF to see the problem:

 cffunction name=doStuff
cfdump var=#Arguments#/
cfdump var=#StructKeyList(Arguments)#/
cfdump var=#StructKeyArray(Arguments)#/
cfdump var=#ArrayToList(Arguments)#/
 /cffunction

 cfset doStuff( a:'first' , b:'second' , c:'third' ) /
 cfset doStuff( z:'first' , y:'second' , x:'third' ) /
 cfset doStuff( a:'first' , b:'second' , x:'third' , y:'fourth' ) /
 cfset doStuff( b:'first' , d:'second' , f:'third' ) /


 Both Railo and BlueDragon return the expected order, which makes it very
 irritating that CF doesn't.



 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313142
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Error converting data type varchar to numeric

2008-09-26 Thread Larry Juncker
Can anyone help me with this?
 
I have no VARCHAR values going into any numeric fields.The error seems
to be coming form my cfprocresult tag
 
All values in the table can be null except the automatic column which is not
even mentioned in this SP
 
Any help would be gretly appreciated.
 
Thanks in advance
 
Larry
 
PS: I only outputed my cfproc statements to show what is being submitted to
the SP
 
cfprocparam type=In cfsqltype=CF_SQL_INTEGER dbVarName=Student_UID
value=2 null=No
cfprocparam type=In cfsqltype=CF_SQL_INTEGER dbVarName=Coach_UID
value=0 null=No
cfprocparam type=In cfsqltype=CF_SQL_VARCHAR dbVarName=GRADE
value=SR null=NO
cfprocparam type=In cfsqltype=CF_SQL_VARCHAR
dbVarName=PRIMARY_POSITION value=Forward 3 null=NO
cfprocparam type=In cfsqltype=CF_SQL_INTEGER dbVarName=GAMES_PLAYED
value=50 null=NO
cfprocparam type=In cfsqltype=CF_SQL_INTEGER dbVarName=GAMES_STARTED
value=45 null=NO
cfprocparam type=In cfsqltype=CF_SQL_NUMERIC dbVarName=FIELD_GOAL
value= null=YES
cfprocparam type=In cfsqltype=CF_SQL_NUMERIC
dbVarName=THREE_POINT_PERCENT value= null=YES
cfprocparam type=In cfsqltype=CF_SQL_NUMERIC
dbVarName=FREE_THROW_PERCENT value= null=YES
cfprocparam type=In cfsqltype=CF_SQL_NUMERIC dbVarName=REBOUNDS_GAME
value= null=YES
cfprocparam type=In cfsqltype=CF_SQL_NUMERIC dbVarName=ASSISTS_GAME
value= null=YES
cfprocparam type=In cfsqltype=CF_SQL_NUMERIC dbVarName=TURNOVERS_GAME
value= null=YES
cfprocparam type=In cfsqltype=CF_SQL_NUMERIC dbVarName=BLOCKS_GAME
value= null=YES
cfprocparam type=In cfsqltype=CF_SQL_NUMERIC dbVarName=STEALS_GAME
value= null=YES
cfprocparam type=In cfsqltype=CF_SQL_NUMERIC dbVarName=TOTAL_POINTS
value= null=YES
cfprocparam type=In cfsqltype=CF_SQL_NUMERIC dbVarName=POINTS_GAME
value= null=YES
cfprocparam type=In cfsqltype=CF_SQL_NUMERIC dbVarName=VERTICAL_JUMP
value= null=YES
cfprocparam type=In cfsqltype=CF_SQL_NUMERIC dbVarName=STANDING_REACH
value= null=YES




















FONT face=Times New Roman size=3/FONT





The web site you are accessing has experienced an unexpected error.
Please contact the website administrator. 


The following information is meant for the website developer for debugging
purposes.   


Error Occurred While Processing Request 



Error Executing Database Query. 

[Macromedia][SQLServer JDBC Driver][SQLServer]Error converting data type
varchar to numeric. 

The error occurred in
C:\Inetpub\wwwroot\statsandgo\members\Student\Sports\form2action.cfm: line
43


41 :/cfloop

42 :

43 :cfprocresult name=InsertSport resultset=1

44 :

45 :/cfstoredproc

  _  


SQLSTATE   HY000
SQL{call sp_Basketball_ins( (param 1) , (param 2) , (param 3) ,
(param 4) , (param 5) , (param 6) , (param 7) , (param 8) , (param 9) ,
(param 10) , (param 11) , (param 12) , (param 13) , (param 14) , (param 15)
, (param 16) , (param 17) , (param 18) )}   
VENDORERRORCODE8114 
DATASOURCE profilesandgo
Resources: 


*   Check the ColdFusion documentation
http://www.macromedia.com/go/proddoc_getdoc  to verify that you are using
the correct syntax. 

*   Search the Knowledge Base
http://www.macromedia.com/support/coldfusion/  to find a solution to your
problem. 


Browser  Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR
1.1.4322; InfoPath.1; .NET CLR 2.0.50727)   
Remote Address   74.43.153.40   
Referrer http://www.statsandgo.com/members/student/sports/form2.cfm

Date/Time26-Sep-08 02:44 PM 
Stack Trace  javascript:; (click to expand) 



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313143
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Ordered Argument names

2008-09-26 Thread C S
using your code on CF8 (8,0,0,176276), i get the structs returned in the
same order (alpha by key name) each time.  neither arbitrary nor random.

With 8,0,1,195765 I get a different order each time.  Unless I drop the 
argument names.

cfset doStuff( 'first' , 'second' , 'third' ) / 


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313144
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Inserting an image in a PDF?

2008-09-26 Thread Aaron C
Thanks!  That works quite well.  I just have to fine tune the
positioning, but it seems to be working exactly as I was wanting.

On Thu, Sep 25, 2008 at 3:10 PM, Andrew Powell [EMAIL PROTECTED] wrote:
 We've been using watermark for this
 cfpdf action=addwatermark source=PDFdoc copyfrom=#getFiles.ImagesPDF# 
 foreground=no opacity=10 pages=1 position = 0,0 showonprint=yes 
 name=PDFdoc

 You can set the position. Place it in front or back and set the opacity :)

Yes, I meant an existing PDF. Specifically, one I'm already
cfpdfformparam to populate.  I was hoping there was a way to also
insert an image into a defined area.  Though your solution of creating
a seperate PDF and then merging the two would likely work as a 2nd
best option for what I need.



 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313145
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Ordered Argument names

2008-09-26 Thread Peter Boughton
using your code on CF8 (8,0,0,176276), i get the structs returned in the
same order (alpha by key name) each time.

Odd. I'm on 8,0,1,195765 and it's definitely not alphabetic.

For first, second and fourth I get c,a,b, y,z,x and d,f,b
Oddly, the third one switches between y,a,b,x or y,b,a,x or y,x,a,b. 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313146
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Ordered Argument names

2008-09-26 Thread Weidler, Wilfred C.
Here try this.  Notice the cfset in the cffunction.

cffunction name=doStuff
cfset ArraySort(StructKeyArray(Arguments), textnocase,
desc) /
cfdump var=#Arguments# label=Arguments/
cfdump var=#StructKeyList(Arguments)#/br /
cfdump var=#ArrayToList(Arguments)#/br /br /
/cffunction

cfset doStuff( a:'first' , b:'second' , c:'third' ) /
cfset doStuff( z:'first' , y:'second' , x:'third' ) /
cfset doStuff( a:'first' , b:'second' , x:'third' , y:'fourth' ) /
cfset doStuff( b:'first' , d:'second' , f:'third' ) / 


-Chuck

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313147
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Ordered Argument names

2008-09-26 Thread Charlie Griefer
On Fri, Sep 26, 2008 at 12:52 PM, C S [EMAIL PROTECTED] wrote:

 using your code on CF8 (8,0,0,176276), i get the structs returned in the
 same order (alpha by key name) each time.  neither arbitrary nor random.

 With 8,0,1,195765 I get a different order each time.  Unless I drop the
 argument names.

 cfset doStuff( 'first' , 'second' , 'third' ) /


That's pretty funky (the difference in behavior between hotfixes).  Altho i
don't believe structs are inherently meant to be 'ordered'.  I suppose you
could maintain that same behavior between fixes by doing an arraySort() on a
structKeyArray()

none of which really addresses the original poster's concern, however :\

-- 
I have failed as much as I have succeeded. But I love my life. I love my
wife. And I wish you my kind of success.


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313148
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Ordered Argument names

2008-09-26 Thread Peter Boughton
You should be able to loop through the arguments array:

cfset a = arrayNew(1) /
cfloop index=i from=1 to=#arrayLen(arguments)#
   cfset arrayAppend(a, arguments[1]) /
/cfloop

cfdump var=#a# /

Nope, that gives values not names (assuming 1 - i)

Also, it doesn't come out in the same order each time.

It *should* since arrays are supposed to be ordered, but in my version of CF 
the values are switching around each refresh. 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313149
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) Best development laptop

2008-09-26 Thread Gerald Guido
Best development laptop? Huh... that's not a loaded question?

The two factors (other than price) that drove my decision was RAM and screen
real estate. RAM is obvious, especially if Vista and Java come into play.
Java reminds me of the scene from Austin Powers where Fat Bastard was eating
in bed. Both are gluttons. If you are going to run a full on dev environment
with Photoshop, DW, and load up Eclipse with Plugins and run multiple
instances of CF 8, Database server(s), etc. I would say get as much RAM as
you can afford.  4-6 gigs will give you room to grow and 3 gig would be a
bare minimum. Whe I bough a gig chop for my old laptop back in 2005 I had to
rationalize it. I thought to myself there is no WAY I will ever use all
1.28 gigs.

I would highly recommend getting a model with wide screen. Preferably 17 in.
You will thank yourself.

I wouldnt call it a High quality but the one I ended up getting (@ sams club
for $700) was a model close to this:

http://www.newegg.com/Product/Product.aspx?Item=N82E16834147746

It is an entertainment model really. It was a little slow in the processor
bench marks but for the money I am very happy with it. With Vista, CF 8,
Apache, Eclipse (loaded with plugins), MSSQL, MySQL Server, SQL Server
Management Studio, Toad for MySQL,  AV, anti-spywear/Virus, Firewall etc.
etc I hover at about ~2 - 2.3 gigs.

The video card is suprisingly good. Even with shared video memory I am able
to play older games like Half Life with a decent frame rate.

G


On Fri, Sep 26, 2008 at 12:28 PM, Andy Matthews [EMAIL PROTECTED]wrote:

 It's been suggested that the dev dept at our company (of which I am a part)
 get rid of our desktop machines and replace them with laptops. I'd like to
 run it past you guys and see what you thought about good, beefy development
 machines. Here's a partial list of the things that would need to run on each
 machine:

 * 2-4 concurrent instances of JVM (and ColdFusion) - a sites instance, a
 control panel instance for our current code, and a sites, and control
 instance for a new set of code we're developing.
 * Eclipse with mutliple projects, each containing potentially thousands of
 files
 * Flex
 * In at least my case, Photoshop and Flash CS3.
 * Any number of business style apps (outlook, browsers, office apps, etc.)

 Can any of you recommend high quality laptops that meet these criteria?
 We'd probably also be getting external monitors as well, but that's a little
 easier to define. I'd just like input from you guys as I'm sure that SOME of
 you are using laptops as your primary machines.


 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313150
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Ordered Argument names

2008-09-26 Thread Dan G. Switzer, II
You should be able to loop through the arguments array:

cfset a = arrayNew(1) /
cfloop index=i from=1 to=#arrayLen(arguments)#
  cfset arrayAppend(a, arguments[1]) /
/cfloop

cfdump var=#a# /

Nope, that gives values not names (assuming 1 - i)

Also, it doesn't come out in the same order each time.

It *should* since arrays are supposed to be ordered, but in my version of
CF the values are switching around each refresh.

Structures have no explicit order--so you can't expect them to come back in
any specific order.

Why do you need the keys to be in order anyway?

-Dan


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313151
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Ordered Argument names

2008-09-26 Thread C S
That's pretty funky (the difference in behavior between hotfixes).  Altho i
don't believe structs are inherently meant to be 'ordered'. 

Yes, that is my understanding too.  Interesting that it does seem to return the 
correct order if you do not use named arguments. 

cffunction name=doStuff returntype=void
cfloop from=1 to=#arrayLen(arguments)# index=x
cfdump var=argument[#x#] = #arguments[x]# /br /
/cfloop
/cffunction 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313152
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Ordered Argument names

2008-09-26 Thread Weidler, Wilfred C.
@Dan - Good question.

If you are sending the argument name in the call to the cffunction then
they can be in any order and the cffunction will figure it out.

-Chuck 


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313153
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CTO Opportunity

2008-09-26 Thread Adam Haskell
Thanks I am what you would call a moron.

Adam :)

On Fri, Sep 26, 2008 at 3:41 PM, Maureen [EMAIL PROTECTED] wrote:

 FYI - You sent this message to the entire list.   The employer's
 contact info is at the bottom of the message.


 On Fri, Sep 26, 2008 at 12:30 PM, Adam Haskell [EMAIL PROTECTED]
 wrote:
  I'm certainly not local but I have interest in the opportunity. I'm an
  Architect for the Kroger Company, as an architect my input and ideas are
  integral in decisions that include technology directions in Kroger,
 process
  definition, and development innovation. I've also been the lead on 2
  projects is patents pending inside Kroger and consulted on a third. These
  project are mostly in workforce management and usability concepts for web
  applications. Please feel free to view my resume on Google Docs, I've
  provided a link before my signature. I believe you can export it to your
  desired format from there, if not please let me know and I can send an
  attachment in the format you desire.
 
  http://docs.google.com/Doc?docid=dcjskfzr_11hjtk4h
 
  Adam Haskell
 
  On Fri, Sep 26, 2008 at 2:32 PM, Rich Baker [EMAIL PROTECTED] wrote:
 
  I have a client in the Lake Mary, FL area that is looking for a CTO
 level
  person who has a background in managing teams who develop web based
  applications using ColdFusion, .net, SQL Server, etc. This is not a
 hands on
  development position, but the CTO should be able to effectively
 communicate
  innovative ideas, and put these ideas into action. The CEO is looking
 for
  someone who has market changing ideas, not just a doer, but a strategic
  thinker. If you are interested in learning more about this position,
 please
  give me a call or email--- Rich Baker 407-548-6313 - [EMAIL PROTECTED]
 Local candidates will receive priority preference ***
 
 
 
  

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313154
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: (ot) Best development laptop

2008-09-26 Thread Jim Rising
i would also vote for the MBP ... and you can install vmware or parallels
and run MSSQL (along with all the tools) within a virtualization instance...
and yes... there are awesome db tools available for MSSQL ...

Razor:
http://www.razorsql.com/download_mac.html

DB Solo2:
http://www.dbsolo.com/download.html

my personal favorite is Aqua Data Studio:
http://www.aquafold.com/downloads.html



On Fri, Sep 26, 2008 at 12:38 PM, Andy Matthews [EMAIL PROTECTED]wrote:

 I wouldn't be adverse to this, but I think we probably want to avoid the
 expense of a full MBP, plus we only use SQL Server and there's no tools for
 the Mac, for MSSQL are there?


 andy

 -Original Message-
 From: Wil Genovese [mailto:[EMAIL PROTECTED]
 Sent: Friday, September 26, 2008 12:09 PM
 To: cf-talk
 Subject: Re: (ot) Best development laptop

 For myself I switched to a MacBook Pro back in February.  It runs fast
 without crashing and can easily handle CF8 64bit Dev edition, PostgreSQL
 8.xx DB server, CfEclipse, and all my other apps including iTunes playing
 music at the same time.  All this on a 2.2Ghz Intel Duo CPU and 2Gb RAM.  I
 have no slow downs or hangs even when checking code in and out of my SVN.

 For me Mac does it all better and faster.


 Wil Genovese

 One man with courage makes a majority.
 -Andrew Jackson

 A fine is a tax for doing wrong. A tax is a fine for doing well.

 On Sep 26, 2008, at 11:56 AM, Greg Morphis wrote:

  I use a Dell D630 2Ghz intel core 2 duo processor, 2 GB of RAM for
  work. It could use another gig of RAM to make it sweeter but it's not
  bad at all.
  I run multiple instances of Toad, IE, Firefox, Eclipse, CF
  (development), at times add Dreamweaver to that list.. all with no
  problems.
  At home I have a Lenovo 1.8GHz intel core 2 duo with 4 GB of RAM, I
  dual boot Windows Vista and Linux (Kubuntu 8.04). It's an awesome
  machine.
 
 
 
  On Fri, Sep 26, 2008 at 11:28 AM, Andy Matthews
  [EMAIL PROTECTED] wrote:
  It's been suggested that the dev dept at our company (of which I am a
  part) get rid of our desktop machines and replace them with laptops.
  I'd like to run it past you guys and see what you thought about good,
  beefy development machines. Here's a partial list of the things that
  would need to run on each machine:
 
  * 2-4 concurrent instances of JVM (and ColdFusion) - a sites
  instance, a control panel instance for our current code, and a
  sites, and control instance for a new set of code we're developing.
  * Eclipse with mutliple projects, each containing potentially
  thousands of files
  * Flex
  * In at least my case, Photoshop and Flash CS3.
  * Any number of business style apps (outlook, browsers, office apps,
  etc.)
 
  Can any of you recommend high quality laptops that meet these
  criteria? We'd probably also be getting external monitors as well,
  but that's a little easier to define. I'd just like input from you
  guys as I'm sure that SOME of you are using laptops as your primary
  machines.
 
 
 
 
 



 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313155
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: (ot) Best development laptop

2008-09-26 Thread J.J. Merrick
If you can then obviously I am going to say that the MBP are the way to go.

if you HAVE to have PC then I second the Dell D series. I just moved
from a 4 year old D400 with 2 gigs of ram and I loved all the
peripherals you could get. Having a docking station was awesome and
they are just good solid machines. The best part was that all the
parts were interchangeable so it made supporting them very easy.


But then again a MBP would be the best :-D


-J.J.


On Fri, Sep 26, 2008 at 12:31 PM, Dana Kowalski [EMAIL PROTECTED] wrote:
 For my personal laptop I use the 17in MBP and its incredible. I had some 
 issues initially configuring CF 8 + Apache but once I overcame that hurdle it 
 works great. I've never encountered a slowdown or any hangs.

 For work we stick with the Dell D series. If you put enough ram in, they've 
 worked like champs for us.

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313156
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) Best development laptop

2008-09-26 Thread J.J. Merrick
Aqua Data Studio allows you to hook in to MSSQL...

I just use a parallels VM for whenever I need to run enterprise manager.



J.J.

On Fri, Sep 26, 2008 at 12:38 PM, Andy Matthews
[EMAIL PROTECTED] wrote:
 I wouldn't be adverse to this, but I think we probably want to avoid the
 expense of a full MBP, plus we only use SQL Server and there's no tools for
 the Mac, for MSSQL are there?


 andy

 -Original Message-
 From: Wil Genovese [mailto:[EMAIL PROTECTED]
 Sent: Friday, September 26, 2008 12:09 PM
 To: cf-talk
 Subject: Re: (ot) Best development laptop

 For myself I switched to a MacBook Pro back in February.  It runs fast
 without crashing and can easily handle CF8 64bit Dev edition, PostgreSQL
 8.xx DB server, CfEclipse, and all my other apps including iTunes playing
 music at the same time.  All this on a 2.2Ghz Intel Duo CPU and 2Gb RAM.  I
 have no slow downs or hangs even when checking code in and out of my SVN.

 For me Mac does it all better and faster.


 Wil Genovese

 One man with courage makes a majority.
 -Andrew Jackson

 A fine is a tax for doing wrong. A tax is a fine for doing well.

 On Sep 26, 2008, at 11:56 AM, Greg Morphis wrote:

 I use a Dell D630 2Ghz intel core 2 duo processor, 2 GB of RAM for
 work. It could use another gig of RAM to make it sweeter but it's not
 bad at all.
 I run multiple instances of Toad, IE, Firefox, Eclipse, CF
 (development), at times add Dreamweaver to that list.. all with no
 problems.
 At home I have a Lenovo 1.8GHz intel core 2 duo with 4 GB of RAM, I
 dual boot Windows Vista and Linux (Kubuntu 8.04). It's an awesome
 machine.



 On Fri, Sep 26, 2008 at 11:28 AM, Andy Matthews
 [EMAIL PROTECTED] wrote:
 It's been suggested that the dev dept at our company (of which I am a
 part) get rid of our desktop machines and replace them with laptops.
 I'd like to run it past you guys and see what you thought about good,
 beefy development machines. Here's a partial list of the things that
 would need to run on each machine:

 * 2-4 concurrent instances of JVM (and ColdFusion) - a sites
 instance, a control panel instance for our current code, and a
 sites, and control instance for a new set of code we're developing.
 * Eclipse with mutliple projects, each containing potentially
 thousands of files
 * Flex
 * In at least my case, Photoshop and Flash CS3.
 * Any number of business style apps (outlook, browsers, office apps,
 etc.)

 Can any of you recommend high quality laptops that meet these
 criteria? We'd probably also be getting external monitors as well,
 but that's a little easier to define. I'd just like input from you
 guys as I'm sure that SOME of you are using laptops as your primary
 machines.








 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313157
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: (ot) Best development laptop

2008-09-26 Thread Jochem van Dieten
Andy Matthews wrote:
 It's been suggested that the dev dept at our company (of which I am a part) 
 get rid of our desktop machines and replace them with laptops. I'd like to 
 run it past you guys and see what you thought about good, beefy development 
 machines.

How mobile is your team? Will they actually take their laptops somewhere 
or will they just remain on a desk? If they are meant to be portable, 
don't go beyond a 15.4 screen (and that is bad enough already).


 Here's a partial list of the things that would need to run on each machine:
 
 * 2-4 concurrent instances of JVM (and ColdFusion) - a sites instance, a 
 control panel instance for our current code, and a sites, and control 
 instance for a new set of code we're developing.

4 concurrent instances is a lot. I may have 12 JRun and 2 JBoss 
instances on my laptop, but I never run more then 2 at the same time.


 Can any of you recommend high quality laptops that meet these criteria?

If you want quality nothing beats a Lenovo Thinkpad. They have plenty of 
models that meet your performance requirements.

Jochem

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313158
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Ordered Argument names

2008-09-26 Thread Peter Boughton
 don't believe structs are inherently meant to be 'ordered'. 
 
 Yes, that is my understanding too.  Interesting that it does seem to 
 return the correct order if you do not use named arguments. 

Well it has to really - unnamed arguments in a random order would be impossible 
to use.
But it'd be handy if they made named arguments work in the right order too.


My understanding of the Arguments scope is(/was) that it's a special construct 
that inherits functionality of Structs and Arrays, but isn't actually either of 
them. 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313159
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) Best development laptop

2008-09-26 Thread Andy Matthews
@Jochem...unlikely that we'd have all 4 concurrent, but it's possible.
Probably not for long periods of time though. Mostly working from desks, but
I would be doing graphics work ala Photoshop and Flash, and screen real
estate is of crucial importance. I'd rather deal with the additional weight,
and size, of a 17 laptop than have to deal with a smaller screen.

@Jim/JJ...we could ask for MBPs (whether we get them or not, I'm not sure).
I will say that I'm considering it, but will likely stick with a PC because
of several small, but crucial, features that a PC has which OSX does not.

We'll proably be going with high end Dell XPS or Alienware machines. We'll
see though.

Thanks to everyone for their input.

-Original Message-
From: Jochem van Dieten [mailto:[EMAIL PROTECTED] 
Sent: Friday, September 26, 2008 3:51 PM
To: cf-talk
Subject: Re: (ot) Best development laptop

Andy Matthews wrote:
 It's been suggested that the dev dept at our company (of which I am a
part) get rid of our desktop machines and replace them with laptops. I'd
like to run it past you guys and see what you thought about good, beefy
development machines.

How mobile is your team? Will they actually take their laptops somewhere or
will they just remain on a desk? If they are meant to be portable, don't go
beyond a 15.4 screen (and that is bad enough already).


 Here's a partial list of the things that would need to run on each
machine:
 
 * 2-4 concurrent instances of JVM (and ColdFusion) - a sites instance, a
control panel instance for our current code, and a sites, and control
instance for a new set of code we're developing.

4 concurrent instances is a lot. I may have 12 JRun and 2 JBoss instances on
my laptop, but I never run more then 2 at the same time.


 Can any of you recommend high quality laptops that meet these criteria?

If you want quality nothing beats a Lenovo Thinkpad. They have plenty of 
models that meet your performance requirements.

Jochem



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313160
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Ordered Argument names

2008-09-26 Thread Charlie Griefer
On Fri, Sep 26, 2008 at 2:08 PM, Peter Boughton [EMAIL PROTECTED] wrote:

  don't believe structs are inherently meant to be 'ordered'.
 
  Yes, that is my understanding too.  Interesting that it does seem to
  return the correct order if you do not use named arguments.

 Well it has to really - unnamed arguments in a random order would be
 impossible to use.
 But it'd be handy if they made named arguments work in the right order too.


i think this was already asked (forgive me if i missed the answer.  it's
friday and i'm tired :))... but if the arguments are named, why does the
order matter?

-- 
I have failed as much as I have succeeded. But I love my life. I love my
wife. And I wish you my kind of success.


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313161
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Error converting data type varchar to numeric

2008-09-26 Thread Larry Juncker
Anybody

This is something that I really need help on...


Thanks Again in advance 

-Original Message-
From: Larry Juncker [mailto:[EMAIL PROTECTED] 
Sent: Friday, September 26, 2008 2:50 PM
To: cf-talk
Subject: Error converting data type varchar to numeric

Can anyone help me with this?
 
I have no VARCHAR values going into any numeric fields.The error seems
to be coming form my cfprocresult tag
 
All values in the table can be null except the automatic column which is not
even mentioned in this SP
 
Any help would be gretly appreciated.
 
Thanks in advance
 
Larry
 
PS: I only outputed my cfproc statements to show what is being submitted to
the SP
 
cfprocparam type=In cfsqltype=CF_SQL_INTEGER dbVarName=Student_UID
value=2 null=No
cfprocparam type=In cfsqltype=CF_SQL_INTEGER dbVarName=Coach_UID
value=0 null=No
cfprocparam type=In cfsqltype=CF_SQL_VARCHAR dbVarName=GRADE
value=SR null=NO
cfprocparam type=In cfsqltype=CF_SQL_VARCHAR
dbVarName=PRIMARY_POSITION value=Forward 3 null=NO
cfprocparam type=In cfsqltype=CF_SQL_INTEGER dbVarName=GAMES_PLAYED
value=50 null=NO
cfprocparam type=In cfsqltype=CF_SQL_INTEGER dbVarName=GAMES_STARTED
value=45 null=NO
cfprocparam type=In cfsqltype=CF_SQL_NUMERIC dbVarName=FIELD_GOAL
value= null=YES
cfprocparam type=In cfsqltype=CF_SQL_NUMERIC
dbVarName=THREE_POINT_PERCENT value= null=YES
cfprocparam type=In cfsqltype=CF_SQL_NUMERIC
dbVarName=FREE_THROW_PERCENT value= null=YES
cfprocparam type=In cfsqltype=CF_SQL_NUMERIC dbVarName=REBOUNDS_GAME
value= null=YES
cfprocparam type=In cfsqltype=CF_SQL_NUMERIC dbVarName=ASSISTS_GAME
value= null=YES
cfprocparam type=In cfsqltype=CF_SQL_NUMERIC dbVarName=TURNOVERS_GAME
value= null=YES
cfprocparam type=In cfsqltype=CF_SQL_NUMERIC dbVarName=BLOCKS_GAME
value= null=YES
cfprocparam type=In cfsqltype=CF_SQL_NUMERIC dbVarName=STEALS_GAME
value= null=YES
cfprocparam type=In cfsqltype=CF_SQL_NUMERIC dbVarName=TOTAL_POINTS
value= null=YES
cfprocparam type=In cfsqltype=CF_SQL_NUMERIC dbVarName=POINTS_GAME
value= null=YES
cfprocparam type=In cfsqltype=CF_SQL_NUMERIC dbVarName=VERTICAL_JUMP
value= null=YES
cfprocparam type=In cfsqltype=CF_SQL_NUMERIC dbVarName=STANDING_REACH
value= null=YES




















FONT face=Times New Roman size=3/FONT





The web site you are accessing has experienced an unexpected error.
Please contact the website administrator. 


The following information is meant for the website developer for debugging
purposes.   


Error Occurred While Processing Request 



Error Executing Database Query. 

[Macromedia][SQLServer JDBC Driver][SQLServer]Error converting data type
varchar to numeric. 

The error occurred in
C:\Inetpub\wwwroot\statsandgo\members\Student\Sports\form2action.cfm: line
43


41 :/cfloop

42 :

43 :cfprocresult name=InsertSport resultset=1

44 :

45 :/cfstoredproc

  _  


SQLSTATE   HY000
SQL{call sp_Basketball_ins( (param 1) , (param 2) , (param 3) ,
(param 4) , (param 5) , (param 6) , (param 7) , (param 8) , (param 9) ,
(param 10) , (param 11) , (param 12) , (param 13) , (param 14) , (param 15)
, (param 16) , (param 17) , (param 18) )}   
VENDORERRORCODE8114 
DATASOURCE profilesandgo
Resources: 


*   Check the ColdFusion documentation
http://www.macromedia.com/go/proddoc_getdoc  to verify that you are using
the correct syntax. 

*   Search the Knowledge Base
http://www.macromedia.com/support/coldfusion/  to find a solution to your
problem. 


Browser  Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR
1.1.4322; InfoPath.1; .NET CLR 2.0.50727)   
Remote Address   74.43.153.40   
Referrer http://www.statsandgo.com/members/student/sports/form2.cfm

Date/Time26-Sep-08 02:44 PM 
Stack Trace  javascript:; (click to expand) 





~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313163
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Error converting data type varchar to numeric

2008-09-26 Thread Larry Juncker
Anybody

This is something that I really need help on...


Thanks Again in advance 

-Original Message-
From: Larry Juncker [mailto:[EMAIL PROTECTED] 
Sent: Friday, September 26, 2008 2:50 PM
To: cf-talk
Subject: Error converting data type varchar to numeric

Can anyone help me with this?
 
I have no VARCHAR values going into any numeric fields.The error seems
to be coming form my cfprocresult tag
 
All values in the table can be null except the automatic column which is not
even mentioned in this SP
 
Any help would be gretly appreciated.
 
Thanks in advance
 
Larry
 
PS: I only outputed my cfproc statements to show what is being submitted to
the SP
 
cfprocparam type=In cfsqltype=CF_SQL_INTEGER dbVarName=Student_UID
value=2 null=No
cfprocparam type=In cfsqltype=CF_SQL_INTEGER dbVarName=Coach_UID
value=0 null=No
cfprocparam type=In cfsqltype=CF_SQL_VARCHAR dbVarName=GRADE
value=SR null=NO
cfprocparam type=In cfsqltype=CF_SQL_VARCHAR
dbVarName=PRIMARY_POSITION value=Forward 3 null=NO
cfprocparam type=In cfsqltype=CF_SQL_INTEGER dbVarName=GAMES_PLAYED
value=50 null=NO
cfprocparam type=In cfsqltype=CF_SQL_INTEGER dbVarName=GAMES_STARTED
value=45 null=NO
cfprocparam type=In cfsqltype=CF_SQL_NUMERIC dbVarName=FIELD_GOAL
value= null=YES
cfprocparam type=In cfsqltype=CF_SQL_NUMERIC
dbVarName=THREE_POINT_PERCENT value= null=YES
cfprocparam type=In cfsqltype=CF_SQL_NUMERIC
dbVarName=FREE_THROW_PERCENT value= null=YES
cfprocparam type=In cfsqltype=CF_SQL_NUMERIC dbVarName=REBOUNDS_GAME
value= null=YES
cfprocparam type=In cfsqltype=CF_SQL_NUMERIC dbVarName=ASSISTS_GAME
value= null=YES
cfprocparam type=In cfsqltype=CF_SQL_NUMERIC dbVarName=TURNOVERS_GAME
value= null=YES
cfprocparam type=In cfsqltype=CF_SQL_NUMERIC dbVarName=BLOCKS_GAME
value= null=YES
cfprocparam type=In cfsqltype=CF_SQL_NUMERIC dbVarName=STEALS_GAME
value= null=YES
cfprocparam type=In cfsqltype=CF_SQL_NUMERIC dbVarName=TOTAL_POINTS
value= null=YES
cfprocparam type=In cfsqltype=CF_SQL_NUMERIC dbVarName=POINTS_GAME
value= null=YES
cfprocparam type=In cfsqltype=CF_SQL_NUMERIC dbVarName=VERTICAL_JUMP
value= null=YES
cfprocparam type=In cfsqltype=CF_SQL_NUMERIC dbVarName=STANDING_REACH
value= null=YES




















FONT face=Times New Roman size=3/FONT





The web site you are accessing has experienced an unexpected error.
Please contact the website administrator. 


The following information is meant for the website developer for debugging
purposes.   


Error Occurred While Processing Request 



Error Executing Database Query. 

[Macromedia][SQLServer JDBC Driver][SQLServer]Error converting data type
varchar to numeric. 

The error occurred in
C:\Inetpub\wwwroot\statsandgo\members\Student\Sports\form2action.cfm: line
43


41 :/cfloop

42 :

43 :cfprocresult name=InsertSport resultset=1

44 :

45 :/cfstoredproc

  _  


SQLSTATE   HY000
SQL{call sp_Basketball_ins( (param 1) , (param 2) , (param 3) ,
(param 4) , (param 5) , (param 6) , (param 7) , (param 8) , (param 9) ,
(param 10) , (param 11) , (param 12) , (param 13) , (param 14) , (param 15)
, (param 16) , (param 17) , (param 18) )}   
VENDORERRORCODE8114 
DATASOURCE profilesandgo
Resources: 


*   Check the ColdFusion documentation
http://www.macromedia.com/go/proddoc_getdoc  to verify that you are using
the correct syntax. 

*   Search the Knowledge Base
http://www.macromedia.com/support/coldfusion/  to find a solution to your
problem. 


Browser  Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR
1.1.4322; InfoPath.1; .NET CLR 2.0.50727)   
Remote Address   74.43.153.40   
Referrer http://www.statsandgo.com/members/student/sports/form2.cfm

Date/Time26-Sep-08 02:44 PM 
Stack Trace  javascript:; (click to expand) 





~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313162
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: (ot) Best development laptop

2008-09-26 Thread Mark Mandel
I second the choice to gets something with a 17 screen.

I've been running a Dell XPS M1710 (they have since updated) as my
laptop, and it is a beefy machine, and its been really nice!

When I was looking around, the beefiest machine, with the highest
screen resolution was the Dell XPS, and it was the cheapest too.

I actually run Ubuntu on it, but I don't do much Photoshop stuff (tho
I do run it in a VM sometimes), and have a dual boot to XP.

The only issue I have had with it, is after a year the nVidia card
overheated, but that seems to be more a fault with nVidia.  That being
said, Dell was out next day, and had it replaced.

I would recommend getting Complete Cover for your Dell machines.

I have found Dell support to be really, really good (at least in AU).
I've called them at 3pm one day, had a phone call back from a tech
that night, and had him out at 9am the next morning.  Well worth the
extra few hundred.

Mark



On Sat, Sep 27, 2008 at 7:12 AM, Andy Matthews [EMAIL PROTECTED] wrote:
 @Jochem...unlikely that we'd have all 4 concurrent, but it's possible.
 Probably not for long periods of time though. Mostly working from desks, but
 I would be doing graphics work ala Photoshop and Flash, and screen real
 estate is of crucial importance. I'd rather deal with the additional weight,
 and size, of a 17 laptop than have to deal with a smaller screen.

 @Jim/JJ...we could ask for MBPs (whether we get them or not, I'm not sure).
 I will say that I'm considering it, but will likely stick with a PC because
 of several small, but crucial, features that a PC has which OSX does not.

 We'll proably be going with high end Dell XPS or Alienware machines. We'll
 see though.

 Thanks to everyone for their input.

 -Original Message-
 From: Jochem van Dieten [mailto:[EMAIL PROTECTED]
 Sent: Friday, September 26, 2008 3:51 PM
 To: cf-talk
 Subject: Re: (ot) Best development laptop

 Andy Matthews wrote:
 It's been suggested that the dev dept at our company (of which I am a
 part) get rid of our desktop machines and replace them with laptops. I'd
 like to run it past you guys and see what you thought about good, beefy
 development machines.

 How mobile is your team? Will they actually take their laptops somewhere or
 will they just remain on a desk? If they are meant to be portable, don't go
 beyond a 15.4 screen (and that is bad enough already).


 Here's a partial list of the things that would need to run on each
 machine:

 * 2-4 concurrent instances of JVM (and ColdFusion) - a sites instance, a
 control panel instance for our current code, and a sites, and control
 instance for a new set of code we're developing.

 4 concurrent instances is a lot. I may have 12 JRun and 2 JBoss instances on
 my laptop, but I never run more then 2 at the same time.


 Can any of you recommend high quality laptops that meet these criteria?

 If you want quality nothing beats a Lenovo Thinkpad. They have plenty of
 models that meet your performance requirements.

 Jochem



 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313164
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: (ot) Best development laptop

2008-09-26 Thread J.J. Merrick
Andy,

Could you expand on the small apps that you need? I am just curious as
to what they are. I made the switch back in Feb and have found that
99% of my needs have been met... the 1% is for TortoiseSVN :-)



J.J.

On Fri, Sep 26, 2008 at 4:12 PM, Andy Matthews [EMAIL PROTECTED] wrote:
 @Jochem...unlikely that we'd have all 4 concurrent, but it's possible.
 Probably not for long periods of time though. Mostly working from desks, but
 I would be doing graphics work ala Photoshop and Flash, and screen real
 estate is of crucial importance. I'd rather deal with the additional weight,
 and size, of a 17 laptop than have to deal with a smaller screen.

 @Jim/JJ...we could ask for MBPs (whether we get them or not, I'm not sure).
 I will say that I'm considering it, but will likely stick with a PC because
 of several small, but crucial, features that a PC has which OSX does not.

 We'll proably be going with high end Dell XPS or Alienware machines. We'll
 see though.

 Thanks to everyone for their input.

 -Original Message-
 From: Jochem van Dieten [mailto:[EMAIL PROTECTED]
 Sent: Friday, September 26, 2008 3:51 PM
 To: cf-talk
 Subject: Re: (ot) Best development laptop

 Andy Matthews wrote:
 It's been suggested that the dev dept at our company (of which I am a
 part) get rid of our desktop machines and replace them with laptops. I'd
 like to run it past you guys and see what you thought about good, beefy
 development machines.

 How mobile is your team? Will they actually take their laptops somewhere or
 will they just remain on a desk? If they are meant to be portable, don't go
 beyond a 15.4 screen (and that is bad enough already).


 Here's a partial list of the things that would need to run on each
 machine:

 * 2-4 concurrent instances of JVM (and ColdFusion) - a sites instance, a
 control panel instance for our current code, and a sites, and control
 instance for a new set of code we're developing.

 4 concurrent instances is a lot. I may have 12 JRun and 2 JBoss instances on
 my laptop, but I never run more then 2 at the same time.


 Can any of you recommend high quality laptops that meet these criteria?

 If you want quality nothing beats a Lenovo Thinkpad. They have plenty of
 models that meet your performance requirements.

 Jochem



 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313165
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: (ot) Best development laptop

2008-09-26 Thread Charlie Griefer
hehe i knew that bit was gonna catch a mac person's attention :)

On Fri, Sep 26, 2008 at 2:47 PM, J.J. Merrick [EMAIL PROTECTED]wrote:

 Andy,

 Could you expand on the small apps that you need? I am just curious as
 to what they are. I made the switch back in Feb and have found that
 99% of my needs have been met... the 1% is for TortoiseSVN :-)



 J.J.

 On Fri, Sep 26, 2008 at 4:12 PM, Andy Matthews [EMAIL PROTECTED]
 wrote:
  @Jochem...unlikely that we'd have all 4 concurrent, but it's possible.
  Probably not for long periods of time though. Mostly working from desks,
 but
  I would be doing graphics work ala Photoshop and Flash, and screen real
  estate is of crucial importance. I'd rather deal with the additional
 weight,
  and size, of a 17 laptop than have to deal with a smaller screen.
 
  @Jim/JJ...we could ask for MBPs (whether we get them or not, I'm not
 sure).
  I will say that I'm considering it, but will likely stick with a PC
 because
  of several small, but crucial, features that a PC has which OSX does not.
 
  We'll proably be going with high end Dell XPS or Alienware machines.
 We'll
  see though.
 
  Thanks to everyone for their input.
 
  -Original Message-
  From: Jochem van Dieten [mailto:[EMAIL PROTECTED]
  Sent: Friday, September 26, 2008 3:51 PM
  To: cf-talk
  Subject: Re: (ot) Best development laptop
 
  Andy Matthews wrote:
  It's been suggested that the dev dept at our company (of which I am a
  part) get rid of our desktop machines and replace them with laptops. I'd
  like to run it past you guys and see what you thought about good, beefy
  development machines.
 
  How mobile is your team? Will they actually take their laptops somewhere
 or
  will they just remain on a desk? If they are meant to be portable, don't
 go
  beyond a 15.4 screen (and that is bad enough already).
 
 
  Here's a partial list of the things that would need to run on each
  machine:
 
  * 2-4 concurrent instances of JVM (and ColdFusion) - a sites instance,
 a
  control panel instance for our current code, and a sites, and control
  instance for a new set of code we're developing.
 
  4 concurrent instances is a lot. I may have 12 JRun and 2 JBoss instances
 on
  my laptop, but I never run more then 2 at the same time.
 
 
  Can any of you recommend high quality laptops that meet these criteria?
 
  If you want quality nothing beats a Lenovo Thinkpad. They have plenty of
  models that meet your performance requirements.
 
  Jochem
 
 
 
 

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313166
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Ordered Argument names

2008-09-26 Thread C S
 Well it has to really - unnamed arguments in a random order would be 
 impossible to use.
 But it'd be handy if they made named arguments work in the right order 
 too.

{Smack} Of course the reason it works has nothing to do with arguments object 
itself. Talk about Friday density ;-) 
 
 My understanding of the Arguments scope is(/was) that it's a special 
 construct that inherits functionality of Structs and Arrays, but isn't 
 actually either of them. 

Yes, it is not.  I believe it is an internal class that implements from 
java.util.Map. Now if it was an ordered collection, that would be sweet.  



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313167
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: CTO Opportunity

2008-09-26 Thread Eric Roberts
Then you would be perfect for an executive position *ducking*

Eric

/*-Original Message-
/*From: Adam Haskell [mailto:[EMAIL PROTECTED]
/*Sent: Friday, September 26, 2008 3:26 PM
/*To: cf-talk
/*Subject: Re: CTO Opportunity
/*
/*Thanks I am what you would call a moron.
/*
/*Adam :)
/*
/*On Fri, Sep 26, 2008 at 3:41 PM, Maureen [EMAIL PROTECTED] wrote:
/*
/* FYI - You sent this message to the entire list.   The employer's
/* contact info is at the bottom of the message.
/*
/*
/* On Fri, Sep 26, 2008 at 12:30 PM, Adam Haskell [EMAIL PROTECTED]
/* wrote:
/*  I'm certainly not local but I have interest in the opportunity. I'm an
/*  Architect for the Kroger Company, as an architect my input and ideas
/*are
/*  integral in decisions that include technology directions in Kroger,
/* process
/*  definition, and development innovation. I've also been the lead on 2
/*  projects is patents pending inside Kroger and consulted on a third.
/*These
/*  project are mostly in workforce management and usability concepts for
/*web
/*  applications. Please feel free to view my resume on Google Docs, I've
/*  provided a link before my signature. I believe you can export it to
/*your
/*  desired format from there, if not please let me know and I can send an
/*  attachment in the format you desire.
/* 
/*  http://docs.google.com/Doc?docid=dcjskfzr_11hjtk4h
/* 
/*  Adam Haskell
/* 
/*  On Fri, Sep 26, 2008 at 2:32 PM, Rich Baker [EMAIL PROTECTED]
/*wrote:
/* 
/*  I have a client in the Lake Mary, FL area that is looking for a CTO
/* level
/*  person who has a background in managing teams who develop web based
/*  applications using ColdFusion, .net, SQL Server, etc. This is not a
/* hands on
/*  development position, but the CTO should be able to effectively
/* communicate
/*  innovative ideas, and put these ideas into action. The CEO is looking
/* for
/*  someone who has market changing ideas, not just a doer, but a
/*strategic
/*  thinker. If you are interested in learning more about this position,
/* please
/*  give me a call or email--- Rich Baker 407-548-6313 -
/[EMAIL PROTECTED]
/* Local candidates will receive priority preference ***
/* 
/* 
/* 
/* 
/*
/*

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313168
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Error converting data type varchar to numeric

2008-09-26 Thread Sam Roach
I've had problems in the past passing  to numeric fields.

EX:
cfprocparam type=In cfsqltype=CF_SQL_NUMERIC dbVarName=FIELD_GOAL
value= null=YES

try putting a value in as a test to see if this is where your error is.

EX:
cfprocparam type=In cfsqltype=CF_SQL_NUMERIC dbVarName=FIELD_GOAL
value=0 null=YES

-- Sam


On Fri, Sep 26, 2008 at 2:29 PM, Larry Juncker [EMAIL PROTECTED] wrote:

 Anybody

 This is something that I really need help on...


 Thanks Again in advance

 -Original Message-
 From: Larry Juncker [mailto:[EMAIL PROTECTED]
 Sent: Friday, September 26, 2008 2:50 PM
 To: cf-talk
 Subject: Error converting data type varchar to numeric

 Can anyone help me with this?

 I have no VARCHAR values going into any numeric fields.The error seems
 to be coming form my cfprocresult tag

 All values in the table can be null except the automatic column which is
 not
 even mentioned in this SP

 Any help would be gretly appreciated.

 Thanks in advance

 Larry

 PS: I only outputed my cfproc statements to show what is being submitted to
 the SP

 cfprocparam type=In cfsqltype=CF_SQL_INTEGER dbVarName=Student_UID
 value=2 null=No
 cfprocparam type=In cfsqltype=CF_SQL_INTEGER dbVarName=Coach_UID
 value=0 null=No
 cfprocparam type=In cfsqltype=CF_SQL_VARCHAR dbVarName=GRADE
 value=SR null=NO
 cfprocparam type=In cfsqltype=CF_SQL_VARCHAR
 dbVarName=PRIMARY_POSITION value=Forward 3 null=NO
 cfprocparam type=In cfsqltype=CF_SQL_INTEGER dbVarName=GAMES_PLAYED
 value=50 null=NO
 cfprocparam type=In cfsqltype=CF_SQL_INTEGER dbVarName=GAMES_STARTED
 value=45 null=NO
 cfprocparam type=In cfsqltype=CF_SQL_NUMERIC dbVarName=FIELD_GOAL
 value= null=YES
 cfprocparam type=In cfsqltype=CF_SQL_NUMERIC
 dbVarName=THREE_POINT_PERCENT value= null=YES
 cfprocparam type=In cfsqltype=CF_SQL_NUMERIC
 dbVarName=FREE_THROW_PERCENT value= null=YES
 cfprocparam type=In cfsqltype=CF_SQL_NUMERIC dbVarName=REBOUNDS_GAME
 value= null=YES
 cfprocparam type=In cfsqltype=CF_SQL_NUMERIC dbVarName=ASSISTS_GAME
 value= null=YES
 cfprocparam type=In cfsqltype=CF_SQL_NUMERIC dbVarName=TURNOVERS_GAME
 value= null=YES
 cfprocparam type=In cfsqltype=CF_SQL_NUMERIC dbVarName=BLOCKS_GAME
 value= null=YES
 cfprocparam type=In cfsqltype=CF_SQL_NUMERIC dbVarName=STEALS_GAME
 value= null=YES
 cfprocparam type=In cfsqltype=CF_SQL_NUMERIC dbVarName=TOTAL_POINTS
 value= null=YES
 cfprocparam type=In cfsqltype=CF_SQL_NUMERIC dbVarName=POINTS_GAME
 value= null=YES
 cfprocparam type=In cfsqltype=CF_SQL_NUMERIC dbVarName=VERTICAL_JUMP
 value= null=YES
 cfprocparam type=In cfsqltype=CF_SQL_NUMERIC dbVarName=STANDING_REACH
 value= null=YES




















 FONT face=Times New Roman size=3/FONT





 The web site you are accessing has experienced an unexpected error.
 Please contact the website administrator.


 The following information is meant for the website developer for debugging
 purposes.


 Error Occurred While Processing Request



 Error Executing Database Query.

 [Macromedia][SQLServer JDBC Driver][SQLServer]Error converting data type
 varchar to numeric.

 The error occurred in
 C:\Inetpub\wwwroot\statsandgo\members\Student\Sports\form2action.cfm: line
 43


 41 :/cfloop

 42 :

 43 :cfprocresult name=InsertSport resultset=1

 44 :

 45 :/cfstoredproc

  _


 SQLSTATE   HY000
 SQL{call sp_Basketball_ins( (param 1) , (param 2) , (param 3) ,
 (param 4) , (param 5) , (param 6) , (param 7) , (param 8) , (param 9) ,
 (param 10) , (param 11) , (param 12) , (param 13) , (param 14) , (param 15)
 , (param 16) , (param 17) , (param 18) )}
 VENDORERRORCODE8114
 DATASOURCE profilesandgo
 Resources:


 *   Check the ColdFusion documentation
 http://www.macromedia.com/go/proddoc_getdoc  to verify that you are
 using
 the correct syntax.

 *   Search the Knowledge Base
 http://www.macromedia.com/support/coldfusion/  to find a solution to
 your
 problem.


 Browser  Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET
 CLR
 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)
 Remote Address   74.43.153.40
 Referrer
 http://www.statsandgo.com/members/student/sports/form2.cfm

 Date/Time26-Sep-08 02:44 PM
 Stack Trace  javascript:; (click to expand)





 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313169
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CF 8 Standard and Exchange Integration

2008-09-26 Thread James Holmes
All of the restricted features are served via the Enterprise Feature Router,
which means they are single threaded. Multiple requests involving these
features get queued up.
mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/


2008/9/27 Kevin Miller [EMAIL PROTECTED]

 Can someone describe the differences in capability for Microsoft Exchange
 integration between CF 8 Standard and Enterprise?  Adobe's site is very
 vague, and I'm not sure to what extent the Standard version is feature
 crippled.

 Thanks,
 Kevin



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313170
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CTO Opportunity

2008-09-26 Thread Adam Haskell
Good point ;)

Adam

On Fri, Sep 26, 2008 at 6:10 PM, Eric Roberts 
[EMAIL PROTECTED] wrote:

 Then you would be perfect for an executive position *ducking*

 Eric



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313171
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Error converting data type varchar to numeric

2008-09-26 Thread Larry Juncker
I was under the understanding that if null=Yes, then the value was
igored and not sent to the SP
-- 
Larry Juncker
ALJ Computer Services, LLC
10 No 11th Street
Fort Dodge, IA 50501-4010
(515) 576-8510
President  CEO

LJJ I've had problems in the past passing  to numeric fields.
LJJ
LJJ EX:
LJJ cfprocparam type=In cfsqltype=CF_SQL_NUMERIC dbVarName=FIELD_GOAL


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313172
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Jr-Int CF Developer (Greater Toronto Area)

2008-09-26 Thread Virginia Davidson
I am working with a client in the Greater Toronto Area that is looking for a 
Junior or Intermediate Coldfusion 8 developer (CF 7 is alright as well) with 
solid Oracle 9i or 10g experience. Minimum 2 years experience. 
Other desirables:
-javascript
-CSS

This company designs webpgages and applications for SMBs and first tier 
healthcare companies.  If you like working in a small environment (team size is 
approximately 10), multi-task, and would like the opportunity to grow your 
skills, then please contact me.  This position is full time and will pay up to 
60K, however, depending on how strong one is, they are willing to pay more.  

They want to hire the selected candidate by the end of next week (Oct 3/08). 

Contact information:

w: 416-225-5599 x 297
c: 416-432-2807
[EMAIL PROTECTED] 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-jobs-talk/message.cfm/messageid:4011
Subscription: http://www.houseoffusion.com/groups/cf-jobs-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.11


CTO Opportunity

2008-09-26 Thread Rich Baker
I have a client in the Lake Mary, FL area that is looking for a CTO level 
person who has a background in managing teams who develop web based 
applications using ColdFusion, .net, SQL Server, etc. This is not a hands on 
development position, but the CTO should be able to effectively communicate 
innovative ideas, and put these ideas into action. The CEO is looking for 
someone who has market changing ideas, not just a doer, but a strategic 
thinker. If you are interested in learning more about this position, please 
give me a call or email--- Rich Baker 407-548-6313 - [EMAIL PROTECTED] *** 
Local candidates will receive priority preference *** 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-jobs-talk/message.cfm/messageid:4013
Subscription: http://www.houseoffusion.com/groups/cf-jobs-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.11


Re: CTO Opportunity

2008-09-26 Thread Phillip M. Vector
Perhaps putting your resume online for all to see isn't the smartest 
idea. Was this intended as a reply to the person?

If so, I'd recommend you check out the permissions setting.

Adam Haskell wrote:
 I'm certainly not local but I have interest in the opportunity. I'm an
 Architect for the Kroger Company, as an architect my input and ideas are
 integral in decisions that include technology directions in Kroger, process
 definition, and development innovation. I've also been the lead on 2
 projects is patents pending inside Kroger and consulted on a third. These
 project are mostly in workforce management and usability concepts for web
 applications. Please feel free to view my resume on Google Docs, I've
 provided a link before my signature. I believe you can export it to your
 desired format from there, if not please let me know and I can send an
 attachment in the format you desire.
 
 http://docs.google.com/Doc?docid=dcjskfzr_11hjtk4h
 
 Adam Haskell
 
 On Fri, Sep 26, 2008 at 2:32 PM, Rich Baker [EMAIL PROTECTED] wrote:
 
 I have a client in the Lake Mary, FL area that is looking for a CTO level
 person who has a background in managing teams who develop web based
 applications using ColdFusion, .net, SQL Server, etc. This is not a hands on
 development position, but the CTO should be able to effectively communicate
 innovative ideas, and put these ideas into action. The CEO is looking for
 someone who has market changing ideas, not just a doer, but a strategic
 thinker. If you are interested in learning more about this position, please
 give me a call or email--- Rich Baker 407-548-6313 - [EMAIL PROTECTED] Local 
 candidates will receive priority preference ***


 
 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-jobs-talk/message.cfm/messageid:4015
Subscription: http://www.houseoffusion.com/groups/cf-jobs-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.11


RE: CTO Opportunity

2008-09-26 Thread Levi Wallach
It's pretty obvious this was a goof on Adam's part by just hitting reply rather 
than copying in the original sender's email address.  This happens to everyone 
and there's no reason to call attention to it - I'm sure Adam is already 
embarrassed and perhaps a little concerned that his current employer might see 
the message.  I don't understand what you  mean by permissions.  It has nothing 
to do with permissions, just a mistake that all of us make from time to time, 
to varying degrees of consequence...


From: Phillip M. Vector [EMAIL PROTECTED]
Sent: Friday, September 26, 2008 3:42 PM
To: cf-jobs-talk
Subject: Re: CTO Opportunity

Perhaps putting your resume online for all to see isn't the smartest
idea. Was this intended as a reply to the person?

If so, I'd recommend you check out the permissions setting.

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-jobs-talk/message.cfm/messageid:4016
Subscription: http://www.houseoffusion.com/groups/cf-jobs-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.11


Re: CTO Opportunity

2008-09-26 Thread Aaron Rouse
What is so wrong with having publicly viewable resumes?  I come across
people's personal websites all the time that have that.  I could
understand how maybe having them viewable to lord and everyone else
and containing perhaps a home address might be a mistake.

On Fri, Sep 26, 2008 at 2:53 PM, Phillip M. Vector
[EMAIL PROTECTED] wrote:
 I know and I'm sorry Adam. I meant that as a private message to you as well.

 As for permissions, you can set your document to only be readable by
 certain people. He can put in the email of the person who he wants to
 see it and block out everyone else.

 Heh.. Yes, I do see the irony of not cutting and pasting your email when
 you forgot as well. Again, I'm sorry.

 Levi Wallach wrote:
 It's pretty obvious this was a goof on Adam's part by just hitting reply 
 rather than copying in the original sender's email address.  This happens to 
 everyone and there's no reason to call attention to it - I'm sure Adam is 
 already embarrassed and perhaps a little concerned that his current employer 
 might see the message.  I don't understand what you  mean by permissions.  
 It has nothing to do with permissions, just a mistake that all of us make 
 from time to time, to varying degrees of consequence...

 
 From: Phillip M. Vector [EMAIL PROTECTED]
 Sent: Friday, September 26, 2008 3:42 PM
 To: cf-jobs-talk
 Subject: Re: CTO Opportunity

 Perhaps putting your resume online for all to see isn't the smartest
 idea. Was this intended as a reply to the person?

 If so, I'd recommend you check out the permissions setting.



 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-jobs-talk/message.cfm/messageid:4018
Subscription: http://www.houseoffusion.com/groups/cf-jobs-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.11


Re: CTO Opportunity

2008-09-26 Thread Ravi Gehlot
Just my $0.02 cents.

Aaron, 

The problem begins when you try to find a job while still on a job.
If your boss finds out that you are indeed on the look out for a new
opportunity then it may sparkle misunderstandings and misconceptions. I
had a friend once that did really well on his project and he had gotten
bonuses and all the good stuff. The contract was at its final stage and
he needed to make more money because his wife was pregnant with twins.
It so happens that he sent an e-mail to a mailing list of which his boss
was also a subscriber. The e-mail had information about his skills, a
link for his resume and that he was looking for a new opportunity to
make more money. His resume was open to the public.. His boss called him
5 minutes after he sent that e-mail and cursed him to death saying that
it was unethical to say that my friend was not well paid after all the
bonuses and everything. It sparkled so much trouble that he got out of
the company. 
Indeed, my friend had done his job well. The project had been 95%
delivered and he was looking for a better opportunity. With his wife
pregnant, it was a perfect time to look for a new chance to make more
money. Instead, because of a misunderstanding with having his public
resume open to the public, he ended in a bad situation. His boss later
told him that it will be harder to find programmers because people may
think that he does not pay well. Whih in part, is true. 

Just my $0.02 cents,
Ravi.

On Fri, 2008-09-26 at 14:56 -0500, Aaron Rouse wrote:

 What is so wrong with having publicly viewable resumes?  I come across
 people's personal websites all the time that have that.  I could
 understand how maybe having them viewable to lord and everyone else
 and containing perhaps a home address might be a mistake.
 
 On Fri, Sep 26, 2008 at 2:53 PM, Phillip M. Vector
 [EMAIL PROTECTED] wrote:
  I know and I'm sorry Adam. I meant that as a private message to you as well.
 
  As for permissions, you can set your document to only be readable by
  certain people. He can put in the email of the person who he wants to
  see it and block out everyone else.
 
  Heh.. Yes, I do see the irony of not cutting and pasting your email when
  you forgot as well. Again, I'm sorry.
 
  Levi Wallach wrote:
  It's pretty obvious this was a goof on Adam's part by just hitting reply 
  rather than copying in the original sender's email address.  This happens 
  to everyone and there's no reason to call attention to it - I'm sure Adam 
  is already embarrassed and perhaps a little concerned that his current 
  employer might see the message.  I don't understand what you  mean by 
  permissions.  It has nothing to do with permissions, just a mistake that 
  all of us make from time to time, to varying degrees of consequence...
 
  
  From: Phillip M. Vector [EMAIL PROTECTED]
  Sent: Friday, September 26, 2008 3:42 PM
  To: cf-jobs-talk
  Subject: Re: CTO Opportunity
 
  Perhaps putting your resume online for all to see isn't the smartest
  idea. Was this intended as a reply to the person?
 
  If so, I'd recommend you check out the permissions setting.
 
 
 
  
 
 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-jobs-talk/message.cfm/messageid:4019
Subscription: http://www.houseoffusion.com/groups/cf-jobs-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.11


Re: CTO Opportunity

2008-09-26 Thread Aaron Rouse
Yeah but your friend was hunting for a job and pushing/leading people
towards a resume and him.  My question was more towards people who just have
their resumes sitting out there on their personal sites and in a completely
unprotected manner.  I would guess that 90% of the blogs I randomly go to
that the owners of those also have their resume sitting on the same sites.
 Would also guess probably 90% of the people I have worked with in this
industry have their resumes on their personal websites.

On Fri, Sep 26, 2008 at 3:21 PM, Ravi Gehlot [EMAIL PROTECTED]wrote:

 Just my $0.02 cents.

 Aaron,

The problem begins when you try to find a job while still on a job.
 If your boss finds out that you are indeed on the look out for a new
 opportunity then it may sparkle misunderstandings and misconceptions. I
 had a friend once that did really well on his project and he had gotten
 bonuses and all the good stuff. The contract was at its final stage and
 he needed to make more money because his wife was pregnant with twins.
 It so happens that he sent an e-mail to a mailing list of which his boss
 was also a subscriber. The e-mail had information about his skills, a
 link for his resume and that he was looking for a new opportunity to
 make more money. His resume was open to the public.. His boss called him
 5 minutes after he sent that e-mail and cursed him to death saying that
 it was unethical to say that my friend was not well paid after all the
 bonuses and everything. It sparkled so much trouble that he got out of
 the company.
Indeed, my friend had done his job well. The project had been 95%
 delivered and he was looking for a better opportunity. With his wife
 pregnant, it was a perfect time to look for a new chance to make more
 money. Instead, because of a misunderstanding with having his public
 resume open to the public, he ended in a bad situation. His boss later
 told him that it will be harder to find programmers because people may
 think that he does not pay well. Whih in part, is true.

 Just my $0.02 cents,
 Ravi.




~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-jobs-talk/message.cfm/messageid:4020
Subscription: http://www.houseoffusion.com/groups/cf-jobs-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.11


Re: CTO Opportunity

2008-09-26 Thread Matt Williams
And now it looks like you just sent to cf-talk, not cf-jobs-talk.
Maybe you need a break from emailing today. :) At least you get a
weekend now.

And people, if replying to this, at least delete out the original post
with the resume link.

On Fri, Sep 26, 2008 at 3:26 PM, Adam Haskell [EMAIL PROTECTED] wrote:
 Thanks I am what you would call a moron.

 Adam :)

Matt

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-jobs-talk/message.cfm/messageid:4022
Subscription: http://www.houseoffusion.com/groups/cf-jobs-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.11


Re: CTO Opportunity

2008-09-26 Thread Adam Haskell
Thanks for the defence Levi. The reality is my tweet earlier about not being
happy do to company direction probably already tipped some folks off ;) It's
really my fault as I didn't note this was to cf-jobs-talk. cf-jobs reply is
different (to the emailer not the list). I just didn't notice it. As for a
public resume. It's not linked anywhere public, or at least it wasn't until
not. Besides I am ok with everyone looking at it, I'm proud of my
accomplishments anyone that wants to see it is fine by me. My life is an
open book, mostly ;)


Adam Haskell


On Fri, Sep 26, 2008 at 3:46 PM, Levi Wallach [EMAIL PROTECTED] wrote:

 It's pretty obvious this was a goof on Adam's part by just hitting reply
 rather than copying in the original sender's email address.  This happens to
 everyone and there's no reason to call attention to it - I'm sure Adam is
 already embarrassed and perhaps a little concerned that his current employer
 might see the message.  I don't understand what you  mean by permissions.
  It has nothing to do with permissions, just a mistake that all of us make
 from time to time, to varying degrees of consequence...

 
 From: Phillip M. Vector [EMAIL PROTECTED]
 Sent: Friday, September 26, 2008 3:42 PM
 To: cf-jobs-talk
 Subject: Re: CTO Opportunity

 Perhaps putting your resume online for all to see isn't the smartest
 idea. Was this intended as a reply to the person?

 If so, I'd recommend you check out the permissions setting.

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-jobs-talk/message.cfm/messageid:4023
Subscription: http://www.houseoffusion.com/groups/cf-jobs-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.11


Re: CTO Opportunity

2008-09-26 Thread Adam Haskell
Shh today has been a bad day heh.

Adam

On Fri, Sep 26, 2008 at 4:32 PM, Matt Williams [EMAIL PROTECTED] wrote:

 And now it looks like you just sent to cf-talk, not cf-jobs-talk.
 Maybe you need a break from emailing today. :) At least you get a
 weekend now.

 And people, if replying to this, at least delete out the original post
 with the resume link.

 On Fri, Sep 26, 2008 at 3:26 PM, Adam Haskell [EMAIL PROTECTED] wrote:
  Thanks I am what you would call a moron.
 
  Adam :)

 Matt

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-jobs-talk/message.cfm/messageid:4024
Subscription: http://www.houseoffusion.com/groups/cf-jobs-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.11


Re: Junior to Intermediate CF Developer (Greater Toronto Area)

2008-09-26 Thread Ravi Gehlot
Hi Virginia,

I have lived in the United States for about 9 years and I am a green
card holder. How hard would it be to sponsor a VISA to work in Canada?

Thanks, R.G.




On Fri, 2008-09-26 at 14:23 -0400, [EMAIL PROTECTED]
wrote:

 I am working with a client in the Greater Toronto Area that is looking for 
 a Junior or Intermediate Coldfusion 8 developer (CF 7 is alright as well) 
 with solid Oracle 9i or 10g experience. Minimum 2 years experience. 
 Other desirables:
 -javascript
 -CSS
 
 This company designs webpgages and applications for SMBs and first tier 
 healthcare companies.  If you like working in a small environment (team 
 size is approximately 10), multi-task, and would like the opportunity to 
 grow your skills, then please contact me.  This position is full time and 
 will pay up to 60K, however, depending on how strong one is, they are 
 willing to pay more. 
 
 They want to hire the selected candidate by the end of next week (Oct 
 3/08). 
 
 Contact information:
 
 w: 416-225-5599 x 297
 c: 416-432-2807
 [EMAIL PROTECTED]
 
 
 Virginia Davidson
 Professional Placement Consultant
 Manpower Professional
 4950 Yonge Street, Suite 706
 Toronto, Ontario
 M2N 6K1
 T: 416-225-5599 x297
 F: 416-225-9096 
 C: 416-432-2807
 [EMAIL PROTECTED]
 www.manpowerprofessional.ca
 
 
 This e-mail and its attachments may contain Manpower Inc. proprietary 
 information, which is PRIVILEGED, CONFIDENTIAL, or subject to COPYRIGHT 
 belonging to Manpower Inc.  This e-mail is intended solely for the use of the 
 individual or entity to which it is addressed.  If you are not the intended 
 recipient of this e-mail, or the employee or agent responsible for delivering 
 this e-mail to the intended recipient, you are hereby notified that any 
 dissemination, distribution, copying, or action taken in relation to the 
 contents of and attachments to this e-mail is STRICTLY PROHIBITED and may be 
 UNLAWFUL.  If you have received this e-mail in error, please notify the 
 sender immediately and permanently delete the original and any copy of this 
 e-mail and any printout.  Thank you.
 
 __
 This email has been scanned by the MessageLabs Email Security System.
 For more information please visit http://www.messagelabs.com/email 
 __
 
 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-jobs-talk/message.cfm/messageid:4026
Subscription: http://www.houseoffusion.com/groups/cf-jobs-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.11


Re: Junior to Intermediate CF Developer (Greater Toronto Area)

2008-09-26 Thread Vicky
Having said all that, I've seen a lot of cover letters today for someone who
doesn't have an open position to fill.  :)

On Fri, Sep 26, 2008 at 4:52 PM, Ravi Gehlot [EMAIL PROTECTED]wrote:

 Hi Virginia,

I have lived in the United States for about 9 years and I am a green
 card holder. How hard would it be to sponsor a VISA to work in Canada?

 Thanks, R.G.




 On Fri, 2008-09-26 at 14:23 -0400, [EMAIL PROTECTED]
 wrote:

  I am working with a client in the Greater Toronto Area that is looking
 for
  a Junior or Intermediate Coldfusion 8 developer (CF 7 is alright as well)
  with solid Oracle 9i or 10g experience. Minimum 2 years experience.
  Other desirables:
  -javascript
  -CSS
 
  This company designs webpgages and applications for SMBs and first tier
  healthcare companies.  If you like working in a small environment (team
  size is approximately 10), multi-task, and would like the opportunity to
  grow your skills, then please contact me.  This position is full time and
  will pay up to 60K, however, depending on how strong one is, they are
  willing to pay more.
 
  They want to hire the selected candidate by the end of next week (Oct
  3/08).
 
  Contact information:
 
  w: 416-225-5599 x 297
  c: 416-432-2807
  [EMAIL PROTECTED]
 
 
  Virginia Davidson
  Professional Placement Consultant
  Manpower Professional
  4950 Yonge Street, Suite 706
  Toronto, Ontario
  M2N 6K1
  T: 416-225-5599 x297
  F: 416-225-9096
  C: 416-432-2807
  [EMAIL PROTECTED]
  www.manpowerprofessional.ca
 
  
  This e-mail and its attachments may contain Manpower Inc. proprietary
 information, which is PRIVILEGED, CONFIDENTIAL, or subject to COPYRIGHT
 belonging to Manpower Inc.  This e-mail is intended solely for the use of
 the individual or entity to which it is addressed.  If you are not the
 intended recipient of this e-mail, or the employee or agent responsible for
 delivering this e-mail to the intended recipient, you are hereby notified
 that any dissemination, distribution, copying, or action taken in relation
 to the contents of and attachments to this e-mail is STRICTLY PROHIBITED and
 may be UNLAWFUL.  If you have received this e-mail in error, please notify
 the sender immediately and permanently delete the original and any copy of
 this e-mail and any printout.  Thank you.
 
  __
  This email has been scanned by the MessageLabs Email Security System.
  For more information please visit http://www.messagelabs.com/email
  __
 
 

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-jobs-talk/message.cfm/messageid:4028
Subscription: http://www.houseoffusion.com/groups/cf-jobs-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.11