Re: Portable CFML Development Environment

2005-01-21 Thread Mark Drew
I am lucky I managed to find a 512Mb one (got it as a Xmas pressie) and how I run it was by creating a minimal install of tomcat and deploying CFserver as a webserver on it I then did the same with cfeclipse and My SQL I havent trimmed them down yet but the sizes are: eclipse: 29.8 MB mySQL:

Re: BlogCFM seeks hosting

2005-01-21 Thread Stephen Moretti (cfmaster)
Rick Root wrote: Would anyone like to donate some hosting for the BlogCFM project? I'm developing it on my coldfusion server at work.. but would like someplace reasonably permanent for blogcfm to live. Preferably on a linux server with mysql. CFMX preferable, as I haven't tested it on

Re: BlogCFM seeks hosting

2005-01-21 Thread Stephen Moretti (cfmaster)
Stephen Moretti (cfmaster) wrote: Rick Root wrote: Would anyone like to donate some hosting for the BlogCFM project? I'm developing it on my coldfusion server at work.. but would like someplace reasonably permanent for blogcfm to live. Preferably on a linux server with mysql. CFMX

RE: Stored Proc Question

2005-01-21 Thread Robertson-Ravo, Neil (RX)
In some cases yes but in reality if you are using query caching with cfquery it can be just as fast. For simple selects you will see negligible difference in as far as the parsing is concerned but there is a hell of a lot of other things to consider with using an SP over CFQUERY which will be

Re: BlogCFM seeks hosting

2005-01-21 Thread Neil Middleton
That'll explain where http://www.cf-developer.co.uk went then On Fri, 21 Jan 2005 09:05:32 +, Stephen Moretti (cfmaster) [EMAIL PROTECTED] wrote: Stephen Moretti (cfmaster) wrote: Rick Root wrote: Would anyone like to donate some hosting for the BlogCFM project? I'm

RE: CFMX + UTF8 vs Javascript

2005-01-21 Thread Tim Blair
Why do I need BOTH ? This tells the browser what format to expect the content it receives in: cfcontent type=text/html; charset=ISO-8859-1 And this tells CF how to process the current file (and hence is required in *every file* where you need to specifiy a page encoding): cfprocessingdirective

Re: CFMX + UTF8 vs Javascript

2005-01-21 Thread Paul Hastings
Claude Schneegans wrote: I know that you are a fervent suporter of Unicode, and I'm also, but only where I need it, except that we think it's always needed. retrofitting is a bore. For some pages in some sites in some languages, YES, but for most european languages, iso-8859-1 is the

Re: CFMX + UTF8 vs Javascript

2005-01-21 Thread Paul Hastings
Jochem van Dieten wrote: not a default standard. If only for the existence of Win1252, which is the subtly different Windows default. yeah it is a subtle difference, i've seen it burn quite a few pages. i'd call that windows codepage a superset of iso-8859-1.

Re: BlogCFM seeks hosting

2005-01-21 Thread Stephen Moretti (cfmaster)
Neil Middleton wrote: That'll explain where http://www.cf-developer.co.uk went then Its still there, just without the hyphen. ;) ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application

Re: cfpop unicode handling

2005-01-21 Thread Paul Hastings
Paul Vernon wrote: I think that just about covers it except perhaps that sun will probably never fix this. ~| Find out how CFTicket can increase your company's customer support efficiency by 100%

Re: CFMX + UTF8 vs Javascript

2005-01-21 Thread Paul Hastings
Claude Schneegans wrote: http://diplomes.med.umontreal.ca/testcfm.cfm btw that seem to work for me in ie 6.0.2800 in firefox 1. ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application

RE: Portable CFML Development Environment

2005-01-21 Thread COLLIE David
Interested in a portable CFML dev enviroment that fits on a USB drive? Check out http://philcruz.com/blog/2005/01/portable-cfml-development-env ironment.htm Thoughts? Very nice... I'll give that a try on my iRiver at lunchtime and let you know :) -- dc

message boards

2005-01-21 Thread Daniel Kessler
I remember a thread about CF message boards awhile back and thought that I had saved the information. I can't find it in the google search either. So... Can anyone recommend some easy-to-setup reasonably featured licensable message-board software? thanks! -- Daniel Kessler Department of

Problem with CFHTTP

