Re: number format for 0

2001-03-14 Thread Bud
On 3/14/01, Mak Wing Lok penned: sorry that i did not write the problem clearly, it supposed to display whatever number in 999,999,999,999,999,999.99 format as the variable "no" can contains any numeric value, but whenever no = 0, it will show as .00 not 0.00, how could i format it so it display

RE: CF Studio 4.5.2 Memory Leak?

2001-03-14 Thread Philip Arnold - ASP
I'm on NT4 with 128mb at work - and generally it takes about 1.5 days between reboots... I'm on 2000 at home with IE5 and 384Mb, and generally the only time I need to reboot is when I install / uninstall some old S/W - my system is often up for weeks at a time... OK, in Windoze, Memory is

RE: Difference btw Studio 4.0, 4.5 , 5.0

2001-03-14 Thread Philip Arnold - ASP
Does anybody know are there any obsolete tags from Studio 4.0 - 4.5 Or from Studio 4.5 - 5.0?? Erm, CFStudio 5 doesn't exist, not even in Beta... As far as I know, only new tags were added for CFServer 4.5, so CFStudio 4.5 reflects that Philip Arnold Director Certified ColdFusion

RE: XML

2001-03-14 Thread James Maltby
It is not that hard to learn, you just need to understand what it does - whereas html (and to an extent) cfml is used to display information and format it for the end user, XML is all about describing information. It is a well formed language used to structure and describe data. It's real power

RE: XML

2001-03-14 Thread Andy Ewings
Just to add to this As I understand it XML is independent of the "end product". i.e If you build a site using XML it is not "tied in" to HTML in that you could view it via an HTML page or a WAP page etc just by using different XML parsers. Although I gues your XML structure would have

RE: CF Studio 4.5.2 Memory Leak?

2001-03-14 Thread Daniel Lancelot
OK, in Windoze, Memory is NOT Resources... CFStudio is Resource hungry, not Memory hungry You could have a Win98 machine with 1GB RAM and it'd fail as much as a Win98 machine with 65MB WinNT and Win2k both have a much larger resource pool than Win9x/Me, with 2k being the largest of the lot..

RE: XML

2001-03-14 Thread DeVoil, Nick
This is right, but you don't have to use a different *parser* to turn your XML into HTML, WML, etc. You can use XSLT (XML style sheet transformation) with different XSL stylesheets for each target format. The XML can be as complex as you like. Nick -Original Message- From: Andy Ewings

RE: XML

2001-03-14 Thread Andy Ewings
wellyou learn something every day :) -- Andrew Ewings Project Manager Thoughtbubble Ltd http://www.thoughtbubble.net -- United Kingdom

Re: XML

2001-03-14 Thread Paul Johnston
Well... XML is an excellent way of structuring your content into sections. It's not an output language of any sort (for that use CSS or XSLT). It can be very useful as a data interchange language. By specifying a DTD for XML sent between two computers/systems/programs/networks/etc, you can

Re: CFHTTP and creating csv recordset problems...

2001-03-14 Thread Paul Johnston
Note: CFX_secFile (basically same thing) has no limit beyond your current virtual memory. Thanks! But it doesn't help if you're on a shared server and the ISP allow you to use CFX_File though! Paul ~~ Structure your ColdFusion code with

RE: White space

2001-03-14 Thread Philip Arnold - ASP
I have seen some discussion on this list from time to time about management of white space in CF code. Is there a preferred strategy for dealing with it? 3 Schools of thought; 1) Use CFSetting EnableCFOutputOnly and only CFOutput what you need - faster to the browser but heavier on the server

RE: How to pass javascript variable to a cf tag?

2001-03-14 Thread Philip Arnold - ASP
juz a pity that this tag is not what i am looking for. I need to populate from 2 different tables, different columns so i will need 2 cfquery but this tag only allows for 1 cfquery tag. The tag can easily be rewritten to take two separate queries, we had to do that for one job we had, it

Using javascript to create an Undo - the return

