Re: RE: Custom Tag w/JS functions

2000-10-27 Thread David Shadovitz
I started this thread, and since then I've looked at a few CF/JS custom tags, such as CF_DoubleBox. Observations: * They are called from the body of a document. * They write HTML directly into the body. * They write JS directly into the body, surrounding it with script/script tags. *

RE: Capitalize First Letter of Each Word

2000-10-27 Thread Jeff Bevill
Rich, My "over complicated" code below (l33t w3rd fixer v1.0) doesn't fail on 1 character. For some reason I still have KR style programming habits, heh. Jeff Bevill -Original Message- From: Rich Wild [mailto:[EMAIL PROTECTED]] Sent: Friday, October 27, 2000 2:10 AM To: CF-Talk

RE: ADDENDUM TO CREATEUUID() HELL

2000-10-27 Thread Steve Martin
Obviously this is an unexpected condition as CreateUUID() tends to work fine for myself and seemingly everyone else. Looks like one for Allaire tech support. -Original Message- From: William J Wheatley [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 26, 2000 20:50 To: CF-Talk

RE: CF 5.0 Bug Vote is Now Open!

2000-10-27 Thread Steve Martin
For future reference. http://www.angryflower.com/bobsqu.gif http://www.angryflower.com/plural.gif -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Friday, October 27, 2000 06:17 To: CF-Talk Subject: RE: CF 5.0 "Bug Vote" is Now Open! I'm going to turn this

OT: .htaccess for IIS?

2000-10-27 Thread Michel Vuijlsteke
I realize this may be off-topic, but I'm looking for a way to manage directory access on IIS with a CFM application. The rub is that the web pages to be protected themselves will be asp and/or standard html (Frontpage Extensions of all things!), so I can't simply plonk an application.cfm in

RE: .htaccess for IIS?

2000-10-27 Thread Neil Clark
Yep, simply use NT challenge response. Should do the trick ;-) N ! --- Neil Clark Senior Web Applications Engineer mcb digital Tel. +44 (0)20 8941 3232 Tel. +44 (0)20 8408 8131 [Direct] http://www.mcbdigital.com ---

RE: .htaccess for IIS?

2000-10-27 Thread Dave Watts
I realize this may be off-topic, but I'm looking for a way to manage directory access on IIS with a CFM application. The rub is that the web pages to be protected themselves will be asp and/or standard html (Frontpage Extensions of all things!), so I can't simply plonk an application.cfm

RE: Capitalize First Letter of Each Word, OT

2000-10-27 Thread Daniel Kemp
Subject: RE: Capitalize First Letter of Each Word Personally I think this should turn into a "Who can come up with the longest, most convoluted, but beautifully artistic way to Capitalize the First Letter of Each Word" competition. Here's my attempt, I'm sure there are much longer sneakier

JSP and CF

2000-10-27 Thread Rob Cawte
Hi All, We have a large CF application, and a need to integrate some JSP with it. Is there currently any way of integrating session management betweent the two? TIA, -Rob Archives:

Regular Expressions in SELECT query

2000-10-27 Thread Bud
Hi all. Got a question for you. Can I use a rerefindnocase in the WHERE statement of a SELECT query? Right now, I'm building them like this? WHERE foo like '#bar #%' -- picks up full word at the beginning of a field or foo like '% #bar# %' -- picks up full word in the middle of a field or foo

Getting/manipulating data for multiple records, multiple tables

2000-10-27 Thread Paul Sinclair
I'm having trouble figuring out how to use a SQL select statement to get data for multiple records from multiple tables and then do some math on each of the individual records for cfoutput. I have a db with results from an annual golf event. There are 3 tables containing the data I need: tblOne

RE: Custom Tag w/JS functions

2000-10-27 Thread Bill Grover
I haven't had any problems with CF code between script tags. I do it a lot. Here are some code samples from the latest pages I wrote. The first one shows how I use a CFIF to determine what javascript lines to return. The 2nd function shows how I use a CF variable as a subscript to

RE: Moving large files w/CRC checking

2000-10-27 Thread Joe Tartaglia
What image format? If it's something common I... might have some freeware to verify it's integrity. Probably TIF. Whatever format is being used by people doing creative work for product packaging, POP displays, trade ads, FSI's, etc. Mac users, no doubt. Otherwise, I believe you'd have to