2005-01-21 Thread Andrew Dixon
Hi All. Not sure if anyone else has ever come across this, but we have a site that uses an external XML feed to provide it with data. We access this feed using CFHTTP which work fine, however sometimes the provider take a while to response, 10 - 20 seconds, and when this happens CFHTTP eats cpu

Re: News about Macrmedia and it stock...

2005-01-21 Thread Joe Rinehart
I think any effects of this article were proven moot yesterday; MACR went up 22% based on their Q3 earnings. On Wed, 19 Jan 2005 20:09:19 -, Ciliotta, Mario [EMAIL PROTECTED] wrote: Here is an article I received this afternoon: TECH BIZ from CNN/Money and Business 2.0 Wednesday,

Verity Issue

2005-01-21 Thread Robertson-Ravo, Neil (RX)
All, For some reason on certain server set, for Verity K2 we are getting the following error message : Not enough resources available to create VDK collection threads : K2 Server Aborting. Anyone seen this error? Any ideas? The same collections set works AOK on another sever set just not on

Re: message boards

2005-01-21 Thread Rick Root
Daniel Kessler wrote: Can anyone recommend some easy-to-setup reasonably featured licensable message-board software? CFMBB is in development right now... being early in the development it's probably not what you're looking for, but might be worth a look at www.cfmbb.org. It is distributed

Re: display number of pages left

2005-01-21 Thread daniel kessler
Hey Greg, that worked great! Now, I have to figure out how to get a count of the inner query because that's the total number of hits. I tried adding Count, but don't know enough to do it correctly. Oh well, I'll attack that today before I start another thread. I appreciate the help everyone.

RE: message boards

2005-01-21 Thread Michael T. Tangorre
From: Daniel Kessler [mailto:[EMAIL PROTECTED] I remember a thread about CF message boards awhile back and thought that I had saved the information. I can't find it in the google search either. So... Can anyone recommend some easy-to-setup reasonably featured licensable

Re: display number of pages left

2005-01-21 Thread daniel kessler
Does making sure that it's a varchar do the same thing? IOW, is it making sure that it's not some sort of run statement? Yes, it simply tells the database server that the value is just that - a value rather than an SQL command. ah great, thanks for the clarity. I have alot of retro-fitting

Re: Oracle help please

2005-01-21 Thread Deanna Schneider
Why didn't you just do this, then? UPDATE TABLE1 SET TABLE1.FIELD = ( SELECT TABLE2.FIELD FROM TABLE2 WHERE TABLE1.KEY = TABLE2.KEY AND TABLE1.FIELD = 'Y' ) (You don't need the outer table in your inner query.) - Original Message - From: Frank Mamone [EMAIL PROTECTED] To: CF-Talk

RE: Stored Proc Question

2005-01-21 Thread Andy Ousterhout
Good point. But you can't use query caching without placing in application or session scope and still use cfqueryparam -Original Message- From: Robertson-Ravo, Neil (RX) In some cases yes but in reality if you are using query caching with cfquery it can be just as fast. For simple

RE: Stored Proc Question