2001-03-14 Thread James Maltby
Hi - posted this recently but still no resolution: Have a cf forum we have written, with javascript "Word" like buttons that output html for b, i and u in the input textarea - would like to include an "undo" function with acts like ctrl+Z from the keyboard - in that it will remove either the

RE: Form Fields cleared on Back

2001-03-14 Thread Philip Arnold - ASP
Im going nuts trying to figure this one out, I have a form with about 110 fields (ya i know), there is lots of server side validation, if an input error occurs I CFABORT and give the user a JavaScript back button to go back an correct the input. On some users PC the form gets cleared on

RE: site address for the FAQ? TIA

2001-03-14 Thread Philip Arnold - ASP
There's a link on the front of HouseOfFusion as well - Mike's nice like that g Philip Arnold Director Certified ColdFusion Developer ASP Multimedia Limited T: +44 (0)20 8680 1133 "Websites for the real world" ** This email and

RE: CFQuery Error

2001-03-14 Thread Philip Arnold - ASP
Any idea what this error means? CFQuery Retrieval of cached query failed At a stab, it means that it failed to get a cached version of the query g Seriously though, it looks like the cache has gotten corrupted on that query - re-cache it Philip Arnold Director Certified ColdFusion

Re: Using javascript to create an Undo - the return

2001-03-14 Thread Jon Hall
Try a javascript list. jon - Original Message - From: "James Maltby" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Wednesday, March 14, 2001 8:37 AM Subject: Using javascript to create an Undo - the return Hi - posted this recently but still no resolution: Have a cf forum

Re: Problem calling data from a database

2001-03-14 Thread Bud
On 3/14/01, Hubert Earl penned: Hi, I have a review form which is supposed to submit the request to a review action file to call a single unapproved joke from a joke database for approval or deletion. Instead, the following problems occur: 1. all unapproved jokes appear, except those

RE: Using javascript to create an Undo - the return

2001-03-14 Thread James Maltby
Why would I want to do that when all the best and politest coders are on this list :) J (off to javascript-talk then...) -Original Message- From: Jon Hall [mailto:[EMAIL PROTECTED]] Sent: 14 March 2001 14:05 To: CF-Talk Subject: Re: Using javascript to create an Undo - the return

RE: Using javascript to create an Undo - the return

2001-03-14 Thread DeVoil, Nick
I think you would need to trap every key depression and mouse click while they were in the textarea. The problem is, you would need to know where the text pointer was at any moment, and I don't see how you could do that reliably if they used the mouse to reposition it. Nick -Original

RE: Using javascript to create an Undo - the return

2001-03-14 Thread Daniel Lancelot
only way I can think is to save the form field to a js array every time the user clicks / presses a key... but that could be time consuming to undo if you have to go back one letter at a time... -Original Message- From: DeVoil, Nick [mailto:[EMAIL PROTECTED]] Sent: 14 March 2001 14:11

RE: CF Studio 4.5.2 Memory Leak?

2001-03-14 Thread Richard Kuryk
Cut and paste this in your wordfile, replacing your existing HTML sytanx section. I have created this over time and in no way is it a complete set but when I find stuff that isn't highlighted I add it in. Rich /L3"HTML" Nocase Noquote HTML_LANG Block Comment On = !-- Block Comment Off = --

RE: navigation of records, ie first last next previous

2001-03-14 Thread Evan Lavidor
There's a great custom tag for this in the tag gallery - called cf_prior_next. It's at: http://devex.allaire.com/developer/gallery/info.cfm?ID=CA347445-2830-11D4-AA 9700508B94F380method=Full HTH, Evan -Original Message- From: Michael [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March

RE: Parsing Street Address

2001-03-14 Thread Evan Lavidor
As a start, if you did a Val() statement on either of your examples, it would return the street number (4853). Val() returns the first number in a string. You could then trim the original string based on the length of whatever was returned by the Val(). That's not going to account for people

RE: CF Studio 4.5.2 Memory Leak?

