Template Numbering in fusebox errors WAS Re: Error occurred on line -1 ???

2003-02-04 Thread Patti G. L. Hall
; ******** > * > > > -Original Message- > From: Patti G. L. Hall [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, February 04, 2003 10:31 AM > To: CF-Talk > Subject: Re: Error occurred on line -1 ?

Re: Error occurred on line -1 ???

2003-02-04 Thread Patti G. L. Hall
Are you using fusebox? I've seen similar messages when trying to debug a large fusebox app before. It never tells me the *actual* line number, usually its line number 1:8899. The line number stays the same it's the column number that changes, and it's always an impossibly huge number. -Patti J

Re: Try this code: WDDX problem recreated

2003-01-15 Thread Patti G. L. Hall
Thanks for the thought. Todd wrote: > Don't forget you have access to testquery.columnlist which is a comma > delimited list of all the columns in the current query object. > > testquery["columnname"][row] > > ~Todd > > At 10:29 AM 1/15/2003 -0500, you wrote: >> I figured the answer would be s

Re: Try this code: WDDX problem recreated

2003-01-15 Thread Patti G. L. Hall
Raymond Camden wrote: Ah. Clarity. Thanks Ray. >> >> I figured the answer would be similar. In my actual use I >> need to loop over a query without knowing what the columns >> are, so I use the recordset.columnlist in my list loop. >> That's why I created the structure with testquery[i], so

Re: Try this code: WDDX problem recreated

2003-01-15 Thread Patti G. L. Hall
pheus > Yahoo IM : morpheus > > "My ally is the Force, and a powerful ally it is." - Yoda > >> -Original Message- >> From: Patti G. L. Hall [mailto:[EMAIL PROTECTED]] >> Sent: Wednesday, January 15, 2003 12:06 AM >> To: CF-Talk >> Subject: Try

Try this code: WDDX problem recreated

2003-01-14 Thread Patti G. L. Hall
Regarding my previous message, I managed to recreate the wddx serialization problem I was experiencing. Run this code. It should show you what I was talking about. I'll be reporting this using the wishlist form, of course. Just wanted to post it in case anyone else was interested. [cfscript]

Re: WDDX bug?: structure keys into arrays unintentionally

2003-01-14 Thread Patti G. L. Hall
ly the only struct you want is > the one to WDDX, and the rest should be simple key > value pairs? > > -Original Message- > From: Patti G. L. Hall [mailto:[EMAIL PROTECTED]] > Sent: 14 January 2003 16:49 > To: CF-Talk > Subject: Re: WDDX bug?: structure keys into

Re: WDDX bug?: structure keys into arrays unintentionally

2003-01-14 Thread Patti G. L. Hall
I tried my own version of this test... A very simple structure with a nested structure and a simple key. No problem. It wddxed just fine. So great. I'm running into one of those, 'so difficult to reproduce it must be user error, go read the manual' things. Great. The code I used to try to repro

Re: WDDX bug?: structure keys into arrays unintentionally

2003-01-14 Thread Patti G. L. Hall
temp = StructInsert(foo,"Doprotocol", 1,"yes"); > temp = StructInsert(foo,"eventdate", "2002-01-09","yes"); > temp = StructInsert(foo,"gender", "male","yes"); > > > > > > ? > > -

Re: WDDX bug?: structure keys into arrays unintentionally

2003-01-14 Thread Patti G. L. Hall
not sure about CFMX, but the following works in CF5 : >> >> >> foo = structnew(); >> temp = StructInsert(foo,"Doprotocol", 1,"yes"); >> temp = StructInsert(foo,"eventdate", "2002-01-09","yes"); >> temp = StructI

WDDX bug?: structure keys into arrays unintentionally

2003-01-14 Thread Patti G. L. Hall
Has anybody else seen this? I've got a large structure with a bunch of single key values like: Doprotocol | 1 Eventdate | 2002-01-09 Gender | male When I wddx it and look at the results, a lot of these keys are turned into arrays. Not only that, but some of the arrays have 4 indices (all with

Repost: CFLOGIN, Web Server Auth, Timeout and unwanted caching

2003-01-10 Thread Patti G. L. Hall
I am using web server authentication to authenticate users entering my site. I am then using cflogin and queries to authorize their access. I am seeing problems. If I allow a cflogout tag to process it gets rid of the users roles just fine... But it does not trigger the cflogin tag to run the aut

TEST - will this post make it?

2003-01-10 Thread Patti G. L. Hall
I posted a question an hour ago. It made it to the archives, but it didn't make it to the list. Will this one get through? -Patti ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.

CFLOGIN, Web Server Auth, Timeout and unwanted caching

2003-01-10 Thread Patti G. L. Hall
I am using web server authentication to authenticate users entering my site. I am then using cflogin and queries to authorize their access. I am seeing problems. If I allow a cflogout tag to process it gets rid of the users roles just fine... But it does not trigger the cflogin tag to run the aut

Trouble with DWMX, RDS, SSL

2002-12-10 Thread Patti G. L. Hall
I had been using RDS to access my files when the system administrators installed a SSL certificate and put the entire site behind SSL. Since then I have not been able to get to my files through DWMX. I tried changing the port in the RDS settings from 80 to 443 (although I'm not actually sure abou

Re: MVC tool for CF

2002-11-22 Thread Patti G. L. Hall
Do you have any information on pricing? There's none on the site... They want you to call their sales offices. That usually means "too expensive to consider unless you've got a corporate pocketbook" in my experience. -Patti Stephen Moretti wrote: >> Has anyone came across any Model View Contr

Re: Recommend a good intro book to Objective C

2002-11-12 Thread Patti G. L. Hall
Nope. Not a one. Bill Brown wrote: > Did you get any responses to this query? I too am looking for a good > Objective-C book and found Learning Cocoa deficient in that regard. > > Bill > ~| Archives: http://www.houseoffusion

OT: Recommend a good intro book to Objective C

2002-11-11 Thread Patti G. L. Hall
Can anyone recommend a good intro book to Objective C. The target of this book is not myself, but a person with knowledge of C, Java... Who has gone through some of a computer science degree and generally knows what he's talking about. He has the O'Reilley book on learning Cocoa, but doesn't li

Re: Application Framework problem

2002-10-28 Thread Patti G. L. Hall
No, It's not. Though you may be keeping your code in includes, you're still using Application.cfm and onrequestend.cfm to call the includes. You might as well be writing the code directly to application.cfm and onrequestend.cfm, because coldfusion processes the contents of an include AS IF THEY B

Re: Long form and variable names?

2002-10-21 Thread Patti G. L. Hall
I saw this in your code: It should be Type="button" will not submit the form. Only tpe="submit" will do so. -Patti Keith Taylor wrote: > Hi all, > > This is probably a CF101 question, but I am missing it. I'm making an order > form where each item is laid out in a table row > with:item

Re: Returning columns with null values when specific columns are unknown at runtime

2002-09-18 Thread Patti G. L. Hall
> Funny thing is, this happens to me perpetually ... not sure why, maybe I was > a woman in my last life or something. :) > > p.s. So what else has changed about your life since the sex change? :) > Laughing quite joyously at thoughts of your past life as the bearded lady Thanks for asking,