2005-01-21 Thread Robertson-Ravo, Neil (RX)
Caching with CFQUERY? To be honest I rarely use CFQUERY now apart from QoQ so I am a tad rusty on its ins and outs ;-) -Original Message- From: Andy Ousterhout [mailto:[EMAIL PROTECTED] Sent: 21 January 2005 13:51 To: CF-Talk Subject: RE: Stored Proc Question Good point. But you

Re: Oracle help please

2005-01-21 Thread Frank Mamone
Thanks everyone for all the options. I'm definately archiving this thread in my Gmail! -Frank On Fri, 21 Jan 2005 07:27:20 -0600, Deanna Schneider [EMAIL PROTECTED] wrote: Why didn't you just do this, then? UPDATE TABLE1 SET TABLE1.FIELD = ( SELECT TABLE2.FIELD FROM TABLE2 WHERE

RE: message boards

2005-01-21 Thread Michael T. Tangorre
From: Daniel Kessler [mailto:[EMAIL PROTECTED] I remember a thread about CF message boards awhile back and thought that I had saved the information. I can't find it in the google search either. So... Can anyone recommend some easy-to-setup reasonably featured licensable message-board

Re: Stored Proc Question

2005-01-21 Thread Jochem van Dieten
Andy Ousterhout wrote: I thought that even with simple queries that Stored Procs where much faster? That is not my experience. YMMV Jochem ~| Logware: a new and convenient web-based time tracking application. Start tracking

Re: Cfserver 5.0 using all my ports! (one more thing)

2005-01-21 Thread Jochem van Dieten
Dave Phillips wrote: Thanks, but unfortunately, increasing ports doesn't solve my problem...it just means it can go longer before it craps out. It is clear now that coldfusion is holding these ports open as all I have to do is restart cold fusion and it clears them all. It's utilizing every

httprequest enctype=multipart/form-data

2005-01-21 Thread cfhelp
Do I need to pass the enctype=multipart/form-data using httprequest? Something like this cfhttpparam name=enctype type=CGI value=multipart/form-data I am uploading a file using a form to 2 websites on separate servers and networks. Thanks Rick Eidson Kansas City Local Music

RE: Flash Remoting Issue

2005-01-21 Thread Mark A Kruger
I have sometimes had to rerun the remove connector and Add connector scripts in the wsconfig (?) directory. I also recall the necessity of having a jrunscripts virtual directory - yes? Dave? -Original Message- From: Rey Bango [mailto:[EMAIL PROTECTED] Sent: Thursday, January 20, 2005

Re: Unexpeceted behavior of the dateDiff function.

2005-01-21 Thread Marc Campeau
Have you applied all the updaters to ColdFusion? Thanks for the tip Michael, I shall see if it's the case! -- Marc ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application

Re: CFMX + UTF8 vs Javascript

2005-01-21 Thread Claude Schneegans
This tells the browser what format to expect the content it receives in: cfcontent type=text/html; charset=ISO-8859-1 More precisely: it tells CF to tell the browser what format to expect from what it will recive from CF. Then if CF knows the format, why should I tell it twice? BTW it seems to

Re: Unexpeceted behavior of the dateDiff function.

2005-01-21 Thread Marc Campeau
On Thu, 20 Jan 2005 22:24:28 -0800, Ian Skinner [EMAIL PROTECTED] wrote: There was a disussion on this topic in one of the Macromedia Forums. The consensus was that dateDiff looks at a 24 hour period, not the difference in the day part of the date object, this makes more sense if you consider

Re: message boards

2005-01-21 Thread daniel kessler
well, in searching my email I came up with some of the threads that I've seen in the past about Message Boards. I don't know why they don't come up in the Google Search on the houseoffusion site. http://www.houseoffusion.com/cf_lists/index.cfm/method=messagesthreadid=32285forumid=4#162010

Re: Flash Remoting Issue

2005-01-21 Thread Rey Bango
Thanks Mark. Can you give me the complete path to where to find these scripts? I'm willing to try anything before having to reinstall CFMX. Rey... - Original Message - From: Mark A Kruger [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Friday, January 21, 2005 10:18 AM

Re: CFMX + UTF8 vs Javascript

2005-01-21 Thread Claude Schneegans
btw that seem to work for me in ie 6.0.2800 in firefox 1. I used the same file to test the suggested cure, so now it works. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address:

IIS Integrated Authentication Port Number?

2005-01-21 Thread Burns, John D
We have a requirement coming up for a project and we're trying to work out a few details before we start. This web app will use IIS Integrated Authentication to query an Active Directory domain for user access to the site. The problem is that the webservers are in a DMZ and are not part of any

Re: I wrote a captcha generator

2005-01-21 Thread Larry Lyons
Larry - that's just a default font file. You can change it to any truetype font - it should work quite nicely on any platform. - Rick thanks Rick, shall give it a try. larry ~| Logware: a new and convenient web-based

Re: wussy-wig editor

2005-01-21 Thread Thomas Chiverton
On Tuesday 18 Jan 2005 18:56 pm, Adrocknaphobia wrote: Why bother replying? Starship Troopers I'm doing my part ! /Starship Troopers -- Tom Chiverton Advanced ColdFusion Programmer ~| Logware: a new and convenient web-based

Re: Stored Proc Question

2005-01-21 Thread Jared Rypka-Hauer - CMG, LLC
Has anyone tested simple cached queries with CFQUERY against the performance of sp_executesql and SQL statement strings? Functionally it's exactly the same as cfquery in that variables are replaced with values... however, the DB does the work and the CF server simply issues directives and receives

Re: Portable CFML Development Environment

2005-01-21 Thread Jared Rypka-Hauer - CMG, LLC
What a nifty idea... I have a 256MB SD card in my Palm, a 20GB iPod, and a 128MB Jump Drive... so I could have 3 development envrionments with me everywhere I go... Now, I want to put all of the cool software from this thread on my SD card and be able to use a Palm editor to code against a

Re: I wrote a captcha generator

2005-01-21 Thread Rick Root
Larry Lyons wrote: thanks Rick, shall give it a try. FYI, I moved the script to a different location: http://www.it.dev.duke.edu/blogcfm/captcha_script/index.cfm ~| Discover CFTicket - The leading ColdFusion Help Desk and

Re: BlogCFM seeks hosting

2005-01-21 Thread Jared Rypka-Hauer - CMG, LLC
Rick, Email me off-list. I have an idea or two. Yeah, they're relevant to the blogCFM... Laterz, J On Thu, 20 Jan 2005 21:10:19 -0500, Rick Root [EMAIL PROTECTED] wrote: Would anyone like to donate some hosting for the BlogCFM project? I'm developing it on my coldfusion server at work..

Re: Portable CFML Development Environment

2005-01-21 Thread Mark Drew
Not sure if this helps but how about http://www.ignitefusion.com/ it has a tiny footprint but it says it runs only on windows, I dont have any PDA's but it would be mighty cool to use this MD On Fri, 21 Jan 2005 10:35:20 -0600, Jared Rypka-Hauer - CMG, LLC [EMAIL PROTECTED] wrote: What a

Re: display number of pages left

2005-01-21 Thread Greg Morphis
Daniel, It is possible within the same query to return the count of rows within that same query.. SELECT * FROM ( SELECT d.*, ROWNUM r, COUNT(docid) OVER() AS rowcount FROM DOCUMENTS d ORDER BY title ) WHERE r 1 AND r 10 Using count() over () as an analytic function instead of as an

cfc rrs reader

2005-01-21 Thread Justin Hansen
Has anyone seen or created a cfc based rss news reader? I'd rather not reinvent the wheel if I don't have to. Thanks, Justin ~| Logware: a new and convenient web-based time tracking application. Start tracking and documenting

Re: cf-based discussion board

2005-01-21 Thread daniel kessler
Even I wrote my own, it's running at http://www.gameslave.co.uk/forum/index.cfm if you want a look. I noticed this post in looking for message-boards. Your forums are nice. Did you ever make this available to others as you suggested? Also, I'm in Oracle, would it be hard to port it there?

Re: Portable CFML Development Environment

2005-01-21 Thread Jared Rypka-Hauer - CMG, LLC
If this be true (can't imagine why they'd lie) this whole convo may become superfluous: http://www.palmsource.com/announcement/linuxletter.html They just might give me what I need to run a stripped version of Tomcat/CFMX on my Palm, with the next-gen handhelds planning to have monitor features,

Re: cfc rrs reader

2005-01-21 Thread Raymond Camden
My site is still up and down, but if you hit my blog, I've got a rss.cfc file for donwloading. It is not a RSS Reader App per se, but you could use it to build one. On Fri, 21 Jan 2005 10:53:49 -0600, Justin Hansen [EMAIL PROTECTED] wrote: Has anyone seen or created a cfc based rss news reader?

Re: Portable CFML Development Environment

2005-01-21 Thread Mark Drew
did you read the part about Our development tools are also free; they are built on Eclipse, and we are a member of the Eclipse Foundation. I kinda like that part :) MD On Fri, 21 Jan 2005 10:56:21 -0600, Jared Rypka-Hauer - CMG, LLC [EMAIL PROTECTED] wrote: If this be true (can't imagine

Re: cfc rrs reader

2005-01-21 Thread Michael Dinowitz
I've got a script on HoF that reads in fullasagoog and stores it into a DB. It's written for CF 5 but I can pull it up and rewrite it if you want. Has anyone seen or created a cfc based rss news reader? I'd rather not reinvent the wheel if I don't have to. Thanks, Justin

Re: cfc rrs reader

2005-01-21 Thread jonese
this would be cool especially if you could share it in same manner with the cf community. ERJ On Fri, 21 Jan 2005 12:10:10 -0400, Michael Dinowitz [EMAIL PROTECTED] wrote: I've got a script on HoF that reads in fullasagoog and stores it into a DB. It's written for CF 5 but I can pull it up

RE: cfc rrs reader

2005-01-21 Thread Justin Hansen
Thanks guys, I just downloaded Rays but thanks for the offer Mike. I also just found this on MM Exchange: GetNewsFeed is a CFC that downloads RSS or RDF news feeds using a CFHTTP connection and will parse the XML into a easily useable Query. An example using Macromedia's newsfeed is included

RE: cfc rrs reader

2005-01-21 Thread Michael Dinowitz
I'll add this to my 'do for fun over this weekend' list. I should upgrade it anyway so this is a good 'push' for me. this would be cool especially if you could share it in same manner with the cf community. ERJ On Fri, 21 Jan 2005 12:10:10 -0400, Michael Dinowitz [EMAIL PROTECTED]

Re: Portable CFML Development Environment

2005-01-21 Thread Spike
Now, MACROMEDIA, GIVE ME A LINUX PORT OF DW and HS+!!! Or, please, at least enough of the core libraries to launch an opensource project? Please? But there already is an open source IDE that will run on Windows, OS X and Linux, and has a footprint in the 14Mb range.

Re: IIS Integrated Authentication Port Number?

2005-01-21 Thread Russell Patterson
Hello John, I have done a lot of websites that utilize IIS Integrated Authentication. The largest one as of yesterday was standing at 2.98 Terabytes. You will need to have a couple of ports open on your firewall that will allow your webserver access to the AD servers. You will need TCP port

Re: Portable CFML Development Environment

2005-01-21 Thread Rob
On Fri, 21 Jan 2005 10:35:20 -0600, Jared Rypka-Hauer - CMG, LLC [EMAIL PROTECTED] wrote: What a nifty idea... I have a 256MB SD card in my Palm, a 20GB iPod, and a 128MB Jump Drive... so I could have 3 development envrionments with me everywhere I go... BTW the ipod shuffle doubles as a usb

CoolFusion 2005 Winter Discount

2005-01-21 Thread Howie Hamlin
(Sent with permission) In celebration of the recent patent awarded to iMS (our award winnning email server), we will be offering a discount coupon that may be used for all CoolFusion products purchased from our website. The coupon will be valid until March 1, 2005. Use the coupon for new

Java CFX Tag Issue

2005-01-21 Thread E C list
I am interested in testing out CFX_PDF (A PDF generating Java tag) on CF 5.0 on the windows platform. I've followed the directions, but I keep getting the error: java.lang.ClassNotFoundException: com.easel2.cfxpdf.CFX_PDF. Java exception occurred in call to method Does anyone have any ideas

RE: Portable CFML Development Environment

2005-01-21 Thread Dave Watts
Not sure if this helps but how about http://www.ignitefusion.com/ it has a tiny footprint but it says it runs only on windows, I dont have any PDA's but it would be mighty cool to use this PDAs don't usually run a full copy of Windows. They run Windows Mobile (based on Windows CE.NET),

RE: Flash Remoting Issue

2005-01-21 Thread Dave Watts
Thanks Mark. Can you give me the complete path to where to find these scripts? I'm willing to try anything before having to reinstall CFMX. You should be able to do this from the server console by running the Web Server Configuration Utility from the Start menu within the Macromedia

RE: Flash Remoting Issue

2005-01-21 Thread Dave Watts
I have sometimes had to rerun the remove connector and Add connector scripts in the wsconfig (?) directory. I also recall the necessity of having a jrunscripts virtual directory - yes? Dave? Yes, I think the JRunScripts virtual directory is required for Flash Remoting. Rerunning the web

RE: httprequest enctype=multipart/form-data

2005-01-21 Thread Dave Watts
Do I need to pass the enctype=multipart/form-data using httprequest? Something like this cfhttpparam name=enctype type=CGI value=multipart/form-data I am uploading a file using a form to 2 websites on separate servers and networks. No, all you should have to do is specify

RE: Java CFX Tag Issue

2005-01-21 Thread Guy Rish
It appears one of two things has happened, either you didn't put the CFX_PDF jar in a location known to the Server's installed JVM (the server's classpath setting) or you have incorrectly registered the CFX's class. Please post your server's Java settings and the CFX registration information.

Re: Portable CFML Development Environment

2005-01-21 Thread Rob
You can just run apache :) http://www.rainer-keuchel.de/wince/apache-ce.html And a bunch of other cool tools (shameless self promotion) http://mobile.itmanagersjournal.com/mobility/03/12/04/2014203.shtml?tid=75tid=99 On Fri, 21 Jan 2005 13:16:47 -0500, Dave Watts [EMAIL PROTECTED] wrote: Not

RE: Portable CFML Development Environment

2005-01-21 Thread Dave Watts
You can just run apache :) http://www.rainer-keuchel.de/wince/apache-ce.html You can, but why bother when you can run IIS with ASP? Fortunately, it doesn't come with all of the vulnerabilities of its full-size analog, it's free and it's very easy to install - you just have to download the

Re: Java CFX Tag Issue

2005-01-21 Thread Douglas Knudsen
did u add it to ur class path? I have it as {application.home}/servers/lib/CFX_PDF.jar DK On Fri, 21 Jan 2005 10:03:55 -0800 (PST), E C list [EMAIL PROTECTED] wrote: I am interested in testing out CFX_PDF (A PDF generating Java tag) on CF 5.0 on the windows platform. I've followed the

Query proactive termination, is this necessary?

2005-01-21 Thread Nick Baker
What is the most graceful way to terminate a CFQuery once you have used the results, and free up resources? I use a query within a loop. Would it be more efficient to terminate the query at the end of each cycle (assuming there is a graceful way) and let CF reestablish the query or leave the

RE: Query proactive termination, is this necessary?

2005-01-21 Thread Ian Skinner
Assuming you have a pretty standard loop something like this. cfloop ... cfquery name=foobar ... /cfquery /cfloop CF is not going to hang on to old versions of the query. Each time through the loop, it is going to replace the old query with a new one unless you are doing

RE: Query proactive termination, is this necessary?

2005-01-21 Thread Dave Watts
What is the most graceful way to terminate a CFQuery once you have used the results, and free up resources? I use a query within a loop. Would it be more efficient to terminate the query at the end of each cycle (assuming there is a graceful way) and let CF reestablish the query or leave

Re: Portable CFML Development Environment

2005-01-21 Thread Dick Applebaum
On Jan 21, 2005, at 9:38 AM, Rob wrote: On Fri, 21 Jan 2005 10:35:20 -0600, Jared Rypka-Hauer - CMG, LLC [EMAIL PROTECTED] wrote: What a nifty idea... I have a 256MB SD card in my Palm, a 20GB iPod, and a 128MB Jump Drive... so I could have 3 development envrionments with me everywhere I

Re: Portable CFML Development Environment

2005-01-21 Thread Rob
On Fri, 21 Jan 2005 11:27:00 -0800, Dick Applebaum [EMAIL PROTECTED] wrote: So you can run the following from the iPod: 1) An IDE 2) A CFE (CFEverywhere environment- Jetty/BD/Derby) 3) CFML apps Its too bad CFEverywhere and CFEclipse both use CFE for short hand - people are going to get