2001-03-14 Thread Daniel Lancelot
-Original Message- From: Richard Kuryk [mailto:[EMAIL PROTECTED]] Sent: 14 March 2001 14:32 To: CF-Talk Subject: RE: CF Studio 4.5.2 Memory Leak? Cut and paste this in your wordfile, replacing your existing HTML sytanx section. I have created this over time and in no way is it a

Re: [Word lists for Ultraedit]

2001-03-14 Thread Alex
www.ultraedit.com Lockie Martin [EMAIL PROTECTED] wrote: Can anyone here please tell me where do you got the CF word lists and syntax highlighting for Ultraedit? Ta -l--- Lockie Martin [EMAIL PROTECTED] http://www.keystone-solutions.com/ http://marquee/ http://www.keystone-support.net PER

RE: Javascript: Tearing my hair out

2001-03-14 Thread Windle, Kevan
Thanks for that Cameron. But I think you may be wrong. You wrote: 2 document.write(document.forms.wheres.wherefield1.name); -- does not exist 3 document.write(document.forms[0].wherefield1.name); -- does not exist Both of these do exist. Try the following code. If you click on the wheres1 check

Re: navigation of records, ie first last next previous

2001-03-14 Thread Mike
Thanks I will give it a try... Michael "Evan Lavidor" [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... There's a great custom tag for this in the tag gallery - called cf_prior_next. It's at:

Capturing a NT User ID

2001-03-14 Thread Gina.M.Shillitani
Is there a simple way to capture the NT user ID for each user that submits a form? We use Novell Netware (my client version is 4.80) on NT. Gina Shillitani [EMAIL PROTECTED] ~~ Structure your ColdFusion code with Fusebox. Get the official book

RE: Form Fields cleared on Back

2001-03-14 Thread Angél Stewart
Please send it to us all..this is something that I, and I would wager several webapplication developers, run into. :-) -Gel -Original Message- From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]] I'm in the midst of working on a "public" version of an editor I wrote which will do all

Evaluate/De problem

2001-03-14 Thread Duane Boudreau
I have a query that is generate with a dynamic name: cfquery name="GetCategory#url.id#" *** /cfquery I'm trying to get the value of the the CategoryID field into a value list. I've tried the following but it keeps erroring out: CFSET CategoryIDList =

SQL 7 to SQL 2000 Cost

2001-03-14 Thread Lee Surma
What does it cost to upgrade? Do you need to upgrade the Internet connector licensee? Where should I purchase? -- ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives:

RE: Capturing a NT User ID

2001-03-14 Thread Garza, Jeff
If this is an intranet, you'll have to turn off anonymous access and give access to Domain Users. IE will automatically submit the user's username to the webserver (this is a default install). Don't know about Netscape? The variable to look at is CGI.AUTH_USER. If this is on an external

RE: Using javascript to create an Undo - the return

2001-03-14 Thread Nathan Stanford
The amount of code to do this would not be an easy task. It is possible but this is a JavaScript Program. If you pay a JavaScript Expert they can do this but I doubt you will get it a affordable cost. My Opinion, Nathan www.cftipsplus.com FREE ColdFusion Tips Weekly e-zine -Original

RE: Form Fields cleared on Back