Re: Returning columns with null values when specific columns are unknown at runtime

2002-09-18 Thread Patti G. L. Hall
I've been playing with this method for a while and it's not doing it. It always returns all of the columns in the case statment (even without the else). Seemed like a good solution at first, but nope. Ah well. It was a fighting try it were. -Patti - Original Message - > You'd also ne

Re: Returning columns with null values when specific columns are unknown at runtime

2002-09-18 Thread Patti G. L. Hall
Gee thanks! Ok, I will. I'll have to wait a couple of days, though. While I'm offsite I don't have access to the SQL server due to the client's rather anal security. I've read it through a couple of times and I'm pretty sure I see what's going on. The only question I have, though it may be ob

Re: Returning columns with null values when specific columns are unknown at runtime

2002-09-18 Thread Patti G. L. Hall
fusion but in query ann it would show > > the fieldnames also. > > > Shawn Regan > > pacifictechnologysolutions > > 15530-B Rockfield Blvd. Suite 4 > > Irvine, CA 92618 > > 949.830.1623 > > w w w . p t s 1 . c o m > > > > > -Origina

Re: Returning columns with null values when specific columns are unknown at runtime

2002-09-18 Thread Patti G. L. Hall
loop around this with a cursor and dynamically build the CASE > statements. > > Joe > > > > - Original Message - > From: "Patti G. L. Hall" <[EMAIL PROTECTED]> > To: "CF-Talk" <[EMAIL PROTECTED]> > Sent: Wednesday, September 18, 20