Re: Portable CFML Development Environment

2005-01-21 Thread Dick Applebaum
On Jan 21, 2005, at 11:45 AM, Rob wrote: On Fri, 21 Jan 2005 11:27:00 -0800, Dick Applebaum [EMAIL PROTECTED] wrote: So you can run the following from the iPod: 1) An IDE 2) A CFE (CFEverywhere environment- Jetty/BD/Derby) 3) CFML apps Its too bad CFEverywhere and CFEclipse both use CFE

software lifecycle/project management tool/process recommendations

2005-01-21 Thread Robert Redpath
We are looking to formalize our software development processes and are looking for a tool/process that will help with the project management and track the software development lifecycle. Does anyone have recommendations for either? Do folks use MS Project or another tool for project

RE: software lifecycle/project management tool/process recommendations

2005-01-21 Thread Ian Skinner
I would also love to hear more about this topic. We have been trying to do this for some time. We recognize the need, but don't' have the experience and can't afford the consultants to set us straight. Pointers to Software analysis/design/development 101 resources would be great.

CFSELECT Prob

2005-01-21 Thread Donna French
What is wrong with this??? Trying to get an update to work: tdEducation:/td tdselect name=Client_Education Value=#qClient.Client_Education# tabindex=230 option value=Less than 12 yearscfif Client_Education is Less than 12 yearsSELECTED/cfifLess than 12 years/option

