Re: CF/programming experience from the list?

2005-03-07 Thread Brandon Harper
On Thu, 03 Mar 2005 16:14:02 -0400, Will The Game [EMAIL PROTECTED] wrote: I just wanted to try and gauge where I'm at right now in terms of programming Sorry for the late bump, but I just came across this thread. I was reading and writing at age three and had my first exposure to computers at

RE: Returning 2 queries from stored proc

2005-03-07 Thread Robertson-Ravo, Neil (RX)
Yep, just have to use cfprocresult. However there is a limit on how may you can return - I believe we tested it with 7-9 depending on the size of the resultsets. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 07 March 2005 01:52 To: CF-Talk Subject: Re:

when delivering a file with cfcontent.

2005-03-07 Thread Protoculture
On some windows machines it gives the user the option to save or open, on others it opens up in the default application immediatley ( ie, word. Opens open in a word like interface within the browser ). How can I force to have the default being ( open, save, cancel ) dialog box appear every

Re: when delivering a file with cfcontent.

2005-03-07 Thread ColdFusion Developer
Set the MIME type to unknown Protoculture wrote: On some windows machines it gives the user the option to save or open, on others it opens up in the default application immediatley ( ie, word. Opens open in a word like interface within the browser ). How can I force to have the default being

Re: when delivering a file with cfcontent.