Re: Returning columns with null values when specific columns are unknown at runtime

2002-09-18 Thread Patti G. L. Hall
3 END, > CASE WHEN col4 is Null THEN col4 END, > FROM mytable > > - j > > > -Original Message- > From: Patti G. L. Hall [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, September 18, 2002 11:56 AM > To: CF-Talk > Subject: Re: Returning columns with null values wh

Re: Returning columns with null values when specific columns are unknown at runtime

2002-09-18 Thread Patti G. L. Hall
*ahem* he? Damn, who told me about the sex change? I really wish people would keep me up to date on this stuff. - Original Message - From: "Jesse Houwing" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, September 18, 2002 12:07 PM Subject: Re: Returning columns wit

Re: Returning columns with null values when specific columns are unknown at runtime

2002-09-18 Thread Patti G. L. Hall
eld Blvd. Suite 4 > Irvine, CA 92618 > 949.830.1623 > w w w . p t s 1 . c o m > > > > -Original Message- > From: Patti G. L. Hall [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, September 18, 2002 8:56 AM > To: CF-Talk > Subject: Re: Returning columns with null

Re: Returning columns with null values when specific columns are unknown at runtime

2002-09-18 Thread Patti G. L. Hall
specific columns are unknown at runtime > Do you know the fieldnames? Or is this something that has to be figured out > also? > > Shawn Regan > pacifictechnologysolutions > 15530-B Rockfield Blvd. Suite 4 > Irvine, CA 92618 > 949.830.1623 > w w w . p t s 1 . c o m

Re: Returning columns with null values when specific columns are unknown at runtime

2002-09-18 Thread Patti G. L. Hall
gt; Always for a single record at a time? > > > >>-----Original Message- > >>From: Patti G. L. Hall [mailto:[EMAIL PROTECTED]] > >>Sent: Wednesday, September 18, 2002 10:58 AM > >>To: CF-Talk > >>Subject: Re: Returning columns with null values

Re: Returning columns with null values when specific columns are unknown at runtime

2002-09-18 Thread Patti G. L. Hall
C 20036 > 202.797.6570 (direct line) > www.figleaf.com > > > -Original Message- > From: Patti G. L. Hall [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, September 18, 2002 11:58 > To: CF-Talk > Subject: Re: Returning columns with null values when specific colu

Re: Returning columns with null values when specific columns are unknown at runtime

2002-09-18 Thread Patti G. L. Hall
Sorry, but you made the same mistake that simon did. I don't want to return select * I want to return select (only columns that are null and I don't know what they are up front) where primarykey = some number I didin't actually have any questions regarding the where statement at all. I'm aware

Re: Returning columns with null values when specific columns are unknown at runtime

2002-09-18 Thread Patti G. L. Hall
values when specific columns are unknown at runtime > SELECT CASE WHEN pk = 1 THEN col3 END AS newcol1, > CASE WHEN pk = 1 THEN col4 END AS newcol2, > CASE WHEN pk = 2 THEN col1 END AS newcol1, > CASE WHEN pk = 2 THEN col2 END AS newcol2 > FROM mytable > > > -Original

Re: Returning columns with null values when specific columns are unknown at runtime

2002-09-18 Thread Patti G. L. Hall
Thanks, but that doesn't get me where I want. I ONLY want to return the columns that ARE null, and I never know which ones those are when I run this query... so what I need is something for the select statement. -Patti - Original Message - > The only thing I can think to do is create a

SQL: Returning columns with null values when specific columns are unknown at runtime

2002-09-18 Thread Patti G. L. Hall
Is there a way to write a MSSQL 2k query that will return a result set that contains only columns with null values when you don't know explicitly which columns those will be? So if I have this data pk | col 1 | col 2 | col 3 | col 4| 1 1 2nullnull 2null4

Re: CFMX and Flash MX - books

2002-09-17 Thread Patti G. L. Hall
Good choice. Although do the author a favor and buy it from his website. :) www.wheelmaker.org Eventually there will be code downloads and errata on this site as well. Right now it's a little spare, but it'll be up to speed soon. -Patti - Original Message - From: "Stacy Young" <[EMAIL

Re: Nice

2002-09-11 Thread Patti G. L. Hall
Wow. Try looking at that in Mozilla. The serialize link only shows the background, not the swf. The validate link is simply scary. Not that it matters, of course. Just as a point of interest. -Patti - Original Message - From: "Sean A Corfield" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAI

Re: Dreamweaver MX opinions

2002-09-09 Thread Patti G. L. Hall
I live in Rome. However, I would really like to see an "open file" management system for dwmx-mac that is more like the Win version for the Mac. I can deal with the non-dockable nature of the panels... the one thing I really miss is the tabbed windows for all the different files you have open.

Test

2002-08-29 Thread Patti G. L. Hall
This is a test. __ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@

Re: programmer vs. developer

2002-08-29 Thread Patti G. L. Hall
> CFML... The people I know often use "developer" as a step up from > "programmer" to indicate someone who designs and plans instead of just > codes... That's funny. I tend to prefer to call myself a "developer" because I think it signifies a step down from "programmer". I don't want to come

Re: Women programmers

2002-08-29 Thread Patti G. L. Hall
Great, now I feel nice and suitably objectified. My day just isn't complete until *that* has happened. I was beginning to worry... Now I'm sure you'll escuse me while I go and get dressed in pink while I make something look pretty. -Patti X > not to mention, the eye candy > factor increase ;

Re: CFMX & CurrentRow?

2002-08-27 Thread Patti G. L. Hall
r looping through a collection, unless you're actually > declaring a variable called "currentRow" in the variables scope. > > -Dan > > > -Original Message- > > From: Patti G. L. Hall [mailto:[EMAIL PROTECTED]] > > Sent: Tuesday, August 27, 2002 8:

Re: isDefined question

2002-08-27 Thread Patti G. L. Hall
And multiple select lists / listboxes with nothing selected ... and submit buttons that have not been pressed. - Original Message - > > isDefined("variableName") and Len(variableName) are used > > in > > different contexts. All form values are defined except > > checkboxes > > without any

Re: CFMX & CurrentRow?

2002-08-27 Thread Patti G. L. Hall
None of your examples used the syntax: #currentrow# That one does work, which is I believe what Sean and Watts were saying. CFLOOP is a completely different animal. - Original Message - From: "Dan G. Switzer, II" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, A

Need to report a DWMX bug and include the template

2002-08-20 Thread Patti G. L. Hall
The only url I have to report bugs is the MM Wish form and Bug report here: http://www.macromedia.com/support/email/wishform/ I have created a template that crashes my DWMX on Mac OS when I take certain steps. On Win XP it doesn't crash, but I do get a nice little error message. So, I thought

Re: OT Question about Flash and GIS

2002-08-20 Thread Patti G. L. Hall
I can't answer your question, but you might try asking the FlashCoders list. Warning, thought it's extremely high traffic. Sort of like this list. Sometimes much worse. http://chattyfig.figleaf.com > I know this is off-topic, but does anyone know if I can feed GIS info into > flash and create

Re: CFMX best practices and Imaging Lib

2002-08-08 Thread Patti G. L. Hall
Comment on the font: I can deal with the tiny size, but when I print it out it is just a shade darker than the page. Not all that readable onscreen... definitely unreadable in print. Otherwise, looks interesting. -Patti - Original Message - From: "Benoit Hediard" <[EMAIL PROTECTED]> To

Re: quotation marks" and their rules...

2002-07-29 Thread Patti G. L. Hall
In that case len(status_code) will always return 1, cause status_code=0 has a length of 1. The condition I you may be trying for is: Isdefined("status_code") and status_code This will trigger the "false" you were looking for since when status_code evaluates to 0, coldfusion will recognize that

Re: Client Database question

2002-07-24 Thread Patti G. L. Hall
Bud wrote: > LOL > > This has certainly strayed off of my original question which has > nothing do do with Stored procedures or Fusebox. I'll re-post the > question, which is concerning client database access: Nice Try. __ Str

Re: CFLOGIN Problems

2002-07-24 Thread Patti G. L. Hall
Guys read this thread; it may help you out. I have a feeling that the issue you were having would have been answered if certain jedi masters weren't away this week. I have been having a problem with cflogin myself. I believe it is close to what Frank noted and this post provides a solution to m

Re: cfmx and SQL Server Data Source Configuration

2002-07-22 Thread Patti G. L. Hall
Are you authenticating using Windows trusted or by specifically passing in a sql server username and login? I had a similar problem and this was my savior. I believe the reason was that the JDBC drivers that the datasources are based on do not allow the "trusted" windows authentication option.

Re: Using THIS scope in CFCs

2002-07-17 Thread Patti G. L. Hall
Cool stuff and good to know. My inner toddler has found her pacifier. Thanks, Ray. -Patti On 7/17/02 5:08 PM, "Raymond Camden" <[EMAIL PROTECTED]> wrote: >> Now explain . In the example below, for example, >> what would be different if you made ID a property of the >> human object rather th

Re: Using THIS scope in CFCs

2002-07-17 Thread Patti G. L. Hall
All right. I can see the difference from your example. Now, just to be like the proverbial toddler that doesn't know when to stop asking "why"... Now explain . In the example below, for example, what would be different if you made ID a property of the human object rather than a non-var local v

Re: Using THIS scope in CFCs

2002-07-17 Thread Patti G. L. Hall
> That being said - you can use a 'pseudo' private scope in CFCs by not > using var or This. In ways, it acts like a local Variables scope for Wait... I just got confused. Why is it more private if you don't var the variable? I get the "This" aspect just fine. But if by not var-ing, you run th

Re: Question: Var when writing components

2002-07-17 Thread Patti G. L. Hall
Raymond, Simon... Thanks to both. *That* is the explanation I was looking for. -Patti P.s. Simon, notice the "i" :) __ Signup for the Fusion Authority news alert and keep up with the latest news in ColdFusion and related topi

Question: Var when writing components

2002-07-17 Thread Patti G. L. Hall
Now, I know that when you are writing a UDF you use var to scope all local udf variables, keeping them from existing in the variables scope of the calling page. I have physically seen this behavior in my tests. But... What I'm not understanding is if var is necessary in the same way or for the s

Re: Component Calls: What would you do?

2002-07-10 Thread Patti G. L. Hall
That sounds somewhat familiar (I've been listening to this kind of talk RE: Flash Actionscript for quite a while). It's one of those concepts where I don't get lost when listening to someone explain it, but when trying to figure out how to implement I get headaches. Luckily you've already said t

Re: Component Calls: What would you do?

2002-07-10 Thread Patti G. L. Hall
> > Either one is functional. It depends on what you are trying to do. Do > you want to "log" every single time you use the edit (Insert / Delete) > functions? If so, then write the code directly into the department > component. Does "AuditTrail" have any function other than logging actions >

Component Calls: What would you do?

2002-07-10 Thread Patti G. L. Hall
I have written a component called Department that contains functions for inserting, editing, deleting department information. I have begun to write a component called Audit Trail that will be used to log all of the user's actions. Which would you do to implement the audit? Lets assume that I am

Re: Fiscal Year UDF

2002-07-03 Thread Patti G. L. Hall
Have you considered submitting your udf to cflib.org? -Patti __ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ: http://w

Re: ColdFusion Server 5.0 trial download?

2002-05-31 Thread Patti G. L. Hall
Copied from a post on another list I'm on: > If you go to the CF pages (like > http://www.macromedia.com/software/coldfusion/), the link offered for > downloads on the right nav bar will take you to > http://www.macromedia.com/software/coldfusion/downloads/, where the only > links seem to be to M

Re: DWMX + CFMX as standalone server

2002-05-31 Thread Patti G. L. Hall
AM Subject: RE: DWMX + CFMX as standalone server > Are you sure it is port 8100? That was the default in early betas, but > the final version (and the preview release of a few weeks ago) default > to 8500. Might want to check that. > > --- Ben > > > -Original Messa

DWMX + CFMX as standalone server

2002-05-30 Thread Patti G. L. Hall
I'm doubting that I'll get the answer I'm looking for, but thought I'd try. I've had this problem for a while, but I've been ignoring it. Now, I'd like to try and resolve the issure if I can. I am using CFMX as a standalone server. On the same machine I have CF5 installed. I want to access

Re: [style] usernames

2002-05-30 Thread Patti G. L. Hall
What do you do, then, if by chance the old email address that the user signed up with is no longer in service? Then, even if they could remember the right email they couldn't retrieve the password? This has happened to me before and I've been SOL. -Patti > > As for username/password retrieval .