RE: CFSELECT Prob

2005-01-21 Thread Ian Skinner
Umm, not sure but it looks like CF is trying to evaluate your string as an expression. You can write expressions such as this [foobar LT 99] in long hand as [foobar less then 99]. Almost nobody does, but it is supported by CF. So my first guess would be that your Less Then 12 years string is

Re: Portable CFML Development Environment

2005-01-21 Thread Rob
On Fri, 21 Jan 2005 12:03:41 -0800, Dick Applebaum [EMAIL PROTECTED] wrote: Or, maybe we should just combine the two... %^) hehehe totally like CFE² CFEverywhere is the new kid on the block so we should prolly change. What do you suggest? I d'know, I guess in context it'd wouldn't be too

CF interaction with Java/JSP

2005-01-21 Thread Ciliotta, Mario
Hi, Does anyone know of any site or any tutorials that I can show me how to use CF and Java together. Just looking for an example ot two to get my head around so I can what can be done. I am thinking of uses a few JSP tags that someone else has developed and I would like to call them and use

dumping the current query row

2005-01-21 Thread Russ
How would I dump the current row that I'm outputting? For example: cfoutput query=qryName cfdump var=#qryName# /cfoutput This dumps the whole query (a bunch of times). I just want the current row being outputted. Russ

Re: CFSELECT Prob

