RE: storing images in SQL database

2000-12-29 Thread Brendan Avery
sting images with img tags or especially with javascript. --brendan avery / [EMAIL PROTECTED] ~ Paid Sponsorship ~ Get Your Own Dedicated Win2K Server! Instant Activation for $99/month w/Free Setup from SoloServer PIII600 / 128 MB RAM / 20 GB HD / 24/7/365 Te

RE: format question ... an REReplace solution

2001-01-03 Thread Brendan Avery
The ParagraphFormat() function is pretty weak, since it doesn't generally put the p tags in the appropriate places (i.e. at the beginning of paragraphs...) I suggest the following solution using regular expressions: cfset YourText = #REReplace( YourText,

Re: !-#include file=cfFile.cfm -

2001-01-04 Thread Brendan Avery
If you do any of the following: cfinclude template="somepage.asp" cfinclude template="somepage.html" cfinclude template="somepage.txt" cfinclude template="whatever" It will still think of it as a CFML document and will try to parse it as such. --B][A / [EMAIL PROTECTED] Also, if you do a

RE: CPU 100% when one CFM file is accessed

2001-01-05 Thread Brendan Avery
client is a variable scope. you definitely don't want to use reserved words for query names. other bad choices would be: session variables request application attributes among others... At 10:22 AM 1/5/2001 +0700, you wrote: Do you have a query with name="client" ? I also got this problems

Re: call program on client via CF?

2001-01-05 Thread Brendan Avery
ColdFusion executes on the SERVER. Are you trying to START a program on the CLIENT? One way would be to build a TSR on the CLIENT that waits for TCP/IP/UDP commands from a COM object on the SERVER, but then you're faced with all sorts of remote security issues... The short answer to your

Re: GetTickCount - what's the point?

2001-01-05 Thread Brendan Avery
Benchmarking. At 03:58 PM 1/5/2001 -0500, you wrote: So what is GetTickCount good for? E -Original Message- From: Jann VanOver [mailto:[EMAIL PROTECTED]] It says in the docs, "The absolute value of the counter has no meaning. Generate useful timing values by taking differences between

Re: cfif : Okay within cfinput tag?

2001-01-05 Thread Brendan Avery
not okay. you can't nest tag brackets within CFML, ever. At 05:20 PM 1/5/2001 -0500, you wrote: I've got a cfform with a couple cfinput type = "Radio" tags in it. I'm trying to put a cfif statement within the cfinput type = "Radio" tag but I keep getting an error. I'm not sure if my syntax is

Re: cfif : Okay within cfinput tag?

2001-01-05 Thread Brendan Avery
to clarify: you can only put in cfif and other cfml tags inside html tags... not cfml. because the cftags are parsed on the server, whereas the html tags are only parsed on the client (although the cf engine does pay attention to quotes in tags and textarea tags... -brendan At 05:20 PM

Re: cfif : Okay within cfinput tag? (a solution)

2001-01-05 Thread Brendan Avery
one solution to your problem is to do this: cfinput type="Radio" name="language" checked="#Evaluate("variablefromdb is 'english'")#" as long as your evaluate statement is valid it will spit back true or false / yes or no and you'll achieve the desired result. --brendan At 05:20 PM 1/5/2001

Re: customtags complaining that required parameters are not set, but they are.

2001-01-10 Thread Brendan Avery
I believe that error is thrown whenever a CFPARAM tag doesn't have a default and the variable has not yet been created. You may want to check the custom tag for the relevant CFPARAM -brendan avery / [EMAIL PROTECTED] At 08:36 AM 1/10/2001 -0500, you wrote: Occasionally I have a problem where

RE: Dreamweaver UltraDev 4.0 and Cold Fusion

2001-01-10 Thread Brendan Avery
btw: if you want to experiment with XML, there is a really great free beta tool by Architag.com called XRay http://www.architag.com/xray/ I suggest you download it while it's still free. Really neat. --brendan avery / [EMAIL PROTECTED] At 09:01 AM 1/11/2001 -0500, you wrote: As far as my

RE: The +.htr bug strikes again

2001-01-11 Thread Brendan Avery
we got hit with an /iisadmpwd/*.htr bug hack a couple of days ago on a low-security machine. "prime suspectz ownz you" hack page. but i got their ADSL ip number after emailing them with a web bug. eeediots. --brendan avery / [EMAIL PROTECTED] At 03:14 PM 1/11/2001 -0500, you wrote

Re: The +.htr bug strikes again

2001-01-11 Thread Brendan Avery
Hey thanks, Jon. I just checked it out -- what a great tool. I must write pilot and thank him as well. !!!peace!!! -brendan avery / [EMAIL PROTECTED] At 04:19 PM 1/11/2001 -0500, you wrote: http://search.iland.co.kr/twwwscan/ If you are not sure about the security of your webserver, get

Re: The +.htr bug strikes again

2001-01-11 Thread Brendan Avery
Um no you can't. The buffer underrun abends the logging process. -b][a- At 04:16 PM 1/11/2001 -0500, you wrote: You coulda just checked your logs and found their IP address that way too. --=@ greg @=-- - Original Message - From: "Brendan Avery" [EMAIL PROTECTED] To: "

Re: (code) Looping is faster in 4.5.2

2001-01-11 Thread Brendan Avery
yeah -- i tried that a week ago just for the heck of it and was utterly surprised to find out that cfscript loops execute about 25-30% slower on my 4.5.1 box. haven't benchmarked on the 4.0 servers yet... At 06:26 PM 1/11/2001 -0500, you wrote: In the past both myself and many others have

Re: wddx??

2001-01-12 Thread Brendan Avery
packet which is parsed and then the end-user response page is built from the parsed data. the site would have been hellah tedious without wddx. (actually it still was, but it coulda been worse...) :) --brendan avery / [EMAIL PROTECTED] At 06:40 AM 1/12/2001 -0600, you wrote: ok I'm trying to have

Re: iif with 3 expressions?

2001-01-12 Thread Brendan Avery
here's one way to do it: #iif( mything is "APPLE", DE("pic_apple.gif"), DE( iif(mything is "BANANA", DE("pic_banana.gif"), DE("pic_cactus.gif") ) ) )# please note the use of

Re: OT: CF web development method

2001-01-12 Thread Brendan Avery
check out the site http://www.fusebox.org there's also a mailing list dedicated to the fusebox methodology at: http://houseoffusion.com/hof/lists/Fusebox.cfm fusebox isn't the end-all-be-all, but it does manage to handle many cf development issues in an innovative and useful way. --brendan

Re: Studio Removing Last Character

2001-01-16 Thread Brendan Avery
Does Studio delete the last character all the time? And does it delete a single character even if that character is whitespace itself (like a br or tab or space) ? Just curious if I want to bother upgrading from 4.0.1 right now... -brendan avery / [EMAIL PROTECTED] At 08:10 AM 1/15/2001

Re: Page Counter

2001-02-16 Thread brendan avery
!--- SIMPLECOUNTER.CFM (may be renamed to whatever you want) by brendan avery - [EMAIL PROTECTED] - http://www.brendanavery.com description a simple hit counter example. use only in the context of cfmodule or as a custom-tag. requirements CFFILE must be enabled. attributes

Re[2]: Page Counter

2001-02-16 Thread brendan avery
="total" the current total is cfoutput#total#/cfoutput page hits.br br hit refresh on your browser to keep on testing. also, notice that there is now a file in this directory called "counter.txt" ----end of the index page -- Brendan Avery 2.0 [EMAIL PROTECTED] http://www.bre

Re[2]: Strengths of each

2001-02-22 Thread brendan avery
Hello Nick, Thursday, February 22, 2001, 9:11:55 PM, you wrote: One of the things that I have been working on recently is My own Session/Application management System. All variables are stored in the database, VBScript functions and CF Custom Tags are used to pull these variables. This

Re[2]: One record query output

2001-03-19 Thread brendan avery
In case nobody mentioned it already: SELECT TOP 1 * FROM tbl_Whatever ORDER BY WhateverIDontCare Hello Christopher, Monday, March 19, 2001, 7:16:07 PM, you wrote: Can you use the maxrows attr within cfquery ? Chris Christopher Conrad Senior.Programmer.Analyst Advanced.Technology.Group

CF Studio settings in win2k

2002-02-20 Thread Brendan Avery
. -brendan avery 2.0 - [EMAIL PROTECTED] 310.779.2211 - santa monica, california __ Why Share? Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER Instant Activation · $99/Month · Free Setup http

RE: Invalid parser construct eror

2002-02-20 Thread Brendan Avery
No actually, keep the single quotes. -Original Message- From: James Curran [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 20, 2002 14:12 To: CF-Talk Subject: RE: Invalid parser construct eror And the single quotes. #Evaluate(SumTotals.RegTotal + SumTotals.OTTotal)#

RE: Invalid parser construct eror

2002-02-20 Thread Brendan Avery
no, the only really incorrect way to use evaluate is: #Evaluate(Form.UserEntry)# :) -Original Message- From: Pete Freitag [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 20, 2002 14:16 To: CF-Talk Subject: RE: Invalid parser construct eror You are using Evaluate

RE: Locking multiple scopes

2002-02-20 Thread Brendan Avery
is the session variable you are adding to the application scope a struct variable? -Original Message- From: Kay Smoljak [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 20, 2002 20:55 To: CF-Talk Subject: Locking multiple scopes I have a tricky situation - I have a session

RE: Locking multiple scopes

2002-02-20 Thread Brendan Avery
should really only be open for microtaneous instances. jest mah too sense. brendan avery 2.0 - [EMAIL PROTECTED] 310.779.2211 - santa monica, california -Original Message- From: Kay Smoljak [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 20, 2002 21:16 To: CF-Talk Subject: Re

RE: CFFTP

2002-02-20 Thread Brendan Avery
you are correct sir. unless your client machine is running an ftp-server you're s//t out of luck. incidentally, cfftp also can not be used as an ftp-server itself (meaning you won't be able to connect using an ftp-client to a cold-fusion page using cfftp). -Original Message-

RE: Divide record output cleanly when printing?

2002-02-21 Thread Brendan Avery
we just generate .RTFs with page breaks -Original Message- From: Valerie L. Criswell [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 21, 2002 16:54 To: CF-Talk Subject: Re: Divide record output cleanly when printing? Hey thanks... I'm going to see if I can figure that out.

RE: When is application.cfm called?

2002-02-27 Thread Brendan Avery
it is called only once per request, and not when custom tags are called. also, if you have multiple directories with application.cfm in them, only the application.cfm in the directory of the base template (the specific requested template) is called . if there isn't one there, cf recurses

RE: create .doc from CF

2002-03-04 Thread Brendan Avery
http://www.cfcomet.com has info on using cfobject to generate and manipulate office documents. cffile (write/append) just creates a plain-text file; you'll get a notification from office 2000+ to install components (specifically it wants to install file-type converters for the 'unknown'

RE: basics about how CF works with XML

2002-03-11 Thread Brendan Avery
cf server CAN read XML files, but there's nothing inherent in the cf engine for handling XML (cf does have native WDDX handling, which is a specific implementation of XML, but 99.99% of the XML files out there are not remotely WDDX-conformant.) if you need to read and parse an XML document, you

RE: Searching a Variable

2002-03-12 Thread Brendan Avery
CFIF ListContains(FORM.WHATEVER,21) GT 0 YOU HAVE 21 IN YOUR INPUT /CFIF -Original Message- From: LANCASTER, STEVEN M. (JSC-OL) (BAR) [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 12, 2002 11:27 To: CF-Talk Subject: Searching a Variable I have a variable being passed

RE: SQL in a CFIF

2002-03-12 Thread Brendan Avery
you can not have your cfif conditional execute on the database-side; but you can put cfif and other cftags inside a cfquery tag-pair. for example if you had a page that had to display some item from your database, you could use a cfif to decide whether to pull an item by id or if no id is

RE: Cross post: Calling CFML.exe through CFEXECUTE

2002-03-12 Thread Brendan Avery
you'll need to explicitly pass cfid and cftoken if you want your session vars. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 12, 2002 14:01 To: CF-Talk Subject: RE: Cross post: Calling CFML.exe through CFEXECUTE When you call a template

Error Using CF5 to access Excel

2002-03-12 Thread Brendan Avery
H4Error Diagnostic Information/H4 PError trying to create object specified in the CFOBJECTtag. PCOM error 0x80040111. ClassFactory cannot supply requested class PThe error occurred while processing an element with a general identifier of (CFOBJECT), occupying

OT: ICQ Hottie Spam Bot Turing Test

2002-03-14 Thread Brendan Avery
i don't normally post off-topic, but this is a transcript from about 3pm today -- anyone else noticing that these ICQ spam bots are getting smarter? 153545789(15:57 PM) : Hi there , my name is susy was looking on whitepages for similiar interests and your UIN 37946337 came up. I would like to

Re[2]: CF Studio - Can't select a word by double-clicking with a mouse

2002-03-15 Thread Brendan Avery
hey Bryan, you could try using a lower mouse sensitivity-- if you double-click fast and then slightly move the mouse before the second click is let-go-of then you'll select a word partial up to the place where your cursor is at...? brendan avery 2.0 - [EMAIL PROTECTED] - 310.779.2211 412 rose

Re: date massaging

2002-03-27 Thread Brendan Avery
hey nick, #mid(mydate,1,2)#/#mid(mydate,3,2)#/#mid(mydate,5,4)# brendan avery 2.0 - [EMAIL PROTECTED] - 310.779.2211 412 rose ave, suite c - venice beach, california 90291 ..providing word solutions to your mother, since 1975 on Wednesday, March 27, 2002, 2:21:37 PM, you wrote: nac Anyone care

Re: Odd can't log in behavior

2002-04-11 Thread Brendan Avery
reason, i would suggest that you don't do cflocations for login errors, because that process is often the culprit in these kinds of affairs. hope that helps you! brendan avery 2.0 - [EMAIL PROTECTED] - 310.779.2211 412 rose ave, suite c - venice beach, california 90291 ..providing word solutions

Re[2]: Odd can't log in behavior

2002-04-11 Thread Brendan Avery
browser, and at any SG intervening proxies. SG HTH SG Shawn Grover SG -Original Message- SG From: Brendan Avery [mailto:[EMAIL PROTECTED]] SG Sent: Thursday, April 11, 2002 5:17 PM SG To: CF-Talk SG Subject: Re: Odd can't log in behavior SG hey Janine, SG i didn't see if anyone responded

RE: SQL for grabbing list of tables in DB / fields in table?

2002-01-09 Thread Brendan Avery
! ::brendan avery ::310.779.2211 ::[EMAIL PROTECTED] ::santa monica, california -Original Message- From: Bryan Love [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 09, 2002 15:55 To: CF-Talk Subject: RE: SQL for grabbing list of tables in DB / fields in table? this code works for SQL

RE: CFEXECUTE output to page

2002-01-09 Thread Brendan Avery
MS DOS fun factoid #29484: you can generate output from any console program by following the command line with a and the name of the output file; ala: C:\myproggie.exe C:\output.txt ::brendan avery 2.0 ::310.779.2211 ::[EMAIL PROTECTED] ::santa monica, california -Original Message

RE: CFEXECUTE output to page

2002-01-09 Thread Brendan Avery
: Brendan Avery [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, January 09, 2002 6:21 PM Subject: RE: CFEXECUTE output to page MS DOS fun factoid #29484: you can generate output from any console program by following the command line with a and the name of the output file; ala: C

RE: CFEXECUTE output to page

2002-01-09 Thread Brendan Avery
a powerful and easy to use tool so i use it for all sorts of automation on my client pc's). ::brendan avery 2.0 ::310.779.2211 ::[EMAIL PROTECTED] ::santa monica, california -Original Message- From: Jim McAtee [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 09, 2002 17:43 To: CF-Talk

RE: array - structure question

2002-01-10 Thread Brendan Avery
= 'Department 2; item.name = 'Joe Jones; item.email = '[EMAIL PROTECTED]; additem = arrayAppend(request.contact, item); ::brendan avery 2.0 ::310.779.2211 ::[EMAIL PROTECTED] ::santa monica, california -Original Message- From: Owens, Howard [mailto:[EMAIL PROTECTED]] Sent: Thursday

RE: CF Server can't process forms

2002-01-11 Thread Brendan Avery
:\mysite\subsection\theform.cfm and the form is posting to: C:\mysite\subsection\thepost.cfm the action better read: action=subsection\thepost.cfm nes pas? hope that helps. ::brendan avery 2.0 ::310.779.2211 ::[EMAIL PROTECTED] ::santa monica, california -Original Message- From: W Luke

RE: CF Server can't process forms

2002-01-11 Thread Brendan Avery
er... action=subsection/thepost.cfm -Original Message- From: Brendan Avery [mailto:[EMAIL PROTECTED]] Sent: Friday, January 11, 2002 15:26 To: CF-Talk Subject: RE: CF Server can't process forms make sure that that action is the correct relative path to the BASE template; meaning

RE: Looping Through Client Variable List

2002-01-14 Thread Brendan Avery
although I think that you avoid an evaluate and could get away with: Client[ListElement] / Client[clientvar1] ? -Original Message- From: Joseph Thompson [mailto:[EMAIL PROTECTED]] Sent: Sunday, January 13, 2002 14:31 To: CF-Talk Subject: Re: Looping Through Client Variable List Guess

RE: Mental Block

2002-01-14 Thread Brendan Avery
you could always use an additional query to get the next/prev docs. question -- how would the next/prev buttons work if you didn't have an ID or ordinal attached to them anyways? -Original Message- From: Tony Gruen [mailto:[EMAIL PROTECTED]] Sent: Monday, January 14, 2002 20:02 To:

RE: Quick and dirty help!

2002-01-15 Thread Brendan Avery
cfset safefilename=REReplace(unsafefilename,[^[:alpha:][:digit:]],_,ALL ) cfset safefilename=safefilename .txt!--- or whatever extension you need --- should make em pretty safe. -Original Message- From: Development Team [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 15, 2002 12:20

RE: Double Quotes

2002-01-15 Thread Brendan Avery
, especially when it is used inside of the value attribute of input tags. Maybe you should post the code you're having the truncation issue with. brendan avery 2.0 - [EMAIL PROTECTED] 310.779.2211 - santa monica, california -Original Message- From: ehoma [mailto:[EMAIL PROTECTED]] Sent

RE: Web bugs, cookies and redirects...

2002-01-16 Thread Brendan Avery
if you use javascript IN the email itself, your typical end-user will probably either get a 'warning' about unsafe content or nothing at all, instead of the intended effect. brendan avery 2.0 - [EMAIL PROTECTED] 310.779.2211 - santa monica, california -Original Message- From: Andrew

RE: Web bugs, cookies and redirects...

2002-01-16 Thread Brendan Avery
dmt. at the moment however, i'm riding a nicotine buzz from a half a pack since noon. smooches. brendan avery 2.0 - [EMAIL PROTECTED] 310.779.2211 - santa monica, california -Original Message- From: Andrew Scott [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 16, 2002 20:52 To: CF

RE: Web bugs, cookies and redirects...

2002-01-16 Thread Brendan Avery
oops i'm pretty sure that anything generated by cfheader would generate a warning on nearly as many email clients as any kind of javascript would. __ Dedicated Windows 2000 Server PIII 800 / 256 MB RAM / 40 GB HD / 20 GB

RE: Web bugs, cookies and redirects...

2002-01-16 Thread Brendan Avery
you can cross-reference or otherwise use that information for repugnant sneakiness in service of satan. }:-D brendan avery 2.0 - [EMAIL PROTECTED] 310.779.2211 - santa monica, california -Original Message- From: Andrew Scott [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 16

RE: Web bugs, cookies and redirects...

2002-01-16 Thread Brendan Avery
, that could just be the adrenaline rush from having to run outside and stand around outside in the cold night air every hour and a half. brendan avery 2.0 - [EMAIL PROTECTED] 310.779.2211 - santa monica, california -Original Message- From: Andrew Scott [mailto:[EMAIL PROTECTED]] Sent: Wednesday

RE: A few quick regular expression questions

2002-01-18 Thread Brendan Avery
make sure your sought-after case matches up. or use REReplaceNoCase() just a thought brendan avery 2.0 - [EMAIL PROTECTED] 310.779.2211 - santa monica, california -Original Message- From: Kola Oyedeji [mailto:[EMAIL PROTECTED]] Sent: Friday, January 18, 2002 07:08 To: CF-Talk

RE: sessions

2002-01-21 Thread Brendan Avery
you can make it happen any time by doing this: cfparam name=session.x default=1 when you don't have sessions enabled in your cfapplication. -Original Message- From: Shawn Regan [mailto:[EMAIL PROTECTED]] Sent: Monday, January 21, 2002 12:00 To: CF-Talk Subject: sessions Does

RE: sessions (further clarification)

2002-01-21 Thread Brendan Avery
when cfapplication sez so, you'll get the same error if you try to cfparam session variables. -Original Message- From: Brendan Avery [mailto:[EMAIL PROTECTED]] Sent: Monday, January 21, 2002 12:45 To: CF-Talk Subject: RE: sessions you can make it happen any time by doing

RE: Coldfusion Server

2002-01-21 Thread Brendan Avery
a progress meter and stuff. of course you'll need to use asp or some other com-integrated platform to use sa-fileup. http://www.softwareartisans.com/softartisans/saf.html brendan avery 2.0 - [EMAIL PROTECTED] 310.779.2211 - santa monica, california -Original Message- From: Brunt, Michael

RE: split (pardon my crap but this is french)

2002-01-23 Thread Brendan Avery
those values were not appended to the array. HOWEVER, try changing your myvar to this and watch what happens: cfset myvar=USEPPITHESEPPIDELIMITERS then scratch your head and go take so more french classes. *smooches* doomo arigato. brendan avery 2.0 - [EMAIL PROTECTED] 310.779.2211 - santa

RE: split (pardon my crap but this is french)

2002-01-23 Thread Brendan Avery
. phoo. thanks for staying positive. peace homey! -brendan avery -Original Message- From: tom muck [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 23, 2002 17:26 To: CF-Talk Subject: Re: split (pardon my crap but this is french) Stomp away. I've been corrected 4 times now

RE: IIS 5 on Win 2K help

2002-01-28 Thread Brendan Avery
setting up multiple websites/domains with iis is pretty easy. every time you create a new website, you'll need to add 'host header' information for that website for both the .com and www..com . just right-click on the website name and choose 'properties'. the default tab of 'web

RE: Best way to store credit cards in database?

2002-01-28 Thread Brendan Avery
danged easy. on that note, if anyone wants a dictionary attack proggie for sql server: http://ntsecurity.nu/toolbox/sqldict/ brendan avery 2.0 - [EMAIL PROTECTED] 310.779.2211 - santa monica, california -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED]] Sent: Monday, January

RE: Problem

2002-01-28 Thread Brendan Avery
servers and then later deny access. brendan avery 2.0 - [EMAIL PROTECTED] 310.779.2211 - santa monica, california -Original Message- From: Michael Ross [mailto:[EMAIL PROTECTED]] Sent: Monday, January 28, 2002 11:45 To: CF-Talk Subject: Problem Okay so I think I have a problem

RE: Best way to store credit cards in database?

2002-01-28 Thread Brendan Avery
or 'reversible' so you need to make sure you have a corresponding Decrypt algorithm before you Encrypt it. brendan avery 2.0 - [EMAIL PROTECTED] 310.779.2211 - santa monica, california -Original Message- From: Jennifer Larkin [mailto:[EMAIL PROTECTED]] Sent: Monday, January 28, 2002 12:05

RE: how to do Google-like search??

2002-01-29 Thread Brendan Avery
Trovolda. brendan avery 2.0 - [EMAIL PROTECTED] 310.779.2211 - santa monica, california -Original Message- From: Joseph DeVore [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 29, 2002 02:14 To: CF-Talk Subject: RE: how to do Google-like search?? Han, I would suggest taking

RE: OT Javascript

2002-02-01 Thread Brendan Avery
You need to use the proper case methinks. onDblClick -Original Message- From: Steve Oliver [mailto:[EMAIL PROTECTED]] Sent: Friday, February 01, 2002 16:59 To: CF-Talk Subject: RE: OT Javascript It may recognize the ondblclick, but does it recognize

RE: OT Javascript

2002-02-01 Thread Brendan Avery
also, you may only be able to use onDblClick with a multi-line select as a single click triggers the drop-down. -Original Message- From: Pete Freitag [mailto:[EMAIL PROTECTED]] Sent: Friday, February 01, 2002 17:02 To: CF-Talk Subject: RE: OT Javascript yeah that should work

RE: OT Javascript

2002-02-01 Thread Brendan Avery
I tested the following in IE 5, Netscape 3, and Netscape 6 form select onDblClick=alert('it works'); size=5 optionyou suck/option /select /form IE 5 and Netscape 6 work. Netscape 3 does not. Waiting for Netscape 4 to finish downloading. -Original Message- From: Ray Bujarski

RE: OT Javascript

2002-02-01 Thread Brendan Avery
oh btw -- the option value was not meant for anyone here; i just tend to use that as my default test value for everything. i don't know why. -Original Message- From: Brendan Avery [mailto:[EMAIL PROTECTED]] Sent: Friday, February 01, 2002 17:21 To: CF-Talk Subject: RE: OT

RE: OT Javascript

2002-02-01 Thread Brendan Avery
doesn't work on my machine NS 4.08. :( -Original Message- From: Ray Bujarski [mailto:[EMAIL PROTECTED]] Sent: Friday, February 01, 2002 17:23 To: CF-Talk Subject: RE: OT Javascript My javascript bible (hmm another bible that is erroneous) says that netscape 4 does interpret

RE: OT Javascript WIERD

2002-02-01 Thread Brendan Avery
WHOA. Try double-clicking on just the lower-left corner of the border of the select box. THEN IT WORKS IN NS4! You might have to keep trying a few times all over the border to find the sweet spot. BUT IT'S THERE. and that is retardededed. -Original Message- From: Steve Oliver

RE: OT Javascript WIERD

2002-02-01 Thread Brendan Avery
of course that makes it completely useless -Original Message- From: Brendan Avery [mailto:[EMAIL PROTECTED]] Sent: Friday, February 01, 2002 17:31 To: CF-Talk Subject: RE: OT Javascript WIERD WHOA. Try double-clicking on just the lower-left corner of the border

RE: Damn it's quiet

2002-02-01 Thread Brendan Avery
me too, steve. an admin system for a nurses registry. whoo-f***ing-hoo. :) god, how i love the live of a contract programmer. i thought contracting was supposed to be more fun.. i think i need to hire a salesperson. -Original Message- From: Steve Oliver [mailto:[EMAIL

RE: Damn it's quiet

2002-02-01 Thread Brendan Avery
for advanced CF work for the University. :-) - Original Message - From: Brendan Avery [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, February 01, 2002 10:45 PM Subject: RE: Damn it's quiet me too, steve. an admin system for a nurses registry

RE: date format

2002-02-05 Thread Brendan Avery
clarification: Now() is a function. Now is a variable. In the case of your error -- the variable the parser was looking for, 'Now' did not exist. -Original Message- From: Martin Sutton [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 05, 2002 06:13 To: CF-Talk Subject: RE: date

Content Management

2002-02-05 Thread Brendan Avery
fellow developers could get some use out of it. brendan avery 2.0 - [EMAIL PROTECTED] 310.779.2211 - santa monica, california __ Get Your Own Dedicated Windows 2000 Server PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER Instant

RE: Week Number = date range ?

2002-02-05 Thread Brendan Avery
(dtmWeekStart,mm/dd/)#br Week End Date #DateFormat(dtmWeekEnd,mm/dd/)#br /cfoutput brendan avery 2.0 - [EMAIL PROTECTED] 310.779.2211 - santa monica, california -Original Message- From: Jeff Green [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 05, 2002 16:18 To: CF-Talk Subject: Week

RE: Week Number = date range ?

2002-02-05 Thread Brendan Avery
according to CF's week function, week #38 in 2001 starts on sep/16, not #39 ? so the code i sent won't give you the result you want. ne'er mind .b -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 05, 2002 16:56 To: CF-Talk Subject: Re:

Dear Allaire/Macromedia Engineers: WDDX support for Recursive Str uctures

2002-02-06 Thread Brendan Avery
greater support for interoperability with object-oriented databases. thanks for your attention. please don't make me start a petition... ;) brendan avery 2.0 - [EMAIL PROTECTED] 310.779.2211 - santa monica, california __ Get Your

RE: Dear Allaire/Macromedia Engineers: WDDX support for Recursive Str uctures

2002-02-11 Thread Brendan Avery
/ voice: (202) 797-5496 fax: (202) 797-5444 brendan avery 2.0 - [EMAIL PROTECTED] __ Why Share? Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER Instant Activation · $99/Month · Free Setup http

RE: Outlook and CF

2004-02-28 Thread Brendan Avery
you are running CF on, therefore the class string for it is unrecognized. --brendan avery -Original Message- From: Ciliotta, Mario [mailto:[EMAIL PROTECTED] Sent: Friday, February 27, 2004 6:35 PM To: CF-Talk Subject: Outlook and CF Hi, I was wondering if some who is familiar

RE: template reader/parser sort of thing :)

2004-03-01 Thread Brendan Avery
I concur with dov -- CFMX has built in XMLTransform functions for doing all this stuff right in XML which means the designs are much more portable and stuff -- XSLT is very flexible -- the only pain in the butt is filling in form element values which I do with _javascript_.I actually wrote a

RE: template reader/parser sort of thing :)

2004-03-01 Thread Brendan Avery
I assume you probably will want to handle the deepest nested tags first before working your way back out to the bottom-most level, in which case a recursive function is probably the best way to handle it.Something along the lines of this maybe: (Please note this function works when you have a

RE: Form Field Submission Casing

2004-03-02 Thread Brendan Avery
Coldfusion is 100% case-insensitive so you wont get the right casing from the form struct.One way to handle it might be to shadow all of your form fields with a hidden input called fields like this: form action="" method=post input name=firstName type=text size=20 / input name=fields

RE: CFID/CFTOKEN newbie question

2004-03-02 Thread Brendan Avery
Here's a _javascript_ function I wrote for you so you can automatically pop the URLToken on all links for a given host.It may do the trick for you.Just include it on every page (works well as a footer include or running on a body tag's onLoad event.) cfoutput script AppendURLTokens('HOST NAME

RE: CFID/CFTOKEN newbie question

2004-03-02 Thread Brendan Avery
Oops I missed an apostrophe in the function call: here's the fix: cfoutput script AppendURLTokens('HOST NAME (I.e.) Domain Name Goes Here','#URLToken#'); /script /cfoutput -Original Message- From: Brendan Avery [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 02, 2004 4:27 PM To: CF

RE: ActionScript Help

2004-03-02 Thread Brendan Avery
Is it possible that one of the kiosk buttons plays something at the end of the movie which is not looped back or stopped, causing the movie simply loops back to the beginning? -Original Message- From: Tim Do [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 02, 2004 12:39 PM To: CF-Talk

RE: ActionScript Help

2004-03-02 Thread Brendan Avery
Also: the following function doesn't appear to run its check every second, it appears to check every minute.Maybe I'm wrong about that, but 6 in any conversion shouldn't be equal to 1 second-- checkMouse = setInterval(whereMouse,6); //look at the mouse position every second I think

RE: FTP client recommendations?

2004-03-04 Thread Brendan Avery
For synching of large site projects I use a REALLY cool program called SynchronEX.Much more reliable than any other Sync feature I've ever used and the reporting and interface is very programmer-friendly. http://www.xellsoft.com/SynchronEX.html --B RENDAN a very -Original Message- From:

RE: Compare List

2004-03-14 Thread Brendan Avery
Compare(ListSort(list1,text),ListSort(list2,text) Boo-yah. == Brendan Avery -- http://www.brendanavery.com == -Original Message- From: Greg Luce [mailto:[EMAIL PROTECTED] Sent: Sunday, March 14, 2004 1:40 PM To: CF-Talk Subject: RE: Compare List You're looking for a match where both

RE: Compare List

2004-03-15 Thread Brendan Avery
to for the sort order? These lists can be in any order. Such as: 1,2,3,4,5 And 3,1,2,5,4 How would you compare these 2 lists using these functions? Greg -Original Message- From: Brendan Avery [mailto:[EMAIL PROTECTED] Sent: Sunday, March 14, 2004 5:29 PM To: CF-Talk Subject: RE: Compare List

RE: Encryption Tag

2004-03-16 Thread Brendan Avery
Hash() is asymmetric -Original Message- From: John Beynon [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 16, 2004 10:02 AM To: CF-Talk Subject: RE: Encryption Tag What about hash() Jb. -Original Message- From: Scott Wilhelm [mailto:[EMAIL PROTECTED] Sent: 16 March 2004 14:55

RE: why I love coldfusion...

2004-03-30 Thread Brendan Avery
-base.And for those of you who don't want to charge your clients less just because the server software costs nothing, you can always pocket the difference for yourself. Brendan avery || [EMAIL PROTECTED] || www.brendanavery.com [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe

RE: [ MSSQL ] which datatype is best for storing web page data

2004-03-31 Thread Brendan Avery
Text prolly.Varchars limit is 8000 chars if I recall. -Original Message- From: Dan Farmer [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 31, 2004 3:28 PM To: CF-Talk Subject: [ MSSQL ] which datatype is best for storing web page data I have a CMS that stores the web page code into a