Re: Data center hosting recommendation in NY/NJ

2003-12-23 Thread Patricia G. L. Hall
I need to spec out and host a rather high-end Windows server configuration supporting CF MX 6 and MS SQL 2000. I need a company that will help purchase the systems, license and host them in a secure datacenter requirements. I've been in conversations with Datapipe, but I'd like to explore a

Re: ot: mac cf programming software

2003-12-01 Thread Patricia G. L. Hall
Mostly Dreamweaver, though I have BBEdit on my system (wish I could have Homesite+ too). -Patti to all mac people, what editor do you use for cfmx work? thanks ...tony [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: ot: mac cf programming software

2003-12-01 Thread Patricia G. L. Hall
no homesite availability im sure? ...tony Nope.Not now.Probably not ever. -Patti [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: force file download for a Mac

2003-11-26 Thread Patricia G. L. Hall
I'm trying to make a mac download an XML file that is dynamically created. I can get it to work on a PC but a Mac just opens the file in the browser. This is the CF that I'm using. Any ideas on what I need to do to make this thing work? cfheader name=Content-Disposition value=attached;

Re: force file download for a Mac

2003-11-26 Thread Patricia G. L. Hall
I think that is where the file=[pathtofile]\sartxfercy.txt attribute comes in.You didn't have it in your original code, did you put it in this go round? My application does exactly what you want.Forces a download of a text file on both Mac and PC and names the file as I have it spelled out in the

RE: Array Sum

2003-11-19 Thread Patricia G. L. Hall
Yeah I didn't realize I was recreating the array at every iteration, that was an oversight. clicks_per_product.click[i] is a query but I thought by putting setting prodLinkTotal which is an array to clicks_per_product.click[i] would turn that into an array? I can get the values I need just

Re: getRowCount() differences

2003-11-19 Thread Patricia G. L. Hall
Is there a difference in the getRowCount() method between CF 5 and MX 6.1? We just upgraded our development server to MX but our live server is still at 5 for the time being. I was using getRowCount() to count the rows in my query which worked great on the development server but when I

RE: Date

2003-11-05 Thread Patricia G. L. Hall
Nope, they both work.It's analogous to: cfcase value=11,12,13 cfset num = two /cfcase Reduces redundant code.Easier to read. -Patti Just out of curiosity, shouldn't the script at the top be switch(two) { case 11: case 12: case 13: { num = two; break; } default: { num = Right(num,1); break;

RE: Date

2003-11-05 Thread Patricia G. L. Hall
/cfcase -Original Message- From: Patricia G. L. Hall [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 05, 2003 5:47 AM To: CF-Talk Subject: RE: Date Nope, they both work.It's analogous to: cfcase value=11,12,13 cfset num = two /cfcase Reduces redundant code.Easier to read

Re: CF/Access/SQL query - solved

2003-10-30 Thread Patricia G. L. Hall
Might I suggest that instead of cfif form.SpaceNumber is not you try cfif len(trim(form.spacenumber)) or if you like to be clearer cfif len(trim(form.spacenumber)) GT 0? The former would not stop a user entering an empty space, , while the later would. -Patti Hi all, Thanks to everyone who

Re: Switch:Case Differs in CFMX from CF5?

2003-10-23 Thread Patricia G . L . Hall
- From: Patricia G. L. Hall [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 22, 2003 8:29 AM To: CF-Talk Subject: Switch:Case Differs in CFMX from CF5? ... generic example trimmed ... I have run this syntax in CF5 successfully.  Just now I tried the same on a box with CFMX 6.1 and I

Re: Switch:Case Differs in CFMX from CF5?

2003-10-23 Thread Patricia G . L . Hall
: Patricia G. L. Hall [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 22, 2003 8:29 AM To: CF-Talk Subject: Switch:Case Differs in CFMX from CF5? ... generic example trimmed ... I have run this syntax in CF5 successfully.  Just now I tried the same on a box with CFMX 6.1 and I get

Switch:Case Differs in CFMX from CF5?

2003-10-22 Thread Patricia G. L. Hall
I posted the other day about a way to have multipile values apply to the same case logic when writing a switch block in cfscript.It went like this: switch(_expression_) { case valuea: case valueb: stuff; break; case valuec: stuff; break; default: break; } I have run this syntax in CF5

RE: cfdirectory = slow

2003-10-21 Thread Patricia G. L. Hall
Is there a similar way to find out the date the file was created? -Patti why not use java ? CFOUTPUT #CreateObject(java, java.io.File).init(FileNameAndPathHere).lastModified()# /CFOUTPUT HTH [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: cfdirectory = slow

2003-10-21 Thread Patricia G. L. Hall
); Var theFile = fso.Getfile(path); Return theFile.DateCreated; } HTH -Original Message- From: Patricia G. L. Hall [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 21, 2003 15:30 To: CF-Talk Subject: RE: cfdirectory = slow Is there a similar way to find out the date the file

RE: cfdirectory = slow

2003-10-21 Thread Patricia G. L. Hall
the nastiness into something ready to use by CF. -Original Message- From: Patricia G. L. Hall [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 21, 2003 7:30 AM To: CF-Talk Subject: RE: cfdirectory = slow Is there a similar way to find out the date the file was created? -Patti why not use java

re: Nested cfelse...

2003-10-20 Thread Patricia G. L. Hall
Check the documentation on cfswitch and right() for correct syntax, but this is the idea below. cfswitch _expression_=#right(session.strFile[i], 4)# cfcase value=.txtstuff/stuff cfdefaultcasewhatever/cfdefaultcase /cfswitch Hi, I have a piece of code where I'm checking a session variable

re: Nested cfelse...

2003-10-20 Thread Patricia G. L. Hall
value=.pdfstuff/stuff cfdefaultcasewhatever/cfdefaultcase /cfswitch --Original Message Text--- From: Patricia G. L. Hall Date: Mon, 20 Oct 2003 05:02:07 -0400 (EDT) Check the documentation on cfswitch and right() for correct syntax, but this is the idea below. cfswitch _expression_=#right

RE: Nested cfelse...

2003-10-20 Thread Patricia G. L. Hall
cfcase value=.txt,.log delimiters=, Opps...forgot oner other question. What happens if I require the value of cfcase to check for more than one value? cfset theExt = right(SESSION.strFile[i]4) cfswitch _expression_=#theExt# cfcase value=.txt .. /cfcase I need the below cfcase to

RE: Nested cfelse...

2003-10-20 Thread Patricia G. L. Hall
cmiiw... watch out for cfscript tho as far as I am aware cfscript doesn't support the multiple case features (ver5) and you need one for each item in your list ie yes it does. switch (_expression_) { case 'a': case 'b': stuff that happens when either a or b is the value; break; case 'c':

Re: Nested cfelse...

2003-10-20 Thread Patricia G. L. Hall
Thanks for the tip - I'm sure I'd have tried that at some point in the future and pulled out my hair wondering what I was doing wrong. :) - Jim You actually can do it.I sent a message showing how earlier this morning, but last I checked it had *just* made it to the list. Watch for the

RE: Giving up on DW 2004 MX

2003-10-15 Thread Patricia G. L. Hall
Nope.Happens to me too.Seems to be an oversight IMHO. You can't tell _where_ the file is. But wait - it gets better. I open the file and I _still_ can't see where the file is. I have to actually do a save as to track it down. This just seems so wrong... yet it was enough of a problem to

Re: (Admin) List upgrades

2003-09-15 Thread Patricia G. L. Hall
2. I'm going to add in a link on each post to send the user directly to the post in the archive. Should this link be before the message (a header) or after (a footer)? Footer. 3. As an extension to the previous question, does anyone actually look at the message footers? When I need to

Re: Repost: SQL Help

2003-09-12 Thread Patricia G. L. Hall
eTransferProtocolLink etp Where etp.protocolid = 12 ) When then 0 When null then 0 Else 1 End) as GIFT, et.caseid from etprocedure et Group by et.caseid, et.etProcedureid - Original Message - From: Patricia G. L. Hall [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent

Re: Repost: SQL Help

2003-09-12 Thread Patricia G. L. Hall
For arguments sake, say you have 1 record for a patient, and 3 X-ray records for that patient because there are 3 X-ray photo's. Which X-ray record do you want to send to the third party? A random one, the last one? Or do you just want to send a boolean indicating there is a number of X-ray

Re: Nested Function Order Bug?

2003-09-12 Thread Patricia G. L. Hall
Test Case 1 (Successful): cfset Variables.textString = This is a single's test cfoutput#lCase(preserveSingleQuotes(Variables.textString))#/cfoutput Test Case 2 (Fails): cfset Variables.textString = This is a single's test cfoutput#preserveSingleQuotes(lCase(Variables.textString))#/cfoutput

Repost: SQL Help

2003-09-11 Thread Patricia G. L. Hall
Pardon the previous post. I was not finished with my draft. I've written this query (extremely simplified): Select Case ( Select count(etp.etprocedureid) from eTransferProtocolLink etp Where etp.etProcedureid = et.etProcedureid and etp.protocolid = 12 )

Re: Repost: SQL Help

2003-09-11 Thread Patricia G. L. Hall
Sure. It would be easier if you showed the real query. Select 'False' as FSHUnknown, 'False' as E2Unknown, '' as ptGnRHaFlare, '' as PtGnRHaSupp, ci.caseid as clinicCycleID, Case count(stim.stimulationid) When Then 1 Else 0 End as PtUnstimulated,

Re: Repost: SQL Help

2003-09-11 Thread Patricia G . L . Hall
You should be able to just do a MAX() around the Gift field (if I understand your intentions correctly, you need them around some other CASE statements as well) and add group by statements as needed. I tried to implement this 3 ways. 2 gave me errors (cause they're wrong) and 1 didn't give

Re: Repost: SQL Help

2003-09-11 Thread Patricia G . L . Hall
On Thursday, September 11, 2003, at 06:24 PM, Ian Skinner wrote: your group by is on the wrong query. you need it on the sub-query where the max is at. Case ( Select MAX count(etp.etprocedureid) from eTransferProtocolLink etp Where etp.etProcedureid =

Re: Repost: SQL Help

2003-09-11 Thread Patricia G . L . Hall
Maybe you should try to explain in words what you are trying to achieve, because I am getting the impression that the code is much more complicated then what is actually needed. I'll try. I warn you, I'll likely end up muddying the issue. A patient's records are stored throughout many

Test: Dec 31 1969 ?

2003-08-26 Thread Patricia G. L. Hall
I'm seeing a lot of mail come in with dec 31 1969 as the date. Just testing to see if this one does too. ~| Archives: http://www.houseoffusion.com/lists.cfm?link=t:4 Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4

RE: Test: Dec 31 1969 ?

2003-08-26 Thread Patricia G. L. Hall
It's quite possible. Only the dupliate posts are showing up with the wrong date. My test and all other original messages came through with the right timestamp. So... probably there's something up with the duplicate messages (obviously) that is being interpreted by the server as effed-up-date.

RE: cfc vs php rule of thumb

2003-08-25 Thread Patricia G. L. Hall
I've seen you talk about the ini way of doing things before and I thought it was an interesteing way to carry on. I'm pretty sure you've mentioned ini on your blog, but have you ever blogged its use specifically? -Patti Didn't quite understand the INI suggestion (Raymond Camden) CF has the

RE: naming a variable from another...

2003-08-21 Thread Patricia G. L. Hall
In MX, you can do cfset variables[foo] = value Where foo is ID, this will make variables.id equal to value. Before MX, you can use evaluate cfset foo = id cfset evaluate(#foo#=1) cfoutput#id#/cfoutput Although this is icky. ;) Icky? Ah, a technical term. jk

Re: Formatting a List Output Question

2003-08-20 Thread Patricia G. L. Hall
The ul/ul tags are what is responsible for indentation among list items. So, you'd need to wrap the ul tag around any li tags in order to get the inner indentation that you're looking for. Of course, they'll also cause a space before and after the list itself, which may have been what you were

Re: homesite help

2003-08-20 Thread Patricia G. L. Hall
I don't think there has been an update to the Homesite+ Help CFML Reference book. I looked all over the place on Macromedia, searched the archives of this list and posted my own question. I got nothing. -Patti Hello all, I downloaded the HomesiteTags.zip and HomeSiteExtensions.zip and

Repost: Regular Expression Help

2003-08-14 Thread Patricia G . L . Hall
I tried to post this yesterday from the archives and I screwed it up. So.. reposting. I am dealing with a site that has been ripped apart by search and replace in Homesite+. Tags that used to look like: td select name=sel_costarts size=20 class=formSelectColumnsLarge td

Re: Repost: Regular Expression Help

2003-08-12 Thread Patricia G . L . Hall
- : From: Patricia G. L. Hall [mailto:[EMAIL PROTECTED] : Sent: Friday, August 08, 2003 8:41 AM : To: CF-Talk : Subject: Repost: Regular Expression Help : : : I tried to post this yesterday from the archives and I screwed it up. : So.. reposting. : : I am dealing with a site that has been

Re: Homesite + question

2003-06-26 Thread Patricia G . L . Hall
I've used both cfstudio and dw for a long time... I even dared to use ultradev. Especially since when I'm at home I dev on a Mac I was oh-so-happy to have the new dwmx and be able to finally do real mac-cf dev. Yet... I like the coder IDE so much better than the designer version, and I

Re: Called as module or include?

2003-06-20 Thread Patricia G . L . Hall
Not in my book. On Thursday, June 19, 2003, at 10:50 PM, John Quarto-vonTivadar wrote: it also means you've created a tighter coupling between templates. - Original Message - From: Patricia G. L. Hall [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, June 19, 2003 9

Re: Called as module or include?

2003-06-19 Thread Patricia G . L . Hall
I hate trying to figure out whether an action is being caused because of a variable that could have been paramed, created by a query or sent in from a form or a url. Especially when I have to pick up an existing FB app, scoping everything in the attributes scope has usually made more work for

Re: Application Security using cflogin and cfloginuser

2003-03-21 Thread Patricia G . L . Hall
Can you describe how you set up your web based security? I mean your web server settings to enable this. I'm not the server admin, so I can't tell you exactly what's up. All I know is that they're using Novell and net id what I do not know is if net id is what the thing is actually

Re: Application Security using cflogin and cfloginuser

2003-03-21 Thread Patricia G . L . Hall
We've got at least up through updater 2 installed on my server. I'm not sure about updater 3, but I suspect yes. -Patti On Friday, March 21, 2003, at 11:42 AM, Nathan Mische wrote: This sounds like the exact same issue I was having trying to use cflogin with integrated windows

Re: CFDump stops HTML output?

2003-03-21 Thread Patricia G . L . Hall
I've seen something similar when I use cfdump while in a cfc. It doesn't happen all the time... I never sat down to try and calculate the variables, but things seem to go wrong when I'm 1) dumping in a cfc, 2) Am dumping in the normal template that calls the cfc and the second dump

Re: CFDump stops HTML output?

2003-03-21 Thread Patricia G . L . Hall
Well, then... that would be very nice. -Patti On Friday, March 21, 2003, at 01:25 PM, jon hall wrote: I believe read about this bug being fixed in the Release Notes for Updater 3... -- jon mailto:[EMAIL PROTECTED] Friday, March 21, 2003, 1:12:19 PM, you wrote: PGLH I've seen

Re: Application Security using cflogin and cfloginuser

2003-03-20 Thread Patricia G . L . Hall
I knew it. On Monday, March 17, 2003, at 02:04 PM, Raymond Camden wrote: 1) If you use cflogin.* to check for logins, idleTimeout ceases to function. ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4

Re: Application Security using cflogin and cfloginuser

2003-03-20 Thread Patricia G . L . Hall
: [EMAIL PROTECTED] Blog : www.camdenfamily.com/morpheus/blog Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original Message- From: Patricia G. L. Hall [mailto:[EMAIL PROTECTED] Sent: Thursday, March 20, 2003 8:58 AM To: CF-Talk Subject: Re: Application

Re: Application Security using cflogin and cfloginuser

2003-03-20 Thread Patricia G . L . Hall
Well, I posted a message here about a month or two ago that didn't get much play, and then I proxied my message to the CFGURU list through another member there. You tried valiantly to help there, but the end result was me giving up in frustration. I find that it is EXTREMELY difficult to

Re: Application Security using cflogin and cfloginuser

2003-03-20 Thread Patricia G . L . Hall
What 'auth_user'? The result of getAuthUser() you mean? Yeah, the authentication token that shows up in cgi.auth_user... So, even if you logout - you can't login as someone else? Does your logon form show up if you close your brower and return? Ie, the system _at least_ know that you need

Re: OO book

2003-03-20 Thread Patricia G . L . Hall
very helpful and easy to follow, with plenty of relevant examples. The source for everything comes on a pack-in CD-ROM, as well. That's actually a typo. There's no CD-ROM, but you can download the source files from www.wheelmaker.org. You can buy the book from this site too. -Patti

Re: Array Initialization

2003-02-19 Thread Patricia G . L . Hall
You can't do it in just one line. You have to first initialize the array itself and then populate it in subsequent lines. You probably already know that syntax, but just in case: cfscript appServers = arraynew(1); arrayappend(appServers, JRun);