RE: CF Version Control??

2000-10-27 Thread Raymond K. Camden
Let me add to this that I do a lot of my work solo and I still think version control systems are a must. === Raymond Camden, Cold Fusion Jedi Master for Syntegra (www.syntegra.com) Allaire Certified Instructor and Member of Team

RE: CF_QuerySort-problem (Was: SQL-SORT-Problem in a query !)

2000-10-27 Thread Courtney Payne
Well, you can't do a numeric search on non-numeric values. Umm... I think I'd add a field/column to my result set -- using the QueryAddColumn() -- and, for each row, set this new field to the 'housenumber' field's *numeric* equivalent -- using the QuerySetCell() and Val() functions. Then sort

RE: Getting/manipulating data for multiple records, multiple tables

2000-10-27 Thread Paul Sinclair
Let me reply to my own question (copied in full at the bottom of this message) to try and refine the problem. I've been continuing to work on this and maybe this is a better way to start asking my question: tblOne year player points 1997 john 15 1997 pete

RE: Getting/manipulating data for multiple records, multiple tables

2000-10-27 Thread Andy Ewings
SELECT Player, SUM(Points) FROMtblone GROUP BY Player -- Andrew Ewings Project Manager Thoughtbubble Ltd http://www.thoughtbubble.net -- United Kingdom

Re: Getting/manipulating data for multiple records, multiple tables

2000-10-27 Thread pan
From: "Paul Sinclair" [EMAIL PROTECTED] I'm having trouble figuring out how to use a SQL select statement to get data for multiple records from multiple tables and then do some math on each of the individual records for cfoutput. I have a db with results from an annual golf event. There

RE: Capitalize First Letter of Each Word

2000-10-27 Thread Paul Johnston
Neither does mine! And please note I commented it, so it looks long but is actually only a few lines! Paul -Original Message- From: Jeff Bevill [mailto:[EMAIL PROTECTED]] Sent: 27 October 2000 09:32 To: CF-Talk Subject: RE: Capitalize First Letter of Each Word Rich, My "over

Cybercash or Authorizenet

2000-10-27 Thread Robert Everland
These are my 2 choices what are the good and what are the bad? Robert Everland III Web Developer Dixon Ticonderoga Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/

Find character not in a list (reverse of FindOneOf).

