Re: Studio MX

2002-11-08 Thread Kreig Zimmerman
OK. Enough of the sermonizing as to why people are using this that and the other; why coders are coders and designers are designers and the twain shall never meet; and all sort of idiotic posturing. There are THREE (3) core reasons that people whom have been in use of ColdFusion Studio have as

Re: Studio MX

2002-11-08 Thread Kreig Zimmerman
It absolutely causes better performance. As of CFMX, that is. The underlying Java translation is much quicker if it is not doing an absolute string comparison. Lofback, Chris wrote: >drop the pound signs for clarity and--I think--better >performance. > > > -- Kreig Zimm

Re: Studio MX

2002-11-08 Thread Kreig Zimmerman
No. Len() is evaluated as a Boolean because in CF, True/False, Yes/No, and 1(+)/0 are all evaluated as Boolean pairs. Trust me. I use this everywhere in my own code. Stephen Moretti wrote: > > > >>And, really, I would use this: >> >> >> >> >> > >should be > > > >BECAUSE Len() DOES NOT

Re: MM Rich Text Editor - WAS: RE: Macromedia Contribute

2002-12-10 Thread Kreig Zimmerman
Bleeaghhh... steaming pile of code turds. It's a case of "you get what you pay for." Personally, my money would be on http://www.editlive.com/product/editliveforjava/default.asp Although a bit pricey, it takes care of cross-platform nastiness much more efficiently than just about any other edi

Re: MAC file upload

2002-06-10 Thread Kreig Zimmerman
This seems to be an ongoing issue with IE5 on Macintosh. I don't think there's a resolution that I've found... although there appears to be an interesting UDF in CFLib's queue which may help. And by the way, Mac is NOT an acronym--it's a contraction!!! - Original Message - From

Re: How do Client Var Behave

