Re: Suppressing Repeating Groups in a Query

2000-10-27 Thread Dan Blickensderfer
Sam, You could do this with groups example below. Dan select * from tablename order by field1, field2, field3 #field1##field2# #field3# - Original Message - From: "sam komolafe" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Cc: "sam komolafe" <[EMAI

Re: Suppressing Repeating Groups in a Query

2000-10-27 Thread Bud
On 10/27/00, John Cummings penned: >Or as Brian said, just use SELECT DISTINCT FROM XXX That won't work. 1DN12California 1DN12Oregon That will be read as 2 DISTINCT records because the states don't match. Even if it didn't, it looks like Sam wants all record returned, just doe

Re: OLEDB CreateDate Problem

2000-10-27 Thread Kwang Suh
You are using ODBC date formats for OLE DB, which does not support ODBC date formats. You must use the native DB syntax for dates... - Original Message - From: "Randy Zeitman" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, October 27, 2000 9:38 PM Subject: OLEDB Cre

OLEDB CreateDate Problem

2000-10-27 Thread Randy Zeitman
After spending some time on this I've decided to ask help of the list: I was using the following to update my ODBC database without a hitch: UPDATE testdate set aucdate = #myDate# where dID = 1 But when I switched to OLE DB I get the following error - with or wi

RE: Calling custom tags from within CFSCRIPT?

2000-10-27 Thread Peter Theobald
TIAS: That's going to be a new favorite acronym of mine. No offense to everyone trying to learn here, but alot of questions asked could have been answered by 3 lines of test code. TIAS :-) At 09:14 AM 10/26/00 -0400, Simon Horwith wrote: >try it and see!! > >-Original Message- >From: R

RE: Suppressing Repeating Groups in a Query

2000-10-27 Thread David Gassner
No apologies required...but I love being right once in awhile!!! :))) > My apologies Dave. This is what you get when you quickly scan the mail. > You are correct, I am wrong. > > In cases like this, I defer to the person who is correct and > reply from the > corner with a quiet "D'oh!" > > :)

Re: Suppressing Repeating Groups in a Query

2000-10-27 Thread John Cummings
My apologies Dave. This is what you get when you quickly scan the mail. You are correct, I am wrong. In cases like this, I defer to the person who is correct and reply from the corner with a quiet "D'oh!" :) - Original Message - From: "David Gassner" <[EMAIL PROTECTED]> To: "CF-Talk"

RE: Suppressing Repeating Groups in a Query

2000-10-27 Thread David Gassner
I don't see how Distinct would work in this case. If any value in a record is unique, you'll get a record. The request was to suppress output of the repeating fields in columns 1 and 2 where a 3rd column's value changes on each record. If the 3rd column is unique in each record, you'll need to

Excel and number fields that should be text

2000-10-27 Thread Joe Hansen
Hi, I give up... I have a excel file that has some fields with text, and others that have numbers that need to be treated as text. I created the xls file using excel 2000 and set all the fields to text and saved it as a 5.0 xls file, after creating the name for the internal table. I created

Re: Suppressing Repeating Groups in a Query

2000-10-27 Thread John Cummings
Or as Brian said, just use SELECT DISTINCT FROM XXX - Original Message - From: "David Gassner" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, October 27, 2000 8:56 PM Subject: RE: Suppressing Repeating Groups in a Query > Sam, track the current value of the repeating

Re: CFINCLUDE Problem

2000-10-27 Thread John Cummings
Where is the "Templates" folder in relation to the directory that the calling file is in? For example, if your index.cfm file is the "calling" template, and it is in say, C:\DOCS - and the templates.cfm file is in C:\DOCS\TEMPLATES then you would need to include this path information in the call.

Re: Private project..

2000-10-27 Thread Anuj Gakhar
hey i have been doin cf for the last 6 months and now getting heavily into it i have developed lots of projects so if u feel like contact me [EMAIL PROTECTED] [EMAIL PROTECTED] Anuj Gakhar BCA, MCSE 282-a, Aggar Nagar, Ludhiana(141004) India 91-161-460166 [EMAIL PROTECTED]

RE: Suppressing Repeating Groups in a Query

2000-10-27 Thread David Gassner
Sam, track the current value of the repeating field in a local variable; on each loop, check whether the repeating field value has changed, and react accordingly: #myquery.id#myquery.field2 #myquery.statename# > -Original Message---