2001-03-14 Thread kmansel
I am also interested in this application kev -Original Message- From: Angél Stewart [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 14, 2001 7:42 AM To: CF-Talk Subject: RE: Form Fields cleared on Back Please send it to us all..this is something that I, and I would wager several

RE: Capturing a NT User ID

2001-03-14 Thread Wilson, Craig
You can use the CGI.AUTH_USER variable and use the removechars function to trim it down if necessary. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: 14 March 2001 15:18 To: CF-Talk Subject: Capturing a NT User ID Is there a simple way to capture the NT

OT:development for visually impaired?

2001-03-14 Thread mjones
Anyone know how to, or have good information about developing websites for visually impaired users? ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives:

Project Management Poll

2001-03-14 Thread Nathan Stanford
Project Management Don't Use- 0 In House Custom System - 3 MS Project - 1 If you want other categories let me know. Nathan ~~ Structure your ColdFusion code with Fusebox. Get the official book at

Outputting Mac Characters

2001-03-14 Thread Paul Johnston
Is there a tag or something that can parse Mac characters and make them something sensible before outputting them to the screen? I have a whole database full of articles that are all written on a Mac, and I want to output them to the screen as is (there are 3000 of them, and parsing them when

RE: Problem calling data from a database

2001-03-14 Thread David Gassner
I don't know if this is causing all of your problems, but you're missing pound signs around the JokeID value in the OPTION tags. The corrected version: SELECT MULTIPLE NAME="a" SIZE="5" CFOUTPUT QUERY="Review" OPTION VALUE="#JokeID#"#JokeTitle#/OPTION /CFOUTPUT /SELECT I have a review form

RE: Using javascript to create an Undo - the return

2001-03-14 Thread JustinMacCarthy
You should look at design patterns. The command pattern as it is known is the most used pattern for undo/ redo operations. It is used natively in java, but chould be used in a JavaScript lib. Check out: http://www.amazon.co.uk/exec/obidos/ASIN/0201633612/o/qid=984585622/sr=8-1/2

RE: Form Fields cleared on Back

2001-03-14 Thread Philip Arnold - ASP
I am also interested in this application Please send it to us all..this is something that I, and I would wager several webapplication developers, run into. No more "I'm also interested" please - I'll post a URL to it within the next few days Philip Arnold Director Certified ColdFusion

RE: development for visually impaired?

2001-03-14 Thread Martin Sutton
The way I'd go about it is to use Flash with nice large navigation icons with sounds onMouseOver which describe what the link is. I'd also ensure I used complete colour contrast. Using flash you could have the content "read" in a wav file also. I believe mp3 is also supported in Flash 5 so if

RE: Capturing a NT User ID

2001-03-14 Thread Michael Ross
Getting the Novell login on its own with using nt security would be very nice to get...!! [EMAIL PROTECTED] 03/14/01 10:45AM If this is an intranet, you'll have to turn off anonymous access and give access to Domain Users. IE will automatically submit the user's username to the

Re: OT:development for visually impaired?

2001-03-14 Thread Larry C. Lyons
Try these links: http://www.w3.org/TR/WD-WAI-PAGEAUTH/ the W3C's web accessibility guidelines. http://www.cast.org - has a very good web accessibility checker. http://www.webable.com/ http://news.cnet.com/news/0-1005-200-1541412.html

RE: development for visually impaired?

2001-03-14 Thread James Maltby
You need to follow the WAI w3c org guidelines http://www.w3.org/WAI/ - also use betsie http://www.bbc.co.uk/education/betsie/ and bobby http://www.cast.org/bobby/ to check your code. HTH James -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: 14 March 2001

RE: development for visually impaired?

2001-03-14 Thread Douglas Malcolm
Check out the Bobby site; http://www.cast.org/bobby/ djm -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 14, 2001 7:59 AM To: Doug Subject: OT:development for visually impaired? Anyone know how to, or have good information about

RE: Project Management Poll

2001-03-14 Thread Todd Stanley
in house custom system/don't use combo what do you folks use for version control? -Original Message- From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 14, 2001 11:17 AM To: CF-Talk Subject: RE: Project Management Poll Project Management Don't Use

RE: Capturing a NT User ID

2001-03-14 Thread Chris Stoner
If you are running NDS Enabled office with Novell you can use an active x component in IE to view the novell login information (and more). There is also a netscape plugin that ties into Novell NDS to do the same thing which is fine for a controlled environement (Intranet). -- Chris Stoner

Re: development for visually impaired?

2001-03-14 Thread Olivier Gostan
you can use CSS to specify output for braille and other devices. i would not recommend trying to code graphics yourself as different individuals might have different disabilities and already the proper equipment at their disposal. check the w3 rec: http://www.w3.org/TR/CSS-access O- -

RE: CF Studio 4.5.2 Memory Leak?

2001-03-14 Thread Aidan Whitehall
[ snip ] It was the reply to a different thread... -- Aidan Whitehall [EMAIL PROTECTED] Netshopper UK Ltd Advanced Web Solutions Services http://www.netshopperuk.com/ Telephone +44 (01744) 648650 Fax +44 (01744) 648651 ~~ Structure

Partial post/parsed ok/no clue?

2001-03-14 Thread Adrienne H. Cregar
Hello all...have a strange occurrence I hope you can shed some light on. I have a console where my client can add/edit or delete truck listings from their database. On the edit section, I have a .cfm file that pulls the existing data for the record they selected. The data is displayed in form

Clear Held Memory?

2001-03-14 Thread Nathan Stanford
I seem to remember a set of keys you can press to release some memory in CF Studio is this true? and what are these keys? Nathan ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm

RE: Flushing Query Cache

2001-03-14 Thread alistair . davidson
Try cfif IsDefined( "flushcache" ) cfset cachetime = 0 cfelse cfset cachetime = CreateTimespan( 1,0,0,0 ) /cfif cfquery name="qry" cachedwithin="#cachetime#" You have to set the cachetime to zero in order to refresh the query. -Original Message- From: Duane Boudreau

Re: OT:development for visually impaired?

2001-03-14 Thread Dick Applebaum
At 9:59 AM -0600 3/14/01, [EMAIL PROTECTED] wrote: Anyone know how to, or have good information about developing websites for visually impaired users? Another user has suggested Flash... good choice because of its ability to allow the user to dynamically change text sizes, etc. Flash is

Custom Tag

2001-03-14 Thread Nathan Stanford
When in a custom tag how can you reference the query that is located in the callers page... EX: cfquery name="xxx" datasource="qry_y" select a,b,c from y /cfquery cf_MyTag query="xxx" --- MyTag.cfm How can I look at all of the items in the query 'xxx'?

RE: Broken Images / Testing for file existence - JS to the rescue

2001-03-14 Thread ron
I have an application where I list several items on a page and display an image for that item based on a reference number (ie, productnum+.jpg). The database table does not tell me whether there is an image for that item and there are many that do have one. I'd like to display an alternate

Extra carriage returns when writing file?

2001-03-14 Thread Douglas Malcolm
Background: My company uses a javascript file to create faux-banners (really a banner-sized table) that have form elements tying into our articles database. The point is to allow others to simply include the js file in their html, and be able to offer searches against our articles. Simple,

RE: Clear Held Memory?

2001-03-14 Thread Philip Arnold - ASP
I seem to remember a set of keys you can press to release some memory in CF Studio is this true? and what are these keys? Couldn't resist this one... Alt+F4 No, don't try it, it'll close Studio Philip Arnold Director Certified ColdFusion Developer ASP Multimedia Limited T: +44 (0)20 8680

RE: Form Fields cleared on Back

2001-03-14 Thread Philip Arnold - ASP
OK, just so people can look and see what I'm doing http://www.aspmedia.co.uk/CF/_EditForm.zip It's got no error trapping as it's the first version for "public" use, the documentation is in the top of the template, and it's written with SQL Server in mind (for getting new IDs and stuff) - only

error resolving parameter

2001-03-14 Thread Brian Horn
I'm using a Job Bank software from gravyware.com (it's free now without support, although it wasn't when I bought it:( Anyway, a problem starting happening during an insert into the Access database with resolving a parameter. Problem is, I can't get it to happen for me(Local network directly to

RE: Custom Tag

2001-03-14 Thread Ruben Chadien
MyTag.cfm -- CFOUTPUT query="#Attributes.Query#" /CFOUTPUT /Ruben Chadien -Original Message- From: Nathan Stanford [mailto:[EMAIL PROTECTED]] Sent: den 14 mars 2001 18:26 To: CF-Talk Subject: Custom Tag When in a custom tag how can you reference the query that is located

RE: Broken Images / Testing for file existence - JS to the rescue

2001-03-14 Thread Keith C. Ivey
[EMAIL PROTECTED] wrote: Let the client-side box do the work, with JavaScript. Interesting possibility. Of course, that still clutters your server log with 404 errors, which may be a consideration. And it requires additional network traffic, which may slow down the page display. But

Re: Custom Tag

2001-03-14 Thread Bryan Laplante
wrap the Evaluate(attributes.query) function around the query Bryan -- Original Message -- From: Nathan Stanford [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date: Wed, 14 Mar 2001 11:25:30 -0600 When in a custom tag how can you reference the query that

RE: Custom Tag

2001-03-14 Thread Philip Arnold - ASP
When in a custom tag how can you reference the query that is located in the callers page... EX: cfquery name="xxx" datasource="qry_y" select a,b,c from y /cfquery cf_MyTag query="xxx" --- MyTag.cfm How can I look at all of the items in the query

RE: CF Studio 4.5.2 Memory Leak?

2001-03-14 Thread Philip Arnold - ASP
WinNT and Win2k both have a much larger resource pool than Win9x/Me, with 2k being the largest of the lot.. Maybe so, but when I put 256MB extra mem in my 2k box, ""System Slowdown"" stopped being a problem (before after the system had been up/been (heavily) used for a while, system

RE: Custom Tag

2001-03-14 Thread Philip Arnold - ASP
When in a custom tag how can you reference the query that is located in the callers page... Oops, should have read the whole message properly Attributes. if you've specified it as an attribute Caller. if you haven't Philip Arnold Director Certified ColdFusion Developer ASP Multimedia Limited

RE: Using javascript to create an Undo -SOLVED!

2001-03-14 Thread James Maltby
I took a man's advice and went on a javascript mail list (a little scary - not like CF mail lists where everyone is fluffy and huggable) - there a very nice man called "voicebox" sorted my little problem out - so, if anyone wants a working "html" adder (may be handy for update sites or remote

RE: error resolving parameter

2001-03-14 Thread Bryan Love
I've found that often when my clients are getting non-reproducable errors it is due to their browser caching an error page that was fixed some time ago. Have them clear their cache and see what happens. It looks like the code base you are using is pretty antiquated; it would be in your best

RE: Extra carriage returns when writing file?

2001-03-14 Thread Caulfield, Michael
Try using stripCR(): cfif isdefined("FORM.txtArea") cfoutput pre#stripCR(FORM.txtArea)#/pre /cfoutput /cfif cfparam name="FORM.txtArea" default="" cfoutput form action="#CGI.SCRIPT_NAME#" METHOD="POST" textarea

RE: Using javascript to create an Undo -SOLVED!

2001-03-14 Thread McAtee, Malcolm
Can you give me info on the javascript list. TIA malcolm -Original Message- From: James Maltby [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 14, 2001 10:31 AM To: CF-Talk Subject:RE: Using javascript to create an Undo -SOLVED! I took a man's advice and went on

RE: Using javascript to create an Undo -SOLVED!

2001-03-14 Thread James Maltby
I went to many many javascript lists - most were scarily quiet - with maybe one posting per month in the end I found an on-the-ball moderator (voicebox) on www.javascriptcity.com - who helped a lot - sorry not much help, but then again not many user groups are like CFUGs!!! J -Original

RE: Flushing Query Cache

2001-03-14 Thread Bryan Love
This happens to be one of the very few instances I would condone the use of application variables... 1. When the application is first started set an application like this: cfparam name="application.cacheTime" default="#CreateTimeSpan(0,0,60,0)#" (or whatever you want) 2. use this

Re: error resolving parameter

2001-03-14 Thread Bud
On 3/14/01, Brian Horn penned: Here is the code for the form: http://www.financialpro.org/JobBank/enterjobs/jobaddupform.txt Look at this: SELECT name="JobLocation" CFIF #NewRecord# IS "No" CFOUTPUT QUERY="GetJobLocation" option VALUE="#CategoryID#"#LocationName#/option /CFOUTPUT /CFIF Looks

Re: Extra carriage returns when writing file?

2001-03-14 Thread David E. Crawford
If you are writing back to the file using CFFILE, you need to make sure the ADDNEWLINE attribute is set to no. DC - Original Message - From: "Douglas Malcolm" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Wednesday, March 14, 2001 12:35 Subject: Extra carriage returns when

Re: Form Fields cleared on Back

2001-03-14 Thread Joseph Thompson
Somone sent in an "interesting" application to CFHub the other day. It stores the "CGI.HTTP_Referer" value in a session variable so that your applciation can tell when someone has "backed up". It then won't let a user click on any links or re-submit a form. A strange but effective way to keep

CFMail Question

2001-03-14 Thread Chris Dodson
I am creating an online notification board for my Intranet and am wondering what guidelines need to be followed when using cfmail. I could be sending up to 1 emails at a time. ~~ Structure your ColdFusion code with Fusebox. Get the official

Hostcentric concerns?

2001-03-14 Thread Jeff Epstein
We originally set up on Virtualscape, but ever since Hostcentric took over Virtualscape, I've noticed a decline in performance and service. More db errors, fewer answers, longer hold times on the phone, less knowledgable techs on the phone. Has anyone else had the same experience? Is this

RE: RE: error resolving parameter

2001-03-14 Thread Bryan Love
look further down in the select and you'll see that a blank one is created regardless ;) Bryan Love ACP Internet Application Developer [EMAIL PROTECTED] -Original Message- From:

Javascript Back (was Re: Form Fields cleared on Back)

2001-03-14 Thread Jeanne Sarfaty Glazer
Just curious, is there a way to reference the browser's "Back" button to determine whether it has been clicked using Javascript? - - - Jeanne (who wonders why all of her questions on this CF list seem to be about Javascript) From: "Joseph Thompson" [EMAIL PROTECTED] Reply-To: [EMAIL

RE: CFMail Question

2001-03-14 Thread Bryan Love
You will need a VERY powerful cf server and a hefty mail server. Have you ever looked at the CF server's processor during a CFMAIL call? It hits 100% for what seems like a long time. CFMAIL is very processor intensive and should not be used heavily on a production machine. If you plan on

RE: Hostcentric concerns?

2001-03-14 Thread Kelly Matthews
YES YES YES! -Original Message- From: Jeff Epstein [SMTP:[EMAIL PROTECTED]] Sent: Wednesday, March 14, 2001 2:04 PM To: CF-Talk Subject: Hostcentric concerns? We originally set up on Virtualscape, but ever since Hostcentric took over Virtualscape, I've noticed a decline

RE: Extra carriage returns when writing file?

2001-03-14 Thread Douglas Malcolm
Son of a gun - that worked perfectly - thank you! My thought was that StripCR() would remove all of the carriage returns, making my file one long line. Not the case. Does anyone know why? Also, for bonus points, if StripCR() didn't work, I had thought to use some more RegExp to remove

how to perform a variety of searches on a database

2001-03-14 Thread Tim
I have an access database. The users would like to be able to search on any one of the fields. Plus, they would like to search on the fields within a date range, and have one of the fields added up when the results are shown. For example, a user will search the location field for a specific

Somewhat OT: Differences Between JRUN and CF

2001-03-14 Thread Willy Ray
If I'm already using Coldfusion, would there be any compelling reason that I would want to use JRUN as well? What are the differences? Pros? Cons? ~~ Structure your ColdFusion code with Fusebox. Get the official book at

RE: Javascript Back (was Re: Form Fields cleared on Back)

2001-03-14 Thread Top-Link Tech (John Ceci)
Jeanne, In IE atleast I would look into the event. handler and try and do some capturing to figure out what it does when it is clicked, I am pretty sure that you can capture it and do what you want with it... John -Original Message- From: Jeanne Sarfaty Glazer [mailto:[EMAIL

Re: CFMail Question

2001-03-14 Thread W Luke
I'll second that. Sending a mailout in CF to 500 members has caused problems on a shared server at my ISP, timeouts and so on. A dedicated machine will be far more reliable - you also might want to consider Howie's coolfusion.com products (post SE) Will You will need a VERY powerful cf

RE: Evaluate/De problem

2001-03-14 Thread Howarth, Craig (IBK-NY)
Try this: CFSET CategoryIDList = Evaluate("Valuelist(GetCategory#url.id#.Category_ID)") Craig -Original Message- From: Duane Boudreau [SMTP:[EMAIL PROTECTED]] Sent: Wednesday, March 14, 2001 10:43 AM To: CF-Talk Subject: Evaluate/De problem I have a query that is

Re: [Somewhat OT: Differences Between JRUN and CF]

2001-03-14 Thread Alex
Jrun is a java enterprise app server. Its completely different from CF. Reasons to learn Jrun (or java) --marketability "Willy Ray" [EMAIL PROTECTED] wrote: If I'm already using Coldfusion, would there be any compelling reason that I would want to use JRUN as well? What are the differences?

CF_EmbedFields Crashes my server?

2001-03-14 Thread Jay Patton
hello all, I am using the CF_EmbedFields tag in a 3 part form. the first day that I used it everything worked fine. however now when I run that form. (3 days latter with NO changes to the site) my cfserver.exe ends up taking up 95% of the CPU usage (this is running local). has anyone else

Credit card transaction services

2001-03-14 Thread Dan Allison
Is anyone using a payment processing service that integrates well with Cold Fusion? Thanks, Dan ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives:

Re: CFMail Question

2001-03-14 Thread Gordon Burns
At 19:56 14/03/01 - W Luke said I'll second that. Sending a mailout in CF to 500 members has caused problems on a shared server at my ISP, timeouts and so on. A dedicated machine will be far more reliable - you also might want to consider Howie's coolfusion.com products (post SE) We

RE: RE: error resolving parameter

2001-03-14 Thread Bud
On 3/14/01, Bryan Love penned: look further down in the select and you'll see that a blank one is created regardless ;) Oops, missed that. I notice you are submitting an ID. Is joblocation a number field? if so, it's not going to accept a blank value. I would think that would give you a data

Re: CFMail Question

2001-03-14 Thread Jon Hall
Yup, CFMail is The slowest ColdFusion tag. jon - Original Message - From: "Bryan Love" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Wednesday, March 14, 2001 2:32 PM Subject: RE: CFMail Question You will need a VERY powerful cf server and a hefty mail server. Have you

'unknown exception condition' Causing CRASH

2001-03-14 Thread David Berger
For the past 2 days, we've been experiencing Cold Fusion crashes. This is the error in the Application Log: 'unknown exception condition' CodeRuntimeContextImp::executeSQLTagCFQuery::endTag Does anybody know what could cause this? ...and why is it crashing ColdFusion (have to reboot the

Image Maps

2001-03-14 Thread Smith, Daron
I would like to create a drill-down application, with a map of pennsylvania as the selection page. I have the counties image mapped, i would like to pass a url variable for each county. Does anyone have any experience with this or an example that I might look at? Any help would be appreciated.

Application varriables

2001-03-14 Thread C Frederic Valone
I have seen alot of post lately about the "horrid deficincies" of using application variables. If application scoped variables are so "bad" why are they even offered as a solution? I have found that using application scoped variables work fine for the applications I have used them in.

Re: Extra carriage returns when writing file?

2001-03-14 Thread Bud
On 3/14/01, David E. Crawford penned: If you are writing back to the file using CFFILE, you need to make sure the ADDNEWLINE attribute is set to no. Yeah, and that attribute is missing from B.F.'s book. Had me going around for awhile a year or so ago. Ben! LOL -- Bud Schneehagen - Tropical

RE: Credit card transaction services

2001-03-14 Thread Terra Durrant
We use Cybercash and have never had a problem. However, with their acquisition by Network 1 Financial, you may want wait it out and make sure things go ok with Network 1 Financial. I wouldn't think that there would be any problems, but you never know. Terra -Original Message- From:

RE: CFMail Question

2001-03-14 Thread Jeff Britts
Has anyone done a comparison between using the CFMAIL tag vs. writing the file directly to the spool directory? -Original Message- From: Jon Hall [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 14, 2001 3:38 PM To: CF-Talk Subject: Re: CFMail Question Yup, CFMail is The slowest

  1   2   >