2000-10-27 Thread Michael Gagnon
Hi! Is there a way to ask ColdFusion to look in a variable for any character that is NOT in a list? The oposit of "FindOneOf". (If one of the characters in form.username is not in this list, do this...) CFIF findOneOf("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQURSTUVWXYZ0123456789.-

RE: New Delaware CFUG

2000-10-27 Thread John McKown
Simon, Thanks for the help. WE plan to have the first meeting at out company's offices here in Dover Delaware. Dover is Delaware's capital, which is located centrally in the state. Directions can be found at http://www.decfug.org. Thanks again. John McKown, VP Business Services

RE: Proper formatting of output (capturing carriage returns)?

2000-10-27 Thread Bob Silverberg
Try using the Replace function as follows: cfset dispField = Replace(fieldname,Chr(10),"br","All") Then output dispField instead of fieldname. Bob -Original Message- From: Andy Peterson [mailto:[EMAIL PROTECTED]] Sent: Friday, October 27, 2000 9:16 AM To: CF-Talk Subject: Proper

CF 5 mailing list

2000-10-27 Thread Michael Dinowitz
This is a multi-part message in MIME format. --=_NextPart_000_01EA_01C03FF8.7CBB68B0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Would anyone have any objections to me setting up a seperate CF 5 = mailing list? This way the requests for

Re: CFLOCK HELLLLPPPP

2000-10-27 Thread Chris Norloff
I believe that locking a whole page, or even a bunch of conditional code, is slow. Put read locks around the reads, and carry temporary variables out of them. Then, and only then, put write locks around the writes. See CF Locking Best Practices

RE: .htaccess for IIS?

2000-10-27 Thread Benjamin S. Rogers
Nothing built in. AuthentiX by Flicks (http://www.flicks.com) is probably your best bet. It's a COM object so you can talk to it with CFOBJECT. Benjamin S. Rogers Web Developer, c4.net voice: (508) 240-0051 fax: (508) 240-0057 -Original Message- From: Michel Vuijlsteke [mailto:[EMAIL

RE: Capitalize First Letter of Each Word

2000-10-27 Thread Rich Wild
Ok, I think we have a winner. James Lawrence from Freeserve ([EMAIL PROTECTED]) submitted a little JavaScript that does the job well on the client side. This was the Its only a winner if Javascript is turned on. :) --- Rich Wild Senior Web

RE: Cybercash or Authorizenet

2000-10-27 Thread Benjamin S. Rogers
I haven't run CyberCash in the past few years and I've heard that they've made some substantial improvements to the application and the underlying architecture, but we had some serious problems with the application on the server side. It was an incredible resource hog, prone to frequent crashes.

Re: Find character not in a list (reverse of FindOneOf).

2000-10-27 Thread Deanna L. Schneider
Just do a listgetat() function. If it returns zero, it wasn't in the list. -d Deanna Schneider Interactive Media Developer UWEX Cooperative Extension Electronic Publishing Group 103 Extension Bldg 432 N. Lake Street Madison, WI

Re: Find character not in a list (reverse of FindOneOf).

2000-10-27 Thread Deanna L. Schneider
erlistfind() function I mean. -d Deanna Schneider Interactive Media Developer UWEX Cooperative Extension Electronic Publishing Group 103 Extension Bldg 432 N. Lake Street Madison, WI 53706 (608) 265-7923

RE: CF 5 mailing list

2000-10-27 Thread Stephen Moretti
Would anyone have any objections to me setting up a seperate CF 5 = mailing list? This way the requests for features and bug fixes can be = centralized rather than mixed into the other CF-Talk posts. Nope.. Probably a good idea. What with the changes in architecture due for CF5 it will

RE: CF 5.0 Bug Vote is Now Open!

2000-10-27 Thread Jeremy Allen
-Original Message- From: Scott, Andrew [mailto:[EMAIL PROTECTED]] Sent: Friday, October 27, 2000 12:56 AM To: CF-Talk Subject: RE: CF 5.0 "Bug Vote" is Now Open! 1) Hiding code: I mean lets take a scenario like this! I have a server, totally secured behind a firewall, anything below

Re: CF 5 mailing list

2000-10-27 Thread J.Milks
Sounds good Mike. Jim - Original Message - From: "Stephen Moretti" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Friday, October 27, 2000 9:59 AM Subject: RE: CF 5 mailing list Would anyone have any objections to me setting up a seperate CF 5 = mailing list? This way the

Ceiling on # of collections in Verity?

2000-10-27 Thread J.Milks
This is a multi-part message in MIME format. --=_NextPart_000_0077_01C03FFF.70AD7480 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi all, Anyone know if verity will explode when a certain number of collections = is reached? Or am I

OT: Javscript

2000-10-27 Thread Kevin Schmidt
I can't remember how to determine the value of a checked radio button and my wonderful book from O'reilly ain't helping. Kevin Schmidt Internet Services Director PWB Integrated Marketing and Communications Office: 734.995.5000 Mobile: 734.649.4843

RE: Javscript

2000-10-27 Thread Neil Clark
Any JS q's simply visit www.irt.org the article below will tell you all you need to know about js and radio buttons http://tech.irt.org/articles/js027/index.htm ! --- Neil Clark Senior Web Applications Engineer mcb digital Tel. +44 (0)20 8941 3232 Tel. +44

RE: Javascript

2000-10-27 Thread Dave Watts
I can't remember how to determine the value of a checked radio button and my wonderful book from O'reilly ain't helping. That's because you're not reading it right! Just kidding. You'll need to loop through all of the radio buttons with the same name, and find out which is checked. Here's an

RE: Javscript

2000-10-27 Thread Hayes, David
document.formName.elementName[i].value If you don't know which one is checked, you'll have to loop through them: for (i=0;idocument.formName.elementName.length){ if (document.formName.elementName[i].checked) alert(document.formName.elementName[i].value); } -Original