2005-01-21 Thread Donna French
How can I avoid this so that it just evaluates as a string? Or is there a more efficient way to handle this SELECT? TIA, Donna On Fri, 21 Jan 2005 12:46:35 -0800, Ian Skinner [EMAIL PROTECTED] wrote: Umm, not sure but it looks like CF is trying to evaluate your string as an expression.

Re: Portable CFML Development Environment

2005-01-21 Thread Dick Applebaum
On Jan 21, 2005, at 12:47 PM, Rob wrote: On Fri, 21 Jan 2005 12:03:41 -0800, Dick Applebaum [EMAIL PROTECTED] wrote: Or, maybe we should just combine the two... %^) hehehe totally like CFE² or CFEE I kinda' like the sound of that as well as the connotation: Exponentially increase your

RE: CFSELECT Prob

2005-01-21 Thread Ian Skinner
What's your processing page look like. What are you doing with the form variables. -- Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacramento, CA C code. C code run. Run code run. Please! - Cynthia Dunning ...-Original Message- ...From: Donna French

Re: CFSELECT Prob

2005-01-21 Thread Qasim Rasheed
How about using something like this Less_than_12_years. On Fri, 21 Jan 2005 15:07:31 -0600, Donna French [EMAIL PROTECTED] wrote: How can I avoid this so that it just evaluates as a string? Or is there a more efficient way to handle this SELECT? TIA, Donna On Fri, 21 Jan 2005 12:46:35