Re: OT Dreamweaver CF Objects

2000-10-27 Thread Tom Muck
Try http://www.macromedia.com/exchange You'll have to do a search after you get to the site. tom - Original Message - From: "Matt Fuller" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, October 27, 2000 8:18 PM Subject: OT Dreamweaver CF Objects > I searched all ar

OT Dreamweaver CF Objects

2000-10-27 Thread Matt Fuller
I searched all around www.allaire.com and www.macromedia.com to find CF objects for Dreamweaver. I saw the announcement of these objects on the allaire site anyway, this pages just sent me to the macro. site and I could not find them. Does anyone know where I could find them? A link would be

Re: Multi-table inserts & updates

2000-10-27 Thread David Shadovitz
John, I agree with your concerns. In my Option 2, I pass the parent table info (not yet inserted into the db) to the 2nd page. I gather all of the child table info into a list for each field. Then I do all the inserts within a CFTRANSACTION: Let me know what you discover. -David O

Re: HTML Editor

2000-10-27 Thread Deepak Agarwal
The HTML Tag in Spectra has lots of bugs. Allaire has acknowledged about it. They are working to fix the problem in next release of Spectra. Deepak 703.633.4257 - Original Message - From: "Neil Clark" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, October 27, 2000 12:

CFINCLUDE Problem

2000-10-27 Thread S R
Hi, I have an index.cfm page in my websites root folder and I'm trying to use a to call a file within a folder called 'Templates' but it is not working. It works if the file I am trying to reference is in the same place as the Index.cfm file but when I put it in this 'Templates' folder, my b

Re: Power of 3

2000-10-27 Thread David Shadovitz
Let's ask Damon for an IsPowerOfThree function in SP3. -David On Fri, 27 Oct 2000 12:36:25 -0400 "Jon Hall" <[EMAIL PROTECTED]> writes: > Anyone have an idea on how to check to see if a value is a power of > 3? YOU'RE PAYING TOO MU

database audit

2000-10-27 Thread Alex
anyone know of CF code(custom_tag) that would log all changes to a database? Get free email and a permanent address at http://www.netaddress.com/?N=1

Re: Suppressing Repeating Groups in a Query

2000-10-27 Thread Brian bouldernet
DISTINCT - Original Message - From: sam komolafe <[EMAIL PROTECTED]> To: CF-Talk <[EMAIL PROTECTED]> Cc: sam komolafe <[EMAIL PROTECTED]> Sent: Friday, October 27, 2000 3:06 PM Subject: Suppressing Repeating Groups in a Query > Hi guys, > > How do you suppress repeating groups in a query

automated response

2000-10-27 Thread peter
I will be out of the office from Monday 10/30/00 to Friday 11/3/00. I will be returning to work on Monday 11/6/00. I will reply to your message at that time. -Peter Amiri Amiri Industries, Inc. Arch

RE: DateTime Stamp Problem

2000-10-27 Thread Jaime Garza
Oh! those! you don't need them. {ts is an ODBC escape secuence that makes the access ODBC driver to properly format the date to whatever they need to. there is {fn, {sp, etc. In fact, there is a {fn Now()} that you could use. I deal with access and oracle and SQL server so I use only escape s

RE: DateTime Stamp Problem

2000-10-27 Thread [BOXoFUSES] Michael Slatoff
CreateODBDateTime will put in ' inside the {ts...} what we are talking about is the ones on the outside of the {ts...} Micahel At 03:58 PM 10/27/00, you wrote: >CreateODBCDateTime puts the apostrophes by itself. That is the prob. > > > > > > -Original Message- > > From: Chris Johnson [

Suppressing Repeating Groups in a Query

2000-10-27 Thread sam komolafe
Hi guys, How do you suppress repeating groups in a query? e.g. What I Have: 1DN12California 1DN12Oregon 5DQ46Utah 5DQ46New York 9DZ09 Texas What I Want: 1DN12California Oregon 5DQ46 Utah

RE: DateTime Stamp Problem

2000-10-27 Thread Jaime Garza
CreateODBCDateTime puts the apostrophes by itself. That is the prob. > -Original Message- > From: Chris Johnson [mailto:[EMAIL PROTECTED]] > Sent: Friday, October 27, 2000 3:10 PM > To: CF-Talk > Subject: DateTime Stamp Problem > > > I have a access database and I can't get the valu

RE: DateTime Stamp Problem