2005-03-07 Thread Protoculture
I did that... but the only thing is now its saving whats supposed to be a word doc... as the name of the current template( ie. 'current_template.cfm' as opposed to 'myfile.doc'. cfcontent file=E:\hosting\oursite\ourfiles\myfile.doc type=unknown

RE: when delivering a file with cfcontent.

2005-03-07 Thread Pascal Peters
cfheader name=Content-Disposition value=attachment; filename=myfile.doc cfcontent type=application/unknown file=E:\hosting\oursite\ourfiles\myfile.doc deletefile=No Pascal -Original Message- From: Protoculture [mailto:[EMAIL PROTECTED] Sent: 07 March 2005 10:49 To: CF-Talk Subject:

Re: when delivering a file with cfcontent.

2005-03-07 Thread Protoculture
That did it! Cheers! cfheader name=Content-Disposition value=attachment; filename=myfile.doc cfcontent type=application/unknown file=E:\hosting\oursite\ourfiles\myfile.doc deletefile=No Pascal -Original Message- From: Protoculture [mailto:[EMAIL PROTECTED] Sent: 07 March 2005 10:49

ColdFusion ignores empty list elements

2005-03-07 Thread cf coder
ex: the list a,b,c,,,d has four elements How do I force it to not ignore empty elements? I'm getting an error with listGetAt(list,4). Any thoughts? Best regards cfcoder ~| Discover CFTicket - The leading ColdFusion Help Desk

RE: ColdFusion ignores empty list elements

2005-03-07 Thread Micha Schopman
Replace the empty values with a dummy value you can detect before reading the list. Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 AL Amersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort 39081679, Rabo 39.48.05.380

RE: ColdFusion ignores empty list elements

2005-03-07 Thread Adrian Lynch
And here's one to do it for you. Not used it myself but it's description reads like it'll help you. http://www.cflib.org/udf.cfm?ID=507 Ade -Original Message- From: Micha Schopman [mailto:[EMAIL PROTECTED] Sent: 07 March 2005 11:59 To: CF-Talk Subject: RE: ColdFusion ignores empty list

RE: ColdFusion ignores empty list elements

2005-03-07 Thread Micha Schopman
Lol .. an entire udf for a simple replace function .. euhm ok .. :P Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 AL Amersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort 39081679, Rabo 39.48.05.380

Re: ColdFusion ignores empty list elements

2005-03-07 Thread cf coder
thanks for that guys. I'm still getting an invalid list index error. if the list has 4 elements and I try to use the listgetat function to get the 5th element. I get an error. QuerySetCell(qTmp,model, listGetAt(list,5)); Is there a way to say if it does not exist, do something else ex:

RE: ColdFusion ignores empty list elements

2005-03-07 Thread Katz, Dov B (IT)
How about this? List=replace(list, ,,ALL); If (list.endsWith(,)) list=list ; Then do trim(listGetAt(list,X)); A bit hackish, but it'll work. -dov -Original Message- From: cf coder [mailto:[EMAIL PROTECTED] Sent: Monday, March 07, 2005 6:15 AM To: CF-Talk Subject: Re: ColdFusion

RE: ColdFusion ignores empty list elements

2005-03-07 Thread Robertson-Ravo, Neil (RX)
ColdFusion does indeed ignore them. You have to put a value in the empty places - say NULL. -Original Message- From: cf coder [mailto:[EMAIL PROTECTED] Sent: 07 March 2005 10:56 To: CF-Talk Subject: ColdFusion ignores empty list elements ex: the list a,b,c,,,d has four elements How

RE: ColdFusion ignores empty list elements

2005-03-07 Thread Robertson-Ravo, Neil (RX)
This is a good UDF - works well. -Original Message- From: Adrian Lynch [mailto:[EMAIL PROTECTED] Sent: 07 March 2005 12:03 To: CF-Talk Subject: RE: ColdFusion ignores empty list elements And here's one to do it for you. Not used it myself but it's description reads like it'll help

RE: ColdFusion ignores empty list elements

2005-03-07 Thread Adrian Lynch
A simple replace? Could you show me the simple version? How do you deal with 1,2,3,4,,,7,8,9 in a simple manner? Half the UDFs on cflib.org could be considered 'simple', that doesn't stop them from being useful. Ade -Original Message- From: Micha Schopman [mailto:[EMAIL PROTECTED] Sent:

RE: ColdFusion ignores empty list elements

2005-03-07 Thread Calvin Ward
For fun, something like the below might work (this is completely untested, I wrote it in the email). - Calvin function ListElementExists(l,i,d) { var tl = Replace(l,dd,dUDFTEMPITEMd,ALL); var result = false; if (ListLen(l,d) GTE I AND ListGetAt(l,i,d) IS NOT UDFTEMPITEM)

Re: ColdFusion ignores empty list elements

2005-03-07 Thread cf coder
Here is the code cffile action=read file=#serverFileName# addnewline=yes variable=fileOutput cfset qTmp = QueryNew(ref,asset,serial,manufact,model) cfset fileOutput = Replace(fileOutput, ,,All) cfset fileOutputNew = Replace(fileOutput, ,,All) cfloop list=#fileOutput# index=fileLine

RE: ColdFusion ignores empty list elements

2005-03-07 Thread Katz, Dov B (IT)
In pure java you can also do this: Cfset myList=CreateObject(java,java.util.Arrays).asList(list.split(,)) Then you can do myList.get(0), myList.get(5) ,myList.size(); -Original Message- From: Katz, Dov B (IT) Sent: Monday, March 07, 2005 7:19 AM To: CF-Talk Subject: RE: ColdFusion

Re: 20+ Gig monster cfam-err.log?

2005-03-07 Thread Douglas Knudsen
ALL of them? servername-out doesn't for us. I have log file rotation set in the jrun.xml file attribute name=filename{jrun.rootdir}/logs/{jrun.server.name}-{log.level}.log/attribute attribute name=rotationSize100k/attribute attribute

Re: ColdFusion ignores empty list elements

2005-03-07 Thread Scott Stroz
How about: cfscript if (listLen(list) EQ 5) { QuerySetCell(qTmp,model, listGetAt(list,5)); } else{ QuerySetCell(qTmp,model,); } /cfscript On Mon, 07 Mar 2005 07:14:46 -0400, cf coder [EMAIL PROTECTED] wrote: thanks for that guys. I'm still getting an invalid list index error. if the list

RE: SQL Case Question?

2005-03-07 Thread Che Vilnonis
tried isNull(), then did a dump of the query. i got results for sunday and monday...yet nothing (not even any zeroes) for the rest of the week. any other ideas? -Original Message- From: Ali Awan [mailto:[EMAIL PROTECTED] Sent: Friday, March 04, 2005 5:32 PM To: CF-Talk Subject: RE: SQL

Re: ColdFusion ignores empty list elements

2005-03-07 Thread Adam Haskell
Switch to Bluedragon :) Also I use the split UDF on CFlib, works very nicely, The pure java solution is one of the best Ideas, but we are on *sigh* CF 5 so I don't have that luxury personally :) Adam H On Mon, 07 Mar 2005 06:56:02 -0400, cf coder [EMAIL PROTECTED] wrote: ex: the list

Re: ColdFusion ignores empty list elements

2005-03-07 Thread S . Isaac Dealey
Switch to Bluedragon :) If BD's interpretation of the list functions isn't the same as CF's (without creating new functions with different names to handle them differently) then I'd have to consider that a flaw in BD. I at one point had a function written to convert lists to arrays and include

RE: ColdFusion ignores empty list elements

2005-03-07 Thread Michael T. Tangorre
From: Adam Haskell [mailto:[EMAIL PROTECTED] Switch to Bluedragon :) LOL. Why? The bigger question is, why would BD implement a function differently than MM... kinda nixes the whole idea of BD being an alternate to CF Server.

Re: SQL Case Question?

2005-03-07 Thread David Fafard
try something along the lines of: case datepart( d, OrderDate ) when '1' then count( OrderDate ) else 0 end as day_01, case datepart( d, OrderDate ) when '2' then count( OrderDate ) else 0 end as day_02, case datepart( d, OrderDate ) when '3' then count( OrderDate ) else 0 end as day_03, etc...

RE: ColdFusion ignores empty list elements

2005-03-07 Thread Calvin Ward
NewAtlanta has said in a number of ways that they aren't after 100% compatibility. Of course, CFMX 7 really changed the landscape a bit, and I don't see how NA will catch up with that. -Original Message- From: Michael T. Tangorre [mailto:[EMAIL PROTECTED] Sent: Monday, March 07, 2005

RE: SQL Case Question?

2005-03-07 Thread Che Vilnonis
David that kinda of worked. below is my revised query. SELECT CASE Datepart(dw,OrderDate) WHEN '1' THEN Count(OrderDate) ELSE 0 END AS OPD_01, CASE Datepart(dw,OrderDate) WHEN '2' THEN Count(OrderDate) ELSE 0 END AS OPD_02, CASE Datepart(dw,OrderDate) WHEN '3' THEN Count(OrderDate) ELSE 0 END AS

RE: SQL Case Question?

2005-03-07 Thread Chris Terrebonne
The problem is that there are no values for those dates so there are no rows being returned. In this case isNull won't work. An easy way to do this is if you query against a table containing the dates then join the orders table. If you are using SQLServer, you can do the following: DECLARE

Re: 20+ Gig monster cfam-err.log?

2005-03-07 Thread Dave Carabetta
On Sun, 6 Mar 2005 21:06:31 -0800, Sean Corfield [EMAIL PROTECTED] wrote: On Sun, 06 Mar 2005 21:14:45 -0600, Nick Baker [EMAIL PROTECTED] wrote: I am really curious if anyone else cares to report how big their cfam-err.log files are? My JRun logs all rotate at 200k. -rw-r--r-- 1

RE: 20+ Gig monster cfam-err.log?

2005-03-07 Thread Dave Watts
I am really curious if anyone else cares to report how big their cfam-err.log files are? My JRun logs all rotate at 200k. I picked up this snippet a long time back (Brandon Purcell's blog maybe?) to rotate my log files daily ... It's worth pointing out that Nick is using CF 5, not

Re: CFQUERY accessing MS SQL DB on another CF server

2005-03-07 Thread Adam Haskell
I might also add that if you are on a MX 7 Ent box this is a great example of how asynchronous cfm calls can really speed up an app. You can make an async call to a cfc which would do the remote update, no delays in your actual page rendering time and no try catch needed around the call. These

Re: 20+ Gig monster cfam-err.log?

2005-03-07 Thread Dave Carabetta
On Mon, 7 Mar 2005 10:27:14 -0500, Dave Watts [EMAIL PROTECTED] wrote: I am really curious if anyone else cares to report how big their cfam-err.log files are? My JRun logs all rotate at 200k. I picked up this snippet a long time back (Brandon Purcell's blog maybe?) to rotate

RE: ValueList ALWAYS in same order as records in query?

2005-03-07 Thread Andy Ousterhout
Right. But the plan was to use ListFindNoCase(ValueList, value)) to ID the row, then use array notation to retrieve info. Should this be more effieicent then running a query or loop? The code sure looks cleaner, more readible. -Original Message- From: Dave Watts Will the results from

RE: Returning 2 queries from stored proc

2005-03-07 Thread Andy Ousterhout
Couldn't be eaiser! Thanks. -Original Message- From: Michael Dinowitz create proc test as select * from table1 select * from table2 This stored procedure will return both to the cfstoredproc tag How do I define the two result sets in the Stored Proc? I am using MS SQL and I can't

Flash Form Required Attribute

2005-03-07 Thread David Brown
From what I can tell the required attribute can not be changed with actionscripting. Has any tried placing a variable in the value of required and with actionscripting in an onchange event update the value of that variable? I know I can't use required=#variable# since that is a coldfusion

Re: CF/programming experience from the list?

2005-03-07 Thread Claude Schneegans
I was reading and writing at age three The Mozart of Computer Science! ;-) I think I beat you all here: I started learning computers and programming in 68. If I remember well, it was on an IBM 1620 or so. Then I moved to a CDC 3300 and wrote my first Fortran program to find all solutions of

RE: CF/programming experience from the list?

2005-03-07 Thread Michael T. Tangorre
From: Claude Schneegans [mailto:[EMAIL PROTECTED] I think I beat you all here: I started learning computers and programming in 68. If I remember well, it was on an IBM 1620 or so. Then I moved to a CDC 3300 and wrote my first Fortran program to find all solutions of the 8 queens on a chess

heeelp!

2005-03-07 Thread Mark Drew
I am having a blonde moment (no offence to blondes... but hey) can you use try/catch in cfscript in cf5? I keep getting errors with it and I cant find the language differences page in MM's site MD ~| Logware (www.logware.us):

RE: heeelp!

2005-03-07 Thread Robertson-Ravo, Neil (RX)
No, they were new in MX. -Original Message- From: Mark Drew [mailto:[EMAIL PROTECTED] Sent: 07 March 2005 16:11 To: CF-Talk Subject: heeelp! I am having a blonde moment (no offence to blondes... but hey) can you use try/catch in cfscript in cf5? I keep getting errors with it and I

Re: heeelp!

2005-03-07 Thread Aaron Rouse
I thought this was introduced in 6 On Mon, 7 Mar 2005 16:10:48 +, Mark Drew [EMAIL PROTECTED] wrote: I am having a blonde moment (no offence to blondes... but hey) can you use try/catch in cfscript in cf5? I keep getting errors with it and I cant find the language differences page in

Re: heeelp!

2005-03-07 Thread Mark Drew
I shall remove my blonde wig and try something else bugger MD On Mon, 7 Mar 2005 16:08:17 -, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] wrote: No, they were new in MX. -Original Message- From: Mark Drew [mailto:[EMAIL PROTECTED] Sent: 07 March 2005 16:11 To: CF-Talk

RE: heeelp!

2005-03-07 Thread Michael T. Tangorre
From: Mark Drew [mailto:[EMAIL PROTECTED] can you use try/catch in cfscript in cf5? Nope. Only MX and beyond. ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and

RE: heeelp!

2005-03-07 Thread Michael Dinowitz
Try/catch in CFSCRIPT was implemented in CFMX (CF 6). I am having a blonde moment (no offence to blondes... but hey) can you use try/catch in cfscript in cf5? I keep getting errors with it and I cant find the language differences page in MM's site MD

Developer edition install question

2005-03-07 Thread Scott Mulholland
I have a new machine that has xp pro on it. I'm installing cf 6.1 dev and was wondering if there was any benefit to running it through IIS instead of the self contained web server you can install with mx? Does running cfmx on its own server and not IIS make it easier to also run a .net

Server doesn't start: How do I debug this problem?

2005-03-07 Thread Jon Block
Running CFMX 6.1 with Apache 2. The server was working for a few weeks and now I get this. I'm not sure what caused it. Although the ColdFusionMX Application Server service starts, Apache logs the following in the error.log file: -- [Mon Mar 07 10:51:30 2005] [notice] jrApache[32270] could not

Re: CF/programming experience from the list?

2005-03-07 Thread Joe Rinehart
Heck, if we're all doing introductions... Ah, the happy early days of the web... I had a personal website back in '94 I think, then set up a (one-man) consulting company in '95. The Wayback Machine shows this late-'96 version of my company site: In '94 I was riding a mountain bike all over

RE: Developer edition install question

2005-03-07 Thread Dave Watts
I have a new machine that has xp pro on it. I'm installing cf 6.1 dev and was wondering if there was any benefit to running it through IIS instead of the self contained web server you can install with mx? If you have IIS-specific functionality that you want to use with your CF

quotes in quotes

2005-03-07 Thread daniel kessler
I have a string that I'm adding to an array. In that string, I have a href that's calling a js function. I'm having trouble firguring how to get my quotes sets to work. The problem is coming from the quotes around the words 'visible' and 'hidden'. They need to alternate with the quotes

Re: 20+ Gig monster cfam-err.log?

2005-03-07 Thread Douglas Knudsen
actually Nick's initial post was quite CFMX related I was replacing my hard drive and stumbled upon this 20 gb plus monster C:\CFusion\jrun\logs\cfam-err.log His second post mentions 'I am still running 5.0 on my desktop' So, Nick, what are we talking about here? Doug On Mon, 7 Mar 2005

Re: ColdFusion ignores empty list elements

2005-03-07 Thread Adam Haskell
This is not a flaw...it is a noted enhancement, one which I like, and I think MM should pick up, they could easily add a boolean value at the end of list function to disignate if you want to include blank entries. I think it is obsurd to use Macromedia's product as a measuring stick as to what is

RE: quotes in quotes

2005-03-07 Thread Adrian Lynch
Double up on the double quotes inside the string in CF. cfset arrayAppend(yes_ar,a onMouseOver=bookview('visible') onMouseOut=bookview('hidden')'Welcome! Your program benefits from the fact that a /aspan class='red_link'stronga href='nutshell.cfm##connectors'connector/a/strong/span is on ...)

RE: 20+ Gig monster cfam-err.log?

2005-03-07 Thread Dave Watts
actually Nick's initial post was quite CFMX related I was replacing my hard drive and stumbled upon this 20 gb plus monster C:\CFusion\jrun\logs\cfam-err.log His second post mentions 'I am still running 5.0 on my desktop' So, Nick, what are we talking about here? The CF Application

ms-sql resources

2005-03-07 Thread Protoculture
Does anyone know of any? Or even a good book? ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware today.

Re: quotes in quotes

2005-03-07 Thread Claude Schneegans
Try this: cfset arrayAppend(yes_ar,a onMouseOver='bookview( 'visible' )' onMouseOut='bookview( 'hidden' )'Welcome! Your program benefits from the fact that a /aspan class='red_link'stronga href='nutshell.cfm##connectors'connector/a/strong/span is on ...) --

RE: Developer edition install question

2005-03-07 Thread Connie DeCinko
I believe you will also have to use an alternative port with the stand alone server, instead of port 80 if you install under IIS. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Monday, March 07, 2005 9:36 AM To: CF-Talk Subject: RE: Developer edition install

RE: quotes in quotes

2005-03-07 Thread Connie DeCinko
I had a similar issue and ended up solving it by storing the quotes within text as their HTML entities instead of the standard character. -Original Message- From: daniel kessler [mailto:[EMAIL PROTECTED] Sent: Monday, March 07, 2005 8:31 AM To: CF-Talk Subject: quotes in quotes I have

Re: ms-sql resources

2005-03-07 Thread Charlie Griefer
if you've got it installed, the SQL Books Online are a very nice resource/reference. On Mon, 07 Mar 2005 11:59:43 -0400, Protoculture [EMAIL PROTECTED] wrote: Does anyone know of any? Or even a good book? ~| Logware

RE: ColdFusion ignores empty list elements

2005-03-07 Thread Connie DeCinko
How hard would it be to quote each of the values? Would '1','2','','4' still come back as four elements? -Original Message- From: Adam Haskell [mailto:[EMAIL PROTECTED] Sent: Monday, March 07, 2005 9:32 AM To: CF-Talk Subject: Re: ColdFusion ignores empty list elements This is not a

RE: ms-sql resources

2005-03-07 Thread Michael T. Tangorre
From: Protoculture [mailto:[EMAIL PROTECTED] Does anyone know of any? Or even a good book? Books On-Line (BOL) which comes with MS-SQL Server is great. The O'Reilly T-SQL book is great also. Are you looking for SQL references, SQL Server Administrator references?

RE: quotes in quotes

2005-03-07 Thread Michael T. Tangorre
From: Claude Schneegans [mailto:[EMAIL PROTECTED] Try this: cfset arrayAppend(yes_ar,a onMouseOver='bookview( 'visible' )' onMouseOut='bookview( 'hidden' )'Welcome! Your program benefits from the fact that a /aspan class='red_link'stronga

RE: ms-sql resources

2005-03-07 Thread Connie DeCinko
http://www.w3schools.com/sql/ is an excellent online resource. -Original Message- From: Protoculture [mailto:[EMAIL PROTECTED] Sent: Monday, March 07, 2005 9:00 AM To: CF-Talk Subject: ms-sql resources Does anyone know of any? Or even a good book?

Re: Developer edition install question

2005-03-07 Thread Jared Rypka-Hauer - CMG, LLC
I'll second Dave's comments, but add this: Be sure that you can afford to have all the software in question running on your box. Is it your primary workstation? Are you willing to stop the services when you're not using them? By the time you get CFMX (which means Jrun), IIS, Dreamweaver,

RE: ColdFusion ignores empty list elements

2005-03-07 Thread Michael Dinowitz
Yes How hard would it be to quote each of the values? Would '1','2','','4' still come back as four elements? ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and

Using CFMAIL

2005-03-07 Thread Eric Creese
System Win2K IIS CFMX 6.1 Ok this is my taks today to get settled once an for all. I use CFMAIL in my applications that I write and host on my own server. I do not have any applications that accept mail. I simply use CFMAIL to send emails based on users requests, i.e. Forgotten password, or

Re: Disabling cfformgroup type=page based on radio buttons

2005-03-07 Thread John Blayter
Mike, This is exactly what I needed! I owe you a drink! Thanks John On Sat, 5 Mar 2005 14:41:25 -0500, Mike Nimer [EMAIL PROTECTED] wrote: Is this what you are trying to do? ---nimer cfform name=test format=Flash cfformgroup type=ACCORDION id=a1

Re: heeelp!

2005-03-07 Thread Jared Rypka-Hauer - CMG, LLC
They all be right, dude... So wrap your CFSCRIPT tag in a cftry/cfcatch block. That's not particularly granular, though, is it? And blowing up a whole block because one bit errored out is particularly unfortunate... Here's a thought... if you were to create a UDF inside a CFTRY/CFCATCH block,

Re: ms-sql resources

2005-03-07 Thread Protoculture
I'm trying to open the SQL Books Online from my computer ( not on the server they were installed on ). Is there a workaround so that I can view these documents either on the server ( from my computer ). Or an online reference of the same thing?

Re: ms-sql resources

2005-03-07 Thread Protoculture
http://www.microsoft.com/downloads/details.aspx?FamilyID=A6F79CB1-A420-445F-8A4B-BD77A7DA194Bdisplaylang=en#filelist ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and

RE: ColdFusion ignores empty list elements

2005-03-07 Thread Calvin Ward
I don't think it is absurd at all, CFML was started and developed by Allaire and then Macromedia. The only apparent contribution that NewAtlanta has done was to copy the end user (meaning developer) functionality and attempt to subvert market-share from the authors and their intended 'heir'. All

RE: Developer edition install question

2005-03-07 Thread Scott Mulholland
Yeah, it runs on 8500 -Original Message- From: Connie DeCinko [mailto:[EMAIL PROTECTED] Sent: Monday, March 07, 2005 12:00 PM To: CF-Talk Subject: RE: Developer edition install question I believe you will also have to use an alternative port with the stand alone server, instead of port

RE: Developer edition install question

2005-03-07 Thread Scott Mulholland
Thanks to all, I went with the standalone server. -Original Message- From: Jared Rypka-Hauer - CMG, LLC [mailto:[EMAIL PROTECTED] Sent: Monday, March 07, 2005 12:05 PM To: CF-Talk Subject: Re: Developer edition install question I'll second Dave's comments, but add this: Be sure that

RE: ms-sql resources

2005-03-07 Thread Dawson, Michael
I like www.SQLServerCentral.com M!ke ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware today. Try it

Re: quotes in quotes

2005-03-07 Thread Claude Schneegans
How about JSStringFormat() JSStringFormat() escapes characters JS wise, not CF or HTML wise. The problem here is defining the string in CF, not in JS. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please

RE: Developer edition install question

2005-03-07 Thread Calvin Ward
I got tired of tinkering with the variance between prod and my workstation, so I setup VMWare (or you can use Virtual PC), so that I have a self contained version of the server (for all intents and purposes) on my workstation. This allows me to disable enable all services by simply

Re: ColdFusion ignores empty list elements

2005-03-07 Thread Charlie Griefer
but it's not entirely different than a 'new browser' that interprets HTML (even though said browser didn't create HTML) and adds its own proprietary tags. BD is simply an application that interprets CFML (well, compiles...), but added its own proprietary tags (which is a blanket

Re: ColdFusion ignores empty list elements

2005-03-07 Thread Claude Schneegans
This is not a flaw...it is a noted enhancement, I would even say that the way CF interprets lists IS a flaw. I've never seen any language that ignores empty objects or anything. This was obviously an oversight in the original CF design and it is a good thing if it is corrected in BD. --

Re: Query Problem

2005-03-07 Thread Jared Rypka-Hauer - CMG, LLC
Ahh, the sound of yesterday, the delicious bouquet of simpler times, when I was younger, thinner, flexible, and spent my time in the pursuits of youth... Like sitting at my desk screaming WHY WON'T THIS EFFING THING WORK?!?!?!? Only to realize that I was making the most elemental of mistakes. A

Re: CF/programming experience from the list?

2005-03-07 Thread Larry Lyons
Yea, but... did you write you code on keypunch machines (and then proceed to drop the box!). What awful memories. Walt What was worse was if you had a misplaced semi-colon, or of your 2000 cards of data, one was mispunched, and you did not know which one... such are the memories that

RE: ColdFusion ignores empty list elements

2005-03-07 Thread Calvin Ward
True to a degree, except that HTML is declared open and applications are encouraged to implement it if they need the functionality. - Calvin -Original Message- From: Charlie Griefer [mailto:[EMAIL PROTECTED] Sent: Monday, March 07, 2005 12:40 PM To: CF-Talk Subject: Re: ColdFusion

OT: Oracle Query Question

2005-03-07 Thread Charles Heizer
Hello, I have a query that gets all of the tables. CFQUERY NAME=q_Tables DATASOURCE=#settings.GlobalDS# SELECT TABLE_NAME FROM USER_TABLES /CFQUERY Now what I want to do is exclude a few tables from this query. I want to exclude a table called 'devicestate' and 'devicestatus'. I tried

Re: CF/programming experience from the list?

2005-03-07 Thread Jerry Johnson
I seem to remember a nightmare about a semicolon in column 71 instead of column 72. Which caused me to develop my social engineering and hacking skills to get a terminal account as a freshman. Jerry Johnson Web Developer Dolan Media Company [EMAIL PROTECTED] 03/07/05 11:47AM What was worse

RE: quotes in quotes

2005-03-07 Thread Kevin Aebig
I'm not sure why you'd use anything other than escaping the Quotes by doubling them up. cfset tmp = She said,Double the quotes and it'll work find. cfoutput#tmp#/cfoutput Kevin [KES geek] -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Monday, March 07, 2005

Re: OT: Oracle Query Question

2005-03-07 Thread Charles Heizer
I figured it out WHERE TABLE_NAME != 'devicestate' Does work, I just had to capitalize the table name. - Charles On 3/7/05 9:52 AM, Charles Heizer [EMAIL PROTECTED] wrote: Hello, I have a query that gets all of the tables. CFQUERY NAME=q_Tables DATASOURCE=#settings.GlobalDS# SELECT

RE: Oracle Query Question

2005-03-07 Thread Adrian Lynch
Not being an Oracle man, my first thing to check would be over != Then I'd check whether the values in TABLE_NAME are not padded with white space. Are they? Ade -Original Message- From: Charles Heizer [mailto:[EMAIL PROTECTED] Sent: 07 March 2005 17:53 To: CF-Talk Subject: OT: Oracle

RE: ms-sql resources

2005-03-07 Thread Andy Ousterhout
I got Robert Viera Professional SQL Server 2000 Programming. -Original Message- From: Protoculture [mailto:[EMAIL PROTECTED] Sent: Monday, March 07, 2005 11:01 AM To: CF-Talk Subject: ms-sql resources Does anyone know of any? Or even a good book?

Re: OT: Oracle Query Question

2005-03-07 Thread Dave Carabetta
On Mon, 07 Mar 2005 09:52:57 -0800, Charles Heizer [EMAIL PROTECTED] wrote: Hello, I have a query that gets all of the tables. CFQUERY NAME=q_Tables DATASOURCE=#settings.GlobalDS# SELECT TABLE_NAME FROM USER_TABLES /CFQUERY Now what I want to do is exclude a few tables from this

RE: quotes in quotes

2005-03-07 Thread Michael T. Tangorre
From: Claude Schneegans [mailto:[EMAIL PROTECTED] JSStringFormat() escapes characters JS wise, not CF or HTML wise. The problem here is defining the string in CF, not in JS. Sorry, misread the question. ~| Logware

Re: CFChart dieing

2005-03-07 Thread Rodney Enke
I would guess that you updated your JVM. I had the same problem when CFMX first came out and I had to roll back the JVM to 1.3.1_09 in order to use another account besides the LocalSystem account for the CF service and have a working CFCHART. A newer JVM may work, but I haven't tried. - Rod

Re: 20+ Gig monster cfam-err.log?

2005-03-07 Thread Nick Baker
I only have 5.0 on my desk top and that is where the problem is. I am cheap and 5.0 has been very solid. I still develop under 5.0 and add the 6.1 frills to the completely 5.0 code. At 10:31 AM 3/7/2005, you wrote: actually Nick's initial post was quite CFMX related I was replacing my hard

Re: quotes in quotes

2005-03-07 Thread daniel kessler
Double up on the double quotes inside the string in CF. I doubled up the quotes and it worked great. Hope I remember that one. Thanks all for the answers! As usual everyone was a great help. cfset arrayAppend(yes_ar,a onMouseOver=bookview('visible') onMouseOut=bookview('hidden')'Welcome!

Re: quotes in quotes

2005-03-07 Thread Claude Schneegans
I'm not sure why you'd use anything other than escaping the Quotes by doubling them up. Just a question of preference. It depends which way looks clearer for you. For me, concatenation is a good opportunity to split the string into several lines. -- ___

Re: OT: Oracle Query Question

2005-03-07 Thread Qasim Rasheed
You can use something like this as Dave as already pointed out select * from user_tables where upper(table_name) = 'devicestate' On Mon, 7 Mar 2005 13:03:18 -0500, Dave Carabetta [EMAIL PROTECTED] wrote: On Mon, 07 Mar 2005 09:52:57 -0800, Charles Heizer [EMAIL PROTECTED] wrote: Hello, I

Re: OT: Oracle Query Question

2005-03-07 Thread Qasim Rasheed
Please change upper to lower in my earlier query :) Qasim On Mon, 7 Mar 2005 14:54:10 -0500, Qasim Rasheed [EMAIL PROTECTED] wrote: You can use something like this as Dave as already pointed out select * from user_tables where upper(table_name) = 'devicestate' On Mon, 7 Mar 2005

OT: Recover Lost SQL Server data

2005-03-07 Thread Qasim Rasheed
Hi Does anyone has recommendation for resources where I can find information about recovering data from SQL Server 2000 if it has been deleted accindently. Assume that I do not have a backup. I am specifically looking if it could be done from transaction log files. Any help is greatly

RE: Developer edition install question

2005-03-07 Thread Dave Watts
I believe you will also have to use an alternative port with the stand alone server, instead of port 80 if you install under IIS. This will happen by default. Depending on how you install CF, the default port will typically be 8500 or 8300. Dave Watts, CTO, Fig Leaf Software

CFC and Flash datagrid

2005-03-07 Thread Ewok
I've got a small temp flash project with nothing more than a datagrid in it. The plan was to have a CF webservices send an array to flash to populate the grid but I'll be damned if I can figure out how. My grid has an instance name of my_grid. If I hardcode this into flash, it populates the

Re: CFChart dieing

2005-03-07 Thread Douglas Knudsen
yeah, I tried updating the JVM AFTER this occured, no help at all. Our prod machine has never had the stock JVM changed, still at 1.4.2_b28, IIRC. This really bites. We have 6 boxes running CFMX6.1 UPD1 ENT. 2 of the 6 have this issue, the others do not. DK On Mon, 7 Mar 2005 12:34:28

Re: CFChart dieing

2005-03-07 Thread Rodney Enke
Yeah, stock VJM that ships with MX doesn't work. I had to roll back to an older version after talking with MM support for a week. - Rod On Mon, 7 Mar 2005 15:14:48 -0500, Douglas Knudsen [EMAIL PROTECTED] wrote: yeah, I tried updating the JVM AFTER this occured, no help at all. Our prod

RE: CFChart dieing

2005-03-07 Thread Tom Jordahl
Check on file permissions issues for the account. The charting engine stores the charts on disk Tom Jordahl Macromedia Server Development -Original Message- From: Douglas Knudsen [mailto:[EMAIL PROTECTED] Sent: Monday, March 07, 2005 3:15 PM To: CF-Talk Subject: Re: CFChart

  1   2   >