Re: dumping the current query row

2005-01-21 Thread Qasim Rasheed
You can use this function cffunction name=querySingleRowDump returntype=query cfargument name=q type=query required=true / cfargument name=r type=numeric required=true / cfset var ret = querynew( arguments.q.columnlist ) cfset var i = cfset queryaddrow( ret )

RE: CFSELECT Prob

2005-01-21 Thread Ian Skinner
Ok, I just tested your code and it worked just fine on my system. I would then take a look at the value of your variables, Client_Education and qClient.Education. PS. What is the value parameter in your select statement doing? Select tags don't use a value parameter, just the Option

RE: dumping the current query row

2005-01-21 Thread Dave Watts
How would I dump the current row that I'm outputting? For example: cfoutput query=qryName cfdump var=#qryName# /cfoutput This dumps the whole query (a bunch of times). I just want the current row being outputted. A query object is essentially a structure of arrays, in

Hey, any word on a Blackstone Certification Study Guide?

2005-01-21 Thread Jeff Small
I was wanting to pre-order a CFMX 7 Study Guide and was wondering if anyone knew if any of the people involved knew whether or not there might possibly be a certification study guide available on or around the release date of blackstone, or if certification guides and stuff of that nature was

Re: CFSELECT Prob

2005-01-21 Thread Donna French
Okay, thanks - got it working now: select name=Client_Education Value=#Client_Education# tabindex=230 My eyes are fried - been working 6 hours straight in the afternoon instead of off/on all day. What do you all use to help cut down on eye strain? ;-) Donna On Fri, 21 Jan 2005 13:26:29