2002-06-11 Thread Kreig Zimmerman
Use the "SERVER" scope. - Original Message - From: Brian Eckerman To: CF-Talk Sent: Tuesday, June 11, 2002 12:04 PM Subject: RE: How do Client Var Behave How would I declare a var that would span applications? -Original Message- From: Randell B Adkins [mailto:

Re: AOL Problems

2002-06-21 Thread Kreig Zimmerman
- Original Message - From: Eric Homa To: CF-Talk Sent: Thursday, June 20, 2002 12:02 PM Subject: AOL Problems Hi, Does anyone out there have experience with an AOL client? I have a customer whose site works fine for him at his office and also for the many other cli

Re: Dynamic form actions

2002-07-18 Thread Kreig Zimmerman
..which works if that is the only form on the page. The best method is to refer to it as document.forms['formname'] - Original Message - From: Douglas Brown To: CF-Talk Sent: Thursday, July 18, 2002 1:46 PM Subject: Re: Dynamic form actions or use document.forms[0]

Bug in MX w/ CFQUERYPARAM?

2002-07-30 Thread Kreig Zimmerman
Hello All, We upgraded our test server to CFMX this weekend (w/ Apache 1.3.20 WS). Most all of our queries that accept user input are sanitized before being inserted in the DB in an Update statment, to whit: UPDATE [dbo].[Sizes] SET [Jumbo] = WHERE [SizeID] = This works fine in CF 5. Howev

Re: Bug in MX w/ CFQUERYPARAM?

2002-07-30 Thread Kreig Zimmerman
Original Message- From: Kreig Zimmerman [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 30, 2002 4:35 PM To: CF-Talk Subject: Bug in MX w/ CFQUERYPARAM? Hello All, We upgraded our test server to CFMX this weekend (w/ Apache 1.3.20 WS). Most all of our queries that accept user

Re: cfargument and dot notaion

2002-08-01 Thread Kreig Zimmerman
: [EMAIL PROTECTED] Yahoo IM : morpheus "My ally is the Force, and a powerful ally it is." - Yoda > -Original Message- > From: Kreig Zimmerman [mailto:[EMAIL PROTECTED]] > Sent: Thursday, August 01, 2002 11:34 AM > To: CF-Talk > Subject: Re: cfarg

Re: cfargument and dot notaion

2002-08-01 Thread Kreig Zimmerman
o IM : morpheus "My ally is the Force, and a powerful ally it is." - Yoda > -Original Message----- > From: Kreig Zimmerman [mailto:[EMAIL PROTECTED]] > Sent: Thursday, August 01, 2002 12:02 PM > To: CF-Talk > Subject: Re: cfargument and dot notaion >

Re: cfargument and dot notaion

2002-08-01 Thread Kreig Zimmerman
rful ally it is." - Yoda > -Original Message- > From: Kreig Zimmerman [mailto:[EMAIL PROTECTED]] > Sent: Thursday, August 01, 2002 12:15 PM > To: CF-Talk > Subject: Re: cfargument and dot notaion > > > That's what I thought. Oh well then.

Re: Recurring events in database driven calendar

2002-08-14 Thread Kreig Zimmerman
Having built a recurring events system myself, I found that the best way to do it was to have all recurring events written to the DB, with marker connecting them to the parent row. This is due to the overhead of calculating these events for a dynanmic calendar format--if the rows exist, it is

Re: Recurring events in database driven calendar

2002-08-14 Thread Kreig Zimmerman
- Original Message - From: S. Isaac Dealey To: CF-Talk Sent: Wednesday, August 14, 2002 2:14 PM Subject: Re: Recurring events in database driven calendar [snip] Just pray they don't ask you for the ability to schedule events that occur "every third thursday of the month". [/snip] ..e

Re: and CF MX

2002-09-03 Thread Kreig Zimmerman
Sorry you weren't aware of the "ordering" issue. It often makes me wonder what CFSTOREDPROC is really doing, aside from invoking a platform-specific call to an SP... At any rate, the way I deal with null/not null situation is this: ..essentially, the whether or not it is NULL is determined

Re: and CF MX

2002-09-04 Thread Kreig Zimmerman
Well, it works for me. I'd just check your code out. That was production-level code I used as an example, so I'm 110% certain it works. As for your comments... yeah it's stupid. But without knowing exactly what CFSTOREDPROC does, what's to say? At any rate, I avoid that issue with abstract

Re: More info RE:

2002-09-05 Thread Kreig Zimmerman
I wasn't saying it was just a kludge. I was saying that it STARTED as a kludge. Remember, it was sort-of half-finished and non-documented in CF4.5. I never said it wasn't useful. I think CFQUERYPARAM is fantastic. I user it in all inline queries; I wouldn't dream of dropping a CF variable

Re: Query to CSV problem

2002-09-05 Thread Kreig Zimmerman
If using CF5+, you can use this UDF: http://cflib.org/udf.cfm?ID=404 Colin Murphy wrote: >I am looking for a solution to outputing a query to a CSV file. > >[snip] > > -- Kreig Zimmerman : Chief Information Architect : [EMAIL PROTECTED] Four Eyes Productions

CFLOGINUSER bug

2002-09-10 Thread Kreig Zimmerman
. Then try: [cflogin] [cfloginuser name="HowdyDoody" password="x" roles="#ToString(1)#"] [/cflogin] ..and that works just fine. How much of an afterthought was this security architecture, Macromedia? -- Kreig Z

Re: CFLOGINUSER bug

2002-09-10 Thread Kreig Zimmerman
lue. However, my "role" is being returned via a query object from a SP. That's what causes it to "freak". -- Kreig Zimmerman : Chief Information Architect : [EMAIL PROTECTED] Four Eyes Productions : Brooklyn, NY ___

Re: Developer Platform suggestions was Re: Nice

2002-09-11 Thread Kreig Zimmerman
I didn't know they were doing that! I have always had a Dell at work >and have never had problems. i tried to talk my father-in-law into it, but >nope, he liked his Gateway...he's wishing he had a Dell now ;-) > > > -- Kreig Zimmerman : Chief Information Architect : [EMAIL

Re: Cracking an Access file

2002-04-25 Thread Kreig Zimmerman
Yeah... hold down the "SHIFT" key while launching Access (assuming you double-clicked the file itself). That's file security for you... MS-style. :) - Original Message - From: Bill Wheatley To: CF-Talk Sent: Thursday, April 25, 2002 2:40 PM Subject: OT: Cracking an Access

Re: CFMX OS X [rant]

2002-04-29 Thread Kreig Zimmerman
How is MacOS X not a true Unix? It is BSD Unix under the hood. You can run anything on it that could run in said environment. There is nothing about OS X that makes it "less Unix" than the older commercial Unices. If you want to see for yourself, go check out a Mac with OSX on it. Go check

Re: Fusebox (was: I like CFMX)

2002-04-30 Thread Kreig Zimmerman
en. I've yet to see two "FuseBox" apps which operate in the same manner. Hell, I've yet to see an actual "FuseBox app"! -- Kreig Zimmerman : Sr. Technical Mgr. : [EMAIL PROTECTED] Four Eyes Productions : Brooklyn, NY NB: My apps all run through index.cfm however... :

Re: Browser Detection

2002-05-02 Thread Kreig Zimmerman
#x27;ve seen just aren't up to snuff in providing detailed browser/platform information... -- Kreig Zimmerman : Sr. Technical Mgr. : [EMAIL PROTECTED] Four Eyes Productions : Brooklyn, NY - Original Message - From: Sean Daniels To: CF-Talk Sent: Thursday, May 02, 2002 9

Re: quick ? deleteclientvariable

2002-05-02 Thread Kreig Zimmerman
That should be deleteclientvariable("msg"). - Original Message - From: Janine Jakim To: CF-Talk Sent: Thursday, May 02, 2002 1:51 PM Subject: quick ? deleteclientvariable I have some client messages set up, but when I hit refresh I want them to go away. I had it set li

Re: Query Issue.

2002-05-03 Thread Kreig Zimmerman
what i usually do is "columnname = columnname" which updates the content of the column, with the contents of the column--no problems there, eh? - Original Message - From: Jared Stark To: CF-Talk Sent: Friday, May 03, 2002 5:52 PM Subject: RE: Query Issue. I tried the 0 =

Re: Query Issue.

2002-05-06 Thread Kreig Zimmerman
y SQL Server will get upset with you. -Original Message- From: Kreig Zimmerman [mailto:[EMAIL PROTECTED]] Sent: Friday, May 03, 2002 4:23 PM To: CF-Talk Subject: Re: Query Issue. what i usually do is "columnname = columnname" which updates the content of the c

Re: Quick question on custom tags

2002-05-30 Thread Kreig Zimmerman
- Original Message - From: Brian Eckerman To: CF-Talk Sent: Thursday, May 30, 2002 11:05 AM Subject: Quick question on custom tags Is it possible to call a custom tag that resides in a folder other than the current folder. I am using but I would like to have one copy

Re: html standards

2002-01-18 Thread Kreig Zimmerman
Andre, The main difference in the placement of the tags is this... ..you place JS functions in the which are called from within the document/by other functions. When you place