2000-10-27 Thread Chris Williams
The best way to store the data is in a date formated column. Otherwise, later on when you goto perform a datediff statement you will need to convert all of the data from the columns and there is no real way at that point to ensure the data will not create and error if the conversion does not go w

Re: DateTime Stamp Problem

2000-10-27 Thread Joseph Thompson
Two things. try ommiting any " or ' from your insert (dates, like numbers, don't require quotes) the other thing is... You can just set the field in the database to default to Now() (it is an access function) If feels weird the first time you set it up that way, but you'll never go back : ) -

Re: DateTime Stamp Problem

2000-10-27 Thread [BOXoFUSES] Michael Slatoff
If you are trying to insert into a Date/Time field you don't need to put the #CreateODBCDateTime(now())# in ''. It would be nice to see more of your SQL to help though. Michael At 03:09 PM 10/27/00, you wrote: >I have a access database and I can't get the value of , >'#CreateODBCDateTime(Now()

RE: DateTime Stamp Problem

2000-10-27 Thread Chapman, Katrina
I'm not going to answer the question about the best way to store your data. But can we see the original query? --K -Original Message- From: Chris Johnson [mailto:[EMAIL PROTECTED]] Sent: Friday, October 27, 2000 3:10 PM To: CF-Talk Subject: DateTime Stamp Problem I have a access data

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

2000-10-27 Thread Jaime Garza
Hey compadre! What is this? the Garzas and the encode club? :) > -Original Message- > From: Garza, Jeff [mailto:[EMAIL PROTECTED]] > Sent: Friday, October 27, 2000 3:05 PM > To: CF-Talk > Subject: RE: CFCRYPT/CFENCODE... please help!!! > > > What I've found is that you have to have

DateTime Stamp Problem

2000-10-27 Thread Chris Johnson
I have a access database and I can't get the value of , '#CreateODBCDateTime(Now())#', in my Insert statement to work. I get the error: [Microsoft][ODBC Microsoft Access Driver] Syntax error (missing operator) in query expression ''{ts '2000-10-27 14:49:50'}''. The field type is text and a l

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

2000-10-27 Thread Garza, Jeff
What I've found is that you have to have at least one file in the first directory that you specify that meets the wildcard definition. I tried the following under two separate conditions, first with no matching file in the specified directory and second with one matching file in the directory and

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]

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: 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-

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 Coldfusion

RE: Power of 3

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

RE: Power of 3

2000-10-27 Thread lsellers
> 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. You're right. On both counts. It would have to be an nth root, so easier ju

Clear Studio Cache

2000-10-27 Thread j p
What are the keyboard shortcuts for clearing studios cache??? CRTL + ALT + C + S ( I though - not working ) JP _ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. Share information about yourself, cr

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: 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 Co

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: - cube root of number It's just that simple, Bob --

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

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 appear

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 (x<>0) is a power of a number y (y<>1), you just have to check that the result of log(x)/log(y) is an integer; PatNN -- Original Message -- From: "Jon Hall" <[EMAI

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 id

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.) __ Nathan Stanford ColdFusion Tips Plus [EMAIL PROTECTED] www.cftipsplus.com __

Private project..

2000-10-27 Thread CF-Help _India
Hi... We are a small Team from India into ecom solutions using cfml tech... anyone intrested could please contact me... Regards Vikram ([EMAIL PROTECTED]) CEO v-xl.com [EMAIL PROTECTED] (paul smith) wrote: > I thot this is what you were referring to. > I was surprised at how much it i

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 tom muck
Since everyone else has taken a stab at it, this is how I would do it: There aren't that many powers of three, so I think it would be quicker to pick it out of a list. tom - Original Message - From: "Jon Hall" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, Octobe

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, Quic

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: http://www.mail-archive.com/cf-talk@houseoffusion.c

Re: Multi-table inserts & updates

2000-10-27 Thread John Allred
David, Thanks. I hadn't thought of your Option 2. I'm still thinking of a couple of other ways. The main thing with most obvious approaches is that the parent record has to be created first, then the children in subsequent steps. I guess what I was originally hoping for was something like enteri

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 a

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: CF 5.0 "Bug Vote" is Now Open!

2000-10-27 Thread Owens, Howard
>>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 anticipated. T

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 a

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: http://www.houseoff

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

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 contain

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

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 but

RE: CFTRY in Application.cfm?