RE: Java CFX Tag Issue

2005-01-21 Thread E C list
Thanks Guy and Doug. I got it working. Unfortunately it doesn't seem to support the one thing I really need to be able to do--justify text. I tried doing it with styles text-align: justify and just part of a table td align=justify but neither works. So I'll have to keep looking. EC

CFEE: Portable CFML Development and Execttion Environment

2005-01-21 Thread Dick Applebaum
A couple of threads have been discussing CFEclipse as a portable CF Development Environment and CFEverywhere as a small (maybe portable) Execution environment for CF apps. Since the environments have a lot in common, it might be worthwhile to combine them. The threads have discussed

RE: CFEE: Portable CFML Development and Execttion Environment

2005-01-21 Thread Dave Watts
A couple of threads have been discussing CFEclipse as a portable CF Development Environment and CFEverywhere as a small (maybe portable) Execution environment for CF apps. Since the environments have a lot in common, it might be worthwhile to combine them. The threads have discussed

Re: software lifecycle/project management tool/process recommendations

2005-01-21 Thread Robert Munn
I am a reluctant user of MS Project. All I can say is don't use it! MS Project is good for very large projects with lots of details and many people, but it has several significant shortcomings, IMO. - It is a desktop app. Why? And Project 2000 isn't even Web-enabled. I don't know about 2003,

Re: Hey, any word on a Blackstone Certification Study Guide?

2005-01-21 Thread Sean Corfield
On Fri, 21 Jan 2005 16:28:34 -0500, Jeff Small [EMAIL PROTECTED] wrote: I was wanting to pre-order a CFMX 7 Study Guide and was wondering if anyone knew if any of the people involved knew whether or not there might possibly be a certification study guide available on or around the release date

RE: software lifecycle/project management tool/process recommendations

2005-01-21 Thread Ian Skinner
Can anybody recommend any good resources on tried and true definitions of the process? That is where we are stuck at. Our organization lacks the experience of large software design so we have no real process. But we are getting more and more of it. I've been tasked with learning how this is

Re: CFEE: Portable CFML Development and Execttion Environment

2005-01-21 Thread Dick Applebaum
On Jan 21, 2005, at 2:35 PM, Dave Watts wrote: Why would this non-techie want an IDE, anyway? I wasn't clear. I should have said something like: A CF Developer could install a CF Execution environment as above, than add CFEclipes as the IDE component. Dick

Another pain with SELECT

2005-01-21 Thread Donna French
I figured out what the problem was on my other SELECT but this one has me stumped. In the previous post I had my field setup as a combo box, so when I changed it to a text box and edited the SELECT Value= it worked properly. But this one I've changed both of the above and it's still throwing an

Re: software lifecycle/project management tool/process recommendations

2005-01-21 Thread Douglas Knudsen
M$ Project does have a web enabled tool via M$, Project Central its called, unless they rnamed it again. I have not seen it in a couple years, but I set it up once. It would shoot emails out and such and allow users to login to see their tasks and all. Doug On Fri, 21 Jan 2005 17:30:22 -0400,

CFEE: Portable CFML Development and Execttion Environment

2005-01-21 Thread Dick Applebaum
Just to give a progress report on CFEE. I got my iPod Shuffle (1 Gg): 1) Plugged it in to my computer's USB port 2) fired up iTunes set the ipod to reserve space for 120 songs 512 meg of files. 3) copied some songs to the iPod 4) started playing the songs on the iPod shuttle (shows as an

RE: Hey, any word on a Blackstone Certification Study Guide?

2005-01-21 Thread Jeff Small
Read Ben Forta's blog: http://www.forta.com/blog/index.cfm?mode=eentry=1429 Awesome, thanks! ~| Logware: a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or

re: SPAM-LOW: CFEE: Portable CFML Development and Execttion Environment

2005-01-21 Thread dave
do u have a link to the cfeverywhere? From: Dick Applebaum [EMAIL PROTECTED] Sent: Friday, January 21, 2005 6:57 PM To: CF-Talk cf-talk@houseoffusion.com Subject: SPAM-LOW: CFEE: Portable CFML Development and Execttion Environment Just to give a progress

  1   2   >