RE: Javscript

2000-10-27 Thread Nathan Stanford
CheckBox Name is MyCheckBox1: input type="checkbox" name="MyCheckBox1" value="ColdFusion Rules" ColdFusionbr Submitted value is #MyCheckBox1# __ Nathan Stanford ColdFusion Tips Plus [EMAIL PROTECTED]

RE: Capitalize First Letter of Each Word

2000-10-27 Thread John McKown
LOL... Good point. :) John McKown, VP Business Services Delaware.Net, Inc. 30 Old Rudnick Lane, Suite 200 Dover, DE 19901 email: [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] phone: 302-736-5515 fax: 302-736-5945 icq: 1495432 -Original Message- From: Rich Wild [mailto:[EMAIL

RE: .htaccess for IIS?

2000-10-27 Thread DSJ
Michel, There's really no way for Cold Fusion to protect directories. You can get it to protect individual .cfm files based on the referrer tag, like this... CFIF CGI.HTTP_REFERER DOES NOT CONTAIN "yourdomain.com" CFLOCATION URL="http://www.yourdomain.com" /CFIF ...but that's about the extent

Re: Javscript

2000-10-27 Thread Kevin Schmidt
Thanks for the wide range of feedback everyone! Problem solved! - Original Message - From: "Nathan Stanford" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Friday, October 27, 2000 9:38 AM Subject: RE: Javscript CheckBox Name is MyCheckBox1: input type="checkbox"

RE: Javscript

2000-10-27 Thread Nathan Stanford
Sorry, Not JavaScript I know. Here is a answer: SCRIPT LANGUAGE="JavaScript" !-- Begin var radio_selection="0"; function radioButtons() { if (radio_selection=="0") alert("\nYou must check one of the radio buttons."); else { return true; } } // End -- /SCRIPT /head body

RE: .htaccess for IIS?

2000-10-27 Thread Michel Vuijlsteke
Thanks, this was exactly what I needed. We had a colleague all raring to go to program his own ISAPI filter to handle that, but since the product exists, there's no real need to re-invent the wheel :) Thanks everyone. Michel Vuijlsteke -Original Message- From: DSJ [mailto:[EMAIL

RE: outer join syntax

2000-10-27 Thread Peter J. MacDonald
Alex, In your WHERE Clause you need to add (+) SELECT A.ITEM1, B.ITEM2 FROM TABLEA A, TABLEB B WHERE A.ITEM1 = B.ITEM1 (+) This will return all items from A whether or not a join exists in B. Pete -Original Message- From: Alex [mailto:[EMAIL

scheduled event

2000-10-27 Thread Peter Benoit
I'd like to make a scheduled email event, like a reminder to send me a message a determined number of times, then stop forever. I have the feeling I might be able to do some or all of this in CF, but I'd like the opinions of those that know more than I first. Thanks, Pete

RE: CF_QuerySort-problem (Was: SQL-SORT-Problem in a query !)

2000-10-27 Thread mherbene
You might see if one of the other sort tags available at allaire would handle your content. -Original Message- From: CF-Talk [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 26, 2000 5:21 PM To: CF-Talk Subject: CF_QuerySort-problem (Was: SQL-SORT-Problem in a query !) o.k. I had a

CFENCODE

2000-10-27 Thread Neil Clark
sorry everyone, I deleted the thread for using CFENCODE. I have a DIR and I want to encrypt all of the files in it, but I am having little success... anyone? N ! --- Neil Clark Senior Web Applications Engineer mcb digital Tel. +44 (0)20 8941 3232 Tel. +44

RE: HTML Editor

2000-10-27 Thread Neil Clark
They already have one in Spectra!!!. do a search on the Tag Gallery.. N ! --- Neil Clark Senior Web Applications Engineer mcb digital Tel. +44 (0)20 8941 3232 Tel. +44 (0)20 8408 8131 [Direct] http://www.mcbdigital.com ---

RE: CF 5.0 Bug Vote is Now Open!

2000-10-27 Thread Peter J. MacDonald
NASA does not have to make money, that is why we the taxpayer fund them. Allaire does have to make money and report that to there stock holders, if they do not make money they will not get more money to fix the product. Then we are all out of the CF Business. Pete -Original

RE: scheduled event

2000-10-27 Thread Simon Horwith
take a look at the scheduler in CF Administrator, and at the documentation for cfschedule. ~Simon -Original Message- From: Peter Benoit [mailto:[EMAIL PROTECTED]] Sent: Friday, October 27, 2000 11:43 AM To: CF-Talk Subject: scheduled event I'd like to make a scheduled email event,

RE: Moving large files w/CRC checking

2000-10-27 Thread Gavin Myers
Probably TIF. Whatever format is being used by people doing creative work for product packaging, POP displays, trade ads, FSI's, etc. Mac users, no doubt. I'd assume that would be like: AI, PSD, EPS and just about anything else cf_Patented*shrug*/cf_Patented

SP2 Question

2000-10-27 Thread cr.alvarado
Someone had mentioned earlier that SP2 for WinNT fixed some load problems. does anyone know if it fixes the LOCATION CODE 25 and 26 errors? -chris.alvarado __ Do You Yahoo!? Yahoo! Messenger - Talk while you surf! It's FREE. http://im.yahoo.com/

Power of 3

2000-10-27 Thread Jon Hall
Anyone have an idea on how to check to see if a value is a power of 3? I have a loop that needs to fire an event at every power of three that it hits and I am having problems getting my brain around how I need to do this. My first thoughts are to have a loopcounter and each time around the

RE: Power of 3

2000-10-27 Thread Simon Horwith
CFIF yourvariable MOD 3 IS 0 ~Simon -Original Message- From: Jon Hall [mailto:[EMAIL PROTECTED]] Sent: Friday, October 27, 2000 12:36 PM To: CF-Talk Subject: Power of 3 Anyone have an idea on how to check to see if a value is a power of 3? I have a loop that needs to fire an event at

Re: scheduled event

2000-10-27 Thread Jon Hall
The scheduler in the CF server administration makes this very easy. All you have to do is tell it what template you want run, at what time, and how often. If you do not have access to the server, cfschedule will do the same thing. jon - Original Message - From: "Peter Benoit" [EMAIL

Re: HTML Editor

2000-10-27 Thread Mary_Baotic
We use eWebEditPro from Ektron. It's expensive, but they have tags that integrate into spectra and replace the cfa_htmlEditor that is broken. Mary Archives:

CFTRY in Application.cfm?

2000-10-27 Thread Chris Norloff
Is this reasonable, feasible, or ridiculous? Put CFTRY in Application.cfm and put CFCATCH, /CFCATCH and /CFTRY in OnRequestEnd.cfm to catch errors from any page in that part of the application? thanks, Chris Norloff

RE: HTML Editor

2000-10-27 Thread Mary_Baotic
David, It also runs on Netscape via a plugin. That is one of the reasons we chose it. Mary "David

RE: Power of 3

2000-10-27 Thread lsellers
Anyone have an idea on how to check to see if a value is a power of 3? Umm. Take it's cubed root? See if the fraction is other than 0? --min Archives:

RE: Power of 3

2000-10-27 Thread Courtney Payne
cfset nextPower = 3 cfloop from=1 to=#whatever# index="i" cfif i EQ nextPower ... your code to be executed only on every 3rd power ... cfset nextPower = (nextPower * 3) /cfif /cfloop Courtney E. Payne, Developer Fig Leaf Software "We've got you

RE: Power of 3

2000-10-27 Thread mherbene
It's not very elegant, but the most efficient method (assuming it's always 3 that you care about) might be to put all the values you care about into a list in the application or request scope and do a listfind. You can't have that many entries before you hit the CF biggest-number limit.

RE: Power of 3

2000-10-27 Thread Gavin Myers
would this work: CFSET x = randrange(3, 10)The random number is: CFOUTPUT #x# BR CFIF x MOD 3 IS 0 CFSET x = x / 3 went one stage: #x# br CFIF x MOD 3 IS 0 CFSET x = x / 3 went two stages: #x# br CFIF x MOD 3 IS 0 or x eq 1 a

RE: Find character not in a list (reverse of FindOneOf).

2000-10-27 Thread Steve Martin
It's gonna be a little more extensive than that. The scenario is that we have a variable which contains n characters and a list which contains m elements. We need a function which returns true if one of the characters in the string does not occur in the list. For this we will have to loop over

RE: Power of 3

2000-10-27 Thread Steve Martin
6 mod 3 is 0 as well Simon. -Original Message- From: Simon Horwith [mailto:[EMAIL PROTECTED]] Sent: Friday, October 27, 2000 17:47 To: CF-Talk Subject: RE: Power of 3 CFIF yourvariable MOD 3 IS 0 ~Simon -Original Message- From: Jon Hall [mailto:[EMAIL PROTECTED]]

Re: CFTRY in Application.cfm?

2000-10-27 Thread John Cummings
The application.cfm will throw an error if you do it this way. - Original Message - From: "Chris Norloff" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Friday, October 27, 2000 12:51 PM Subject: CFTRY in Application.cfm? Is this reasonable, feasible, or ridiculous? Put

RE: Power of 3

2000-10-27 Thread David Gassner
Here's another entry: cfset Value="81" cfset compare="3" cfset isPower=false cfloop condition="(value gte compare)" cfif value is Compare cfset isPower = true cfbreak cfelse cfset compare = compare * 3 /cfif /cfloop cfoutput#isPower#/CFOUTPUT -Original Message-

RE: HTML Editor

2000-10-27 Thread David Gassner
Ah, thanks for the correction! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, October 27, 2000 9:51 AM To: CF-Talk Subject: RE: HTML Editor David, It also runs on Netscape via a plugin. That is one of the reasons we chose it. Mary

RE: Advanced SQL Question

2000-10-27 Thread Peter J. MacDonald
Yes, it is easy with oracle. If you have oracle client or use access to link to the DB but in both cases the DB being queried needs to be listening to the network. Pete -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]

Re: HTML Editor

2000-10-27 Thread Deepak Agarwal
I have tried both the Html_AreaOne from iautomated.com, The File/Image upload tool is really bad. It takes around 1 minute to upload a 10 KB gif file first of all the file upload form itself takes a minute to load!!! About the eWebEditPro, I have the trial version, everything seems to fine with

RE: CFTRY in Application.cfm?

2000-10-27 Thread mherbene
Sadly, the compiler requires CFTRY /CFTRY to be in the same file. -Original Message- From: Chris Norloff [mailto:[EMAIL PROTECTED]] Sent: Friday, October 27, 2000 12:51 PM To: CF-Talk Subject: CFTRY in Application.cfm? Is this reasonable, feasible, or ridiculous? Put CFTRY in

RE: Power of 3

2000-10-27 Thread Simon Horwith
well, if you want to know whether or not the dividend of a number by 3 is also evenly dividable by 3, then yes. if you just want to know if a number is divisible by 3, you just need one "number MOD 3 IS 0" if statement. I don't know why you'd want to know if the number of times a number is

RE: Find character not in a list (reverse of FindOneOf).

2000-10-27 Thread David Gassner
Change this line: cfif not ListFind(variables.SomeList, i) to: cfif not ListFind(variables.SomeList, Mid(FORM.Username, i, 1)) Otherwise you're looking for the numeric index in the looping sequence, not the equivalent character in the form variable. David -Original Message-

RE: Power of 3

2000-10-27 Thread Simon Horwith
Oh, he's looking for exponential values. excuse my absent mindedness. he's looking for cubes. I need a cup of coffeeit's been one of those days. ~Simon -Original Message- From: Steve Martin [mailto:[EMAIL PROTECTED]] Sent: Friday, October 27, 2000 1:06 PM To: CF-Talk Subject: RE:

RE: CFTRY in Application.cfm?

2000-10-27 Thread Dave Watts
Is this reasonable, feasible, or ridiculous? Put CFTRY in Application.cfm and put CFCATCH, /CFCATCH and /CFTRY in OnRequestEnd.cfm to catch errors from any page in that part of the application? It's not the approach you want to use, and it won't work in any case. CFTRY and CFCATCH allow

RE: Advanced SQL Question

2000-10-27 Thread Chris Williams
Yes, its easy with Sql Server as well -Original Message- From: Peter J. MacDonald [mailto:[EMAIL PROTECTED]] Sent: Friday, October 27, 2000 10:12 AM To: CF-Talk Subject: RE: Advanced SQL Question Yes, it is easy with oracle. If you have oracle client or use access to link to the DB

RE: Power of 3

2000-10-27 Thread Simon Horwith
in that case, I'd have to go with Courtney on this one. you could do a "3 EXP counter" comparison, too (using her logic structure). ~Simon -Original Message- From: Steve Martin [mailto:[EMAIL PROTECTED]] Sent: Friday, October 27, 2000 1:06 PM To: CF-Talk Subject: RE: Power of 3 6 mod

Null in Access

2000-10-27 Thread Robert Everland
Ok I made a field in Access after I had already been inputting records into the database. It is gonna be a yes or no field (text field) but what I am finding out is I can't do a query on it as length of zero, Null , 'NULL', anything nothing will come up. If I search for fields that

Re: Power of 3

2000-10-27 Thread Jon Hall
Thanks for all the responses guys! This is the one that struck me as best...why do it dynamically when all I need is the power of 3! thanks! ...first Cold Fusion...then the World! jon - Original Message - From: [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Friday, October 27,

RE: Power of 3

2000-10-27 Thread Gavin Myers
I guess you could run a loop and keep dividing by 3 until the final number is either 1 or has a decimal Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe:

RE: HTML Editor

2000-10-27 Thread Benjamin S. Rogers
Most of the solutions out there (especially the ColdFusion ones) are all based on the MSHTML editor. Information developing applications using this component can be found here: http://msdn.microsoft.com/workshop/browser/overview/editing.asp Here's a list of the most popular ones that I've seen

RE: Power of 3

2000-10-27 Thread Nathan Stanford
Okay, Okay, Quick Question can you give us a hint as to why you want this? __ Nathan Stanford ColdFusion Tips Plus [EMAIL PROTECTED] www.cftipsplus.com

RE: Power of 3

2000-10-27 Thread lsellers
Anyone have an idea on how to check to see if a value is a power of 3? Umm. Take it's cubed root? See if the fraction is other than 0? --min Notcing a few posts go by today, I thought I'd expand by saying that _IF_ you know the upper limit to these number then the best thing to do is as

OLAP Cube connect through CF with mdx

2000-10-27 Thread Edward Peloke
Does anyone know how to query an olap cube using mdx within Cold Fusion? I can get to the cube but do not get any output. THanks, Eddie Archives:

RE: Power of 3

2000-10-27 Thread Courtney Payne
Yahh.. :-) Courtney E. Payne, Developer Fig Leaf Software "We've got you covered" [EMAIL PROTECTED] www.figleaf.com -Original Message- From: Nathan Stanford [mailto:[EMAIL PROTECTED]] Sent: Friday, October 27, 2000 2:10 PM To: CF-Talk Subject: RE: Power of 3 Okay, Okay,

Re: Power of 3

2000-10-27 Thread tom muck
Since everyone else has taken a stab at it, this is how I would do it: CFIF Not (ListFind("3,9,27,81,243,729,2187,6561,19683,59049,177147,531441,1594323,4782969 ",ToString(myVariable)) There aren't that many powers of three, so I think it would be quicker to pick it out of a list. tom -

OT:Oracle Error Code = 3113 and 3114

2000-10-27 Thread Mark W. Breneman
Any one seen an Oracle Error Code = 3113 or 3114? Anyidea how to fix? Mark W. Breneman -Cold Fusion Developer -Network Administrator Vivid Media [EMAIL PROTECTED] www.vividmedia.com 608.270.9770

RE: Power of 3

2000-10-27 Thread Nathan Stanford
Here it goes (I started with David Gassner's code and here is what I have.) !--- cfif isdefined("form.power")cfset power=#form.power#cfelsecfset power=3/cfif cfif isdefined("form.from")cfset from=#form.from#cfelsecfset from=1/cfif cfif isdefined("form.to")cfset to=#form.to#cfelsecfset

ALLAIRE HELP!

2000-10-27 Thread William J Wheatley
This type of error will most likely occur when the server running ColdFusion is low on memory and/or system resources. If you continue to experience this error in a reproducible fashion you should contact Allaire technical support. The error occurred while processing an element with a general

Re: Power of 3

2000-10-27 Thread patrick
I think CF has a logarithm function among its math functions. To find out if a number x (x0) is a power of a number y (y1), you just have to check that the result of log(x)/log(y) is an integer; PatNN -- Original Message -- From: "Jon Hall" [EMAIL

My attempt to install Cold Fusion Express on a RAQ4

2000-10-27 Thread Greg
In case anyone else is looking at install CF 4.5.1 Express for Linux on a RAQ4... I tried to do a straight install and everything appeared to go well. Tested a couple of CF pages and that worked. Then I checked out some of our hosted sites to make sure all was well with the world and it

Re: CF 5.0 Bug Vote is Now Open!

2000-10-27 Thread pan
From: "Owens, Howard" [EMAIL PROTECTED] Priority 0, errors that I find. (Not superseding the above list, rather supersetting it.) Well, yeah ... But I've found that no matter how hard I try and plan and test, invariably a user thinks of some way to use an application that I hadn't

RE: Power of 3

2000-10-27 Thread Bob Silverberg
I don't believe that a cubed root would solve his problem, but it's easy to do one in CF. Just remember (from your high school math days) that the cubed root of a number is the same as that number raised to 1/3. In CF - number cubed: cfset x = number ^ 3 - cube root of number cfset x =

RE: Oracle Error Code = 3113 and 3114

2000-10-27 Thread mherbene
most likely a networking problem; these are variants of " help, i can't find the server". -Original Message- From: Mark W. Breneman [mailto:[EMAIL PROTECTED]] Sent: Friday, October 27, 2000 2:48 PM To: CF-Talk Subject: OT:Oracle Error Code = 3113 and 3114 Any one seen an Oracle Error

RE: Find character not in a list (reverse of FindOneOf).

2000-10-27 Thread Steve Bernard
I'm guessing from your example code that you need to use REFind[NoCase](). An RE is much more efficient in terms of programming time, readability, and execution efficiency than a set of nested loops. My example lets you know if there are any characters besides A-Z and 0-9, case insensitive. The

RE: Power of 3

2000-10-27 Thread Nathan Stanford
According to Coldfusion when you test this is what is output cfset x = 9 ^ (1/3) cfoutput 9 ^ (1/3) = #x#br /cfoutput OUTPUT: 9 ^ (1/3) = 2.08008382305 3 x 3 = 9 __ Nathan Stanford ColdFusion Tips Plus [EMAIL

RE: Power of 3

2000-10-27 Thread Dan G. Switzer, II
Nathan, I think you're a little off in your interpretation. 3 ^ 3 = 27 ( 3 x 3 = 9, 9 x 3 = 27) 27 ^ (1/3) = 3 - Dan -Original Message- From: Nathan Stanford [mailto:[EMAIL PROTECTED]] Sent: Friday, October 27, 2000 4:17 PM To: CF-Talk Subject: RE: Power of 3 According to

RE: CF_QuerySort-problem (Was: SQL-SORT-Problem in a query !)

2000-10-27 Thread Peter J. MacDonald
The reason is that 93-94 and 101B can not be turned into numbers. The tag is probably suppose to take VARCHAR columns and make them into numeric columns only if the value of the column is a number(i.e. no A-Z or special characters. Pete -Original Message-

CFCRYPT/CFENCODE... please help!!!

2000-10-27 Thread Mike Amburn
i cannot get the following command to work and there is no documentation for using wildcards with the recursive attribute. -- cfencode c:\encodeTest\folder\*.cfm /r /v "2" it should recurse through the folder and encrypt only CF pages for CF 4.5. PLEASE HELP?!?!?! -mike

RE: CFCRYPT/CFENCODE... please help!!!

2000-10-27 Thread Jaime Garza
cd \b2b\src\site c:\cfusion\bin\cfencode *.cfm /r /h "Copyright (c) 2000, Celosis, Inc." /v "1" This is what I use in my batch files. Please note that I cd to the directory I want to do first. This CF 4.5 professional Jaime Garza Director of Development Celosis, Inc. [EMAIL PROTECTED]

  1   2   >