2000-10-27 Thread Dave Watts
> Is this reasonable, feasible, or ridiculous? > > Put in Application.cfm and put , > and 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 you to respond to spe

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: Find character not in a list (reverse of FindOneOf).

2000-10-27 Thread David Gassner
Change this line: to: Otherwise you're looking for the numeric index in the looping sequence, not the equivalent character in the form variable. David > -Original Message- > From: Steve Martin [mailto:[EMAIL PROTECTED]] > Sent: Friday, October 27, 2000 10:00 AM > To: CF-Talk > Su

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 divis

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 in Application.cf

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 t

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 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. >

RE: Power of 3

2000-10-27 Thread David Gassner
Here's another entry: #isPower# > -Original Message- > From: Jon Hall [mailto:[EMAIL PROTECTED]] > Sent: Friday, October 27, 2000 9:36 AM > 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? > >

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? > > Pu

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 > > > > > ~Simon > > -Original Message- > From: Jon Hall [mailto:[EMAIL PROTECTED]] > Sent: Friday,

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 the

RE: Power of 3

2000-10-27 Thread Gavin Myers
would this work: The random number is: #x# went one stage: #x# went two stages: #x# a power -Original Message- From: Simon Horwith [mailto:[EMAIL PROTECTED]

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. -Ori

RE: Power of 3

2000-10-27 Thread Courtney Payne
... your code to be executed only on every 3rd power ... Courtney E. Payne, Developer Fig Leaf Software "We've got you covered" [EMAIL PROTECTED] www.figleaf.com -Original Message- From: Jon Hall [mailto:[EMAIL PROTECTED]] Sent: Fri

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: http://www.mail-archive.com/cf-talk@houseo

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

CFTRY in Application.cfm?

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

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 that is broken. Mary Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/

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, will do the same thing. jon - Original Message - From: "Peter Benoit" <[EMAIL PROTECTED]> To

RE: Power of 3

2000-10-27 Thread Simon Horwith
~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 every power of three that it

RE: HTML Editor

2000-10-27 Thread David Gassner
You might want to look at a product named eWebEditPro from Ektron: http://www.ektron.com/single.cfm?doc_id=36 It's ActiveX-based, requires IE 4 or 5, but does a pretty good job. David > -Original Message- > From: Deepak Agarwal [mailto:[EMAIL PROTECTED]] > Sent: Friday, October 27, 200

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 counte

Re: HTML Editor

2000-10-27 Thread Deepak Agarwal
I know I have purchased a single domain version of it and it doesn't seem to work well at all. I wouldn't recommend it to anyone. Deepak 703.633.4257 - Original Message - From: "Paul Johnston" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, October 27, 2000 12:02 PM S

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/ -

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 *shrug*

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, like

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: HTML Editor

2000-10-27 Thread Paul Johnston
Depending on what you want to do, there is a CF_HTMLAREA_LITE (or something like that) tag in the tag gallery. It looks quite good. Paul > -Original Message- > From: Deepak Agarwal [mailto:[EMAIL PROTECTED]] > Sent: 27 October 2000 16:50 > To: CF-Talk > Subject: HTML Editor > > > This i

RE: HTML Editor

2000-10-27 Thread Neil Clark
They already have one in Spectra!!!. do a search on the Tag Gallery.. N http://www.mcbdigital.com ---> Archives: http://www.mail-archive.com/cf-talk@houseoff

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 http://www.mcbdigital.com --->

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 so

HTML Editor

2000-10-27 Thread Deepak Agarwal
This is a multi-part message in MIME format. --=_NextPart_000_0013_01C0400C.0B8318A0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Can anyone suggest me a good HTML Editor tag, that can be used in cfm = templates/Spectra. Thanks in advanc

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 -

Cold Fusion Express on a Cobalt RAQ?

2000-10-27 Thread Greg
Has anyone installed Cold Fusion Express for Linux on a Cobalt RAQ3 or RAQ4 unit? If so, did you run into any glitches that you could pass along? Thanks Greg Caron Site Administrator SimpleServers.com ---

RE: Javscript

2000-10-27 Thread Hayes, David
I got distracted and forgot the update expression in my for statement; should be for (i=0;imailto:[EMAIL PROTECTED]] Sent: Friday, October 27, 2000 9:36 AM To: CF-Talk Subject: RE: Javscript document.formName.elementName[i].value If you don't know which one is checked, you'll have to

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 PROTECT

  1   2   >