RE: Contribute and Studio Observation

2002-11-11 Thread Park, Simon
I'm looking through the online documentation of Contribute because it may be
a solution for a particular client of ours. One specific question that I
haven't seen answered is whether there is built-in publishing from a staging
or development server to a production server, particularly through a
firewall. Perhaps someone from Macromedia or who has seen the demonstration
can answer this. Thanks.

Simon
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: Yahoo moving to PHP

2002-10-29 Thread Park, Simon
Anyone run CF on BSD?

Simon

> -Original Message-
> From: Ben Densmore [mailto:ben_densmore@;esupport.com]
> Sent: Tuesday, October 29, 2002 5:13 PM
> To: CF-Talk
> Subject: OT:Yahoo moving to PHP
> 
> 
> Check it out, in their presentation for why they chose PHP, they make
> reference as to why they didn't go with CF or ASP
> 
>  
> 
> http://public.yahoo.com/~radwin/talks/yahoo-phpcon2002.htm
> 
>  
> 
> Ben
> 
> 
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



CF Surveys?

2002-09-09 Thread Park, Simon

Does anyone have a positive experience with any of the custom tags/off the
shelf survey applications built in CF? We're looking for a customizable
survey builder that produce allow relatively sophisticated reports (graphs,
aggregate data) from the results. You can e-mail me directly with your
responses.

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Simon Park  Computer Systems Management, Inc.
Ph: 703-823-4300 x119   205 South Whiting Street #201
fax: 703-823-4301   Alexandria, VA  22304
 http://www.csmi.com   
__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Trying not to use Evaluate()

2002-09-03 Thread Park, Simon

I've read here several times that I shouldn't use the Evaluate function as
it degrades performance. Would someone show me how I can re-write the code
below so I don't? This code takes the previously submitted form fields and
values and converts them to hidden form fields with the old values.







Thanks,
Simon Park
__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



ODBC Error - Changed database context to...

2002-04-25 Thread Park, Simon

Has anyone seen this error:
ODBC Error Code = S1000 (General error)
[MERANT][ODBC SQL Server Driver][SQL Server]Changed database context
to 'dcwasa_dev'.

You can see the full error at
http://206.239.48.240/customercare/billing_questions.cfm

A Google search led me to the MSDN site with something about running the
INSTCAT.SQL script.

Any help?

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Simon Park  Computer Systems Management, Inc.
Director, E-Business205 South Whiting Street #201
Ph: 703-823-4300 x119   Alexandria, VA  22304
fax: 703-823-4301   http://www.csmi.com  
__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Random Record

2002-04-08 Thread Park, Simon

This works ok for SQLServer (thanks to Craig Dudley)

select top 1 field1, 
newid() as RandID 
from tblName 
order by RandID

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Simon Park  Computer Systems Management, Inc.
Director, E-Business205 South Whiting Street #201
Ph: 703-823-4300 x119   Alexandria, VA  22304
fax: 703-823-4301   http://www.csmi.com  


> -Original Message-
> From: Jochem van Dieten [mailto:[EMAIL PROTECTED]]
> Sent: Monday, April 08, 2002 5:30 PM
> To: CF-Talk
> Subject: Re: Random Record
> 
> 
> Eric J Hoffman wrote:
> > What is the best way to get a random record from an table that has
> > frequent changes and updates...best practices or practical 
> advice from
> > veterans?  Randrange between 1 and recordcount won't work 
> pulling a num
> > and then going against primary id..so somehow to get a "row"?
> 
> Depends on your database. In PostgreSQL I prefer to use:
> SELECT *
> FROM   table
> ORDER BY   Random()
> LIMIT  1
> But in most other databases this doesn't work so I get the 
> entire table 
> and then use the RandRange() trick to show just 1 column.
> 
> Jochem
> 
> 
__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: FileExists returns NO every time, even with absolute path

2002-04-05 Thread Park, Simon

"been there...done that" - pregnancy hormones? :)

> -Original Message-
> From: Michael Corrigan [mailto:[EMAIL PROTECTED]]
> Sent: Friday, April 05, 2002 11:25 AM
> To: CF-Talk
> Subject: Re: FileExists returns NO every time, even with absolute path
> 
> 
> been there...done that!  Glad you got it going!
> 
> Michael Corrigan
> Programmer
> Endora Digital Solutions
> 1900 Highland Avenue, Suite 200
> Lombard, IL 60148
> 630-627-5055 ext.-136
> 630/627-5255 Fax
>   - Original Message - 
>   From: Stocke Terri 
>   To: CF-Talk 
>   Sent: Friday, April 05, 2002 10:13 AM
>   Subject: RE: FileExists returns NO every time, even with 
> absolute path
> 
> 
>   Oh...my...gosh...
> 
>   I am SUCH a bonehead! I can't believe I did that. Yes, that 
> solved the
>   problem nicely. I can blame my momentary lapse on pregnancy 
> hormones, right?
>   ;)  No? Well, I'm going to anyway. :D
> 
>   Thanks to everyone. You guys are the absolute BEST!
__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: UDF or Custom Tag

2002-04-03 Thread Park, Simon


function CreateHTMLLink(textin) {
textout = "" & textin & "";
return textout;
}



#CreateHTMLLink("http://www.yahoo.com";)#


=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Simon Park  Computer Systems Management, Inc.
Director, E-Business205 South Whiting Street #201
Ph: 703-823-4300 x119   Alexandria, VA  22304
fax: 703-823-4301   http://www.csmi.com  

> -Original Message-
> From: chris.alvarado [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, April 03, 2002 11:45 AM
> To: CF-Talk
> Subject: UDF or Custom Tag
> 
> 
> does anyone have a UDF or Custom tag that will turn,
> 
> http://www.yahoo.com into  href="http://www.yahoo.com";>http://www.yahoo.com
> 
> 
> i would just build it myself but im swamped.
> 
> thanks a million.
> 
> -chris.alvarado
> [application.developer]
> 4 Guys Interactive, Inc.
> 
> 
> 
__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: structSort documentation?

2002-03-28 Thread Park, Simon

Understood, but I'll have to disagree. I doubt most people scroll to the
bottom to look at the comments until they bang their heads wondering why the
function isn't working as it is documented. I'm not sure what the benefits
are for the docs being the same as they are on the cd if the cd is wrong.

Simon Park

> -Original Message-
> From: Raymond Camden [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, March 28, 2002 4:20 PM
> To: CF-Talk
> Subject: RE: structSort documentation?
> 
> 
> It is corrected - well, commented on. I figure the docs there should
> stay as they were on the CD, and corrections should be 
> mentioned in the
> comments.
> 
> Just my opinion. ;)
> 
> ==
> =
> Raymond Camden, Principal Spectra Compliance Engineer for Macromedia
> 
> Email: [EMAIL PROTECTED]
> Yahoo IM : morpheus
> 
> "My ally is the Force, and a powerful ally it is." - Yoda 
> 
> > -Original Message-
> > From: Park, Simon [mailto:[EMAIL PROTECTED]] 
> > Sent: Thursday, March 28, 2002 4:12 PM
> > To: CF-Talk
> > Subject: RE: structSort documentation?
> > 
> > 
> > Shouldn't this type of error be corrected on the version that 
> > is on the
> > Macromedia site... especially if they are "livedocs"?
> > 
> > http://livedocs.macromedia.com/cf50docs/CFML_Reference/Functio
> ns233.jsp
> 
> Simon Park
> 
> > -Original Message-
> > From: Raymond Camden [mailto:[EMAIL PROTECTED]]
> > Sent: Thursday, March 28, 2002 3:58 PM
> > To: CF-Talk
> > Subject: RE: structSort documentation?
> > 
> > 
> > base, sortOType, sortOrder, pathToSubElement
> > 
> > ==
> > =
> > Raymond Camden, Principal Spectra Compliance Engineer for Macromedia
> > 
> > Email: [EMAIL PROTECTED]
> > Yahoo IM : morpheus
> > 
> > "My ally is the Force, and a powerful ally it is." - Yoda 
> > 
> > > -Original Message-
> > > From: Jon Hall [mailto:[EMAIL PROTECTED]] 
> > > Sent: Thursday, March 28, 2002 3:49 PM
> > > To: CF-Talk
> > > Subject: structSort documentation?
> > > 
> > > 
> > > I'm looking at the CF5 manual, and it's telling me that the 
> > > syntax is this:
> > > structSort( base, pathToSubElement, sortOrder, sortType )
> > > but the Studio function autocomplete is telling me this:
> > > structSort( base, sortOrder, sortType, pathToSubElement)
> > > 
> > > Which is correct? 
> > > 
> > > 
> > 
> 
> 
__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: structSort documentation?

2002-03-28 Thread Park, Simon

Shouldn't this type of error be corrected on the version that is on the
Macromedia site... especially if they are "livedocs"?

http://livedocs.macromedia.com/cf50docs/CFML_Reference/Functions233.jsp

Simon Park

> -Original Message-
> From: Raymond Camden [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, March 28, 2002 3:58 PM
> To: CF-Talk
> Subject: RE: structSort documentation?
> 
> 
> base, sortOType, sortOrder, pathToSubElement
> 
> ==
> =
> Raymond Camden, Principal Spectra Compliance Engineer for Macromedia
> 
> Email: [EMAIL PROTECTED]
> Yahoo IM : morpheus
> 
> "My ally is the Force, and a powerful ally it is." - Yoda 
> 
> > -Original Message-
> > From: Jon Hall [mailto:[EMAIL PROTECTED]] 
> > Sent: Thursday, March 28, 2002 3:49 PM
> > To: CF-Talk
> > Subject: structSort documentation?
> > 
> > 
> > I'm looking at the CF5 manual, and it's telling me that the 
> > syntax is this:
> > structSort( base, pathToSubElement, sortOrder, sortType )
> > but the Studio function autocomplete is telling me this:
> > structSort( base, sortOrder, sortType, pathToSubElement)
> > 
> > Which is correct? 
> > 
> > 
> 
__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: special characters

2002-03-26 Thread Park, Simon

> When trying to add characters like ñ and Ñ, my SQL 7 
> server tells me I have not enclosed my strings properly. 
> I'm assuming the tilde is breaking it. Any way around 
> that, other than looking for that character and replacing 
> it, with say the HTML equivalent that works? Or will I
> just have to do a replace() on the string?

If you are using CF 5, a quick way to replace special characters (like smart
quotes when cutting and pasting from Word) is to use user-defined functions.
The one we adapted from a couple of sources is this:


function SafeChars(textin) {

bad_chars="(tm), ,"",",",',',-,-,Æ,Á,Â,À,Å,Ã,Ä,Ç,Ð,É,Ê,È,Ë,Í,Î,Ì,Ï,Ñ,Ó,Ô,Ò,Ø
,Õ,Ö,Þ,Ú,Û,Ù,Ü,Ý,á,â,æ,à,å,ã,ä,ç,é,ê,è,ð,ë,í,î,ì,ï,ñ,ó,ô,ò,ø,õ,ö,ß,þ,ú,û,ù,ü
,ý,ÿ,¡,£,¤,¥,¦,§,¨,©,ª,«,¬,­,®,¯,°,±,²,³,´,µ,¶,·,¸,¹,º,»,¼,½,¾,¿,×,÷,¢";


good_chars="&##153;, ,",",",‘,’,—,&nda
sh;,Æ,Á,Â,À,Å,Ã,Ä,Ç,Ð
,É,Ê,È,Ë,Í,Î,Ì,Ï,Ñ,
Ó,Ô,Ò,Ø,Õ,Ö,Þ,Ú,Û,
Ù,Ü,Ý,á,â,æ,à,å,ã,
ä,ç,é,ê,è,ð,ë,í,î,&igr
ave;,ï,ñ,ó,ô,ò,ø,õ,ö,&szl
ig;,þ,ú,û,ù,ü,ý,ÿ,¡,£
,¤,¥,¦,§,¨,©,ª,«,¬,­,®
;,¯,°,±,²,³,´,µ,¶,·,¸
;,¹,º,»,¼,½,¾,¿,×,÷
,¢";

/* Replace Content with updated Content */
text_out=ReplaceList(textin, bad_chars, good_chars);
  return text_out;
}


You can put this UDF at the top of the page (or include it if you want to
use it multiple times) and then use a SQL statement like this:

INSERT INTO mytable
(myfield1, myfield2)
VALUES
('#SafeChars(mytext1)#', '#SafeChars(mytext2)#')


=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Simon Park  Computer Systems Management, Inc.
Director, E-Business205 South Whiting Street #201
Ph: 703-823-4300 x119   Alexandria, VA  22304
fax: 703-823-4301   http://www.csmi.com  
__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Obtaining file size in Linux and returning to CF

2002-03-08 Thread Park, Simon

Is there a way to obtain the size of a file on a Linux server and return it
to CF?

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Simon Park  Computer Systems Management, Inc.
Ph: 703-823-4300 x119   205 South Whiting Street #201
fax: 703-823-4301   Alexandria, VA  22304
 http://www.csmi.com  
__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CFLOOP and CFOUTPUT

2002-03-08 Thread Park, Simon

I know that the prevailing wisdom is that CFOUTPUT with the Query attribute
is faster than CFLOOPing over a query. However, in Forta's CF 5
Certification Study Guide, he states that CFLOOP performs better (p. 37 and
374). Has CF 5 improved the performance of CFLOOP (Steve Drcuker referred to
it as the "CF tag of death" in CF 3) so that it performs better than
CFOUTPUT with a query attribute?

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Simon Park  Computer Systems Management, Inc.
Ph: 703-823-4300 x119   205 South Whiting Street #201
fax: 703-823-4301   Alexandria, VA  22304
__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Random row from SQL

2002-02-13 Thread Park, Simon

Here's a link that someone posted when I asked this question a few weeks
ago. Haven't had a chance to try it out but it looks like what you want

 http://www.aspalliance.com/stevesmith/articles/randomselect.asp


=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Simon Park  Computer Systems Management, Inc.
Ph: 703-823-4300 x119   205 South Whiting Street #201
fax: 703-823-4301   Alexandria, VA  22304
 http://www.csmi.com  

> -Original Message-
> From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, February 13, 2002 2:44 PM
> To: CF-Talk
> Subject: RE: Random row from SQL
> 
> 
> Yes,
> 
> I know how to do this in CF - I was wondering if anyone had 
> figured out a
__
Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT - JDBC driver for SQL Server 7

2001-08-20 Thread Park, Simon

Any recommendations? 

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Simon Park  Computer Systems Management, Inc.
Ph: 703-823-4300 x119   205 South Whiting Street #201
fax: 703-823-4301   Alexandria, VA  22304
 http://www.csmi.com  

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Battle of the Gurus (Re: Blatant advertising (you have been w arned))

2001-07-26 Thread Park, Simon

Isn't this a good sign - that there is a market for all these CF books?

Simon Park

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CF 5.0 - any slow tags/functions speeded up?

2001-05-23 Thread Park, Simon

In CF 5.0, are there any tags or functions that have been re-written to run
faster, beyond the general performance boost provided by 5.0?  I'm thinking
about CFLOOP or IIF which are known to drag performance.

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Simon Park  Computer Systems Management, Inc.
Ph: 703-823-4300 x119   205 South Whiting Street #201
fax: 703-823-4301   Alexandria, VA  22304
 http://www.csmi.com  

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Which version of MDAC is best with Cold Fusion 4.5.1

2001-02-28 Thread Park, Simon

Say I have Win2k SP1 with MDAC 2.6 loaded on my server - how do I go about
putting version 2.5 over that?  Simple steps please - starting from "Go to
the Microsoft web site, download..."

Simon Park

Philip Arnold - ASP [mailto:[EMAIL PROTECTED]] wrote: 
> AFAIK, this still has a few issues - I would still stick with 
> 2.5 (and I am)
> until it's proven that it works 100%

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Structures can't use integers as keys - why?

2001-02-13 Thread Park, Simon

I ran into the error with using numbers as keys in structures a while ago
and I worked around it by concatenating letters with the number. Now when I
create structures with the numbers as keys, it works fine. Must have been
something else... Sorry to bother folks and waste bandwidth.

Simon Park

> I use integers as structure keys all the time. But the code 
> below... I don't
> know that you can use integers as CF variable names... and 
> why would you
> want a key of "001" instead of just "1"?

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Structures can't use integers as keys - why?

2001-02-13 Thread Park, Simon

What is the reasoning that you can't use integers as keys of structures? I
understand that arrays might serve this purpose. However, if I am throwing
the results of a DB query into a complex data structure, I would like the
use the primary key values, which are often not consecutive, as the
reference point to the data. 

Simon Park

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: The mysterious CFSCRIPT...... Help

2001-01-08 Thread Park, Simon

If you get Ben Forta's Advanced ColdFusion Development book, he has a whole
chapter on CFSCRIPT.

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Simon Park  Computer Systems Management, Inc.
Ph: 703-823-4300 x119   205 South Whiting Street #201
fax: 703-823-4301   Alexandria, VA  22304
 http://www.csmi.com  

> -Original Message-
> From: Jeff W [mailto:[EMAIL PROTECTED]]
> Sent: Monday, January 08, 2001 3:58 PM
> To: CF-Talk
> Subject: The mysterious CFSCRIPT.. Help
> 
> 
> I am interesting in learning cfsript
> 
> Has anyone seen any tutorials on the web? Is there any books 
> written on it??
> To me it seems there is not alot information in even the 
> current cold fusion
> books about it. I know its supposed to be simmilar to javascript and
> somewhat asp. I've seen SOME cfscript examples. I've seen 
> some conversions
> from ASP to CFSCRIPT...
> 
> Ideas and Suggestions are GREATLY appreciated.

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CFX_Spell

2000-12-06 Thread Park, Simon

Does anyone have any experience with this Ben Forta-developed custom tag for
spell-checking? It costs $149 in the Tag Gallery but the link to the example
broken. 

Are their any alternatives to using a spell check in ColdFusion?

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Simon Park  Computer Systems Management, Inc.
Ph: 703-823-4300 x119   205 South Whiting Street #201
fax: 703-823-4301   Alexandria, VA  22304
 http://www.csmi.com  

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



ListContains wierdness - why?

2000-11-30 Thread Park, Simon

Why does the following always return TRUE?



TRUE

FALSE


Do I need to put the values into an array?

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Simon Park  Computer Systems Management, Inc.
Ph: 703-823-4300 x119   205 South Whiting Street #201
fax: 703-823-4301   Alexandria, VA  22304
 http://www.csmi.com  

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Cookie and Javascript detect

2000-11-29 Thread Park, Simon

Benjamin Fitts [mailto:[EMAIL PROTECTED]] wrote:
> http://www.browserhawk.com
> 
> I believe they even have a cfx tag listed in the allaire developers
> exchange.

I checked Browserhawk out and there are some limitations with CF which they
don't tell you about until you install the program. For example, in order to
check for a cookie, they recommend that you create an ASP page that uses
Browserhawk to check for the cookie and then does a re-direct to the proper
CF page (I guess this stems from the CFCOOKIE-CFLOCATION situation that gets
mentioned pretty regularly on this list). The site we are developing will
eventually be on a Unix OS and I really don't want to mess with Chilisoft
ASP.

Any other thoughts?

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Simon Park  Computer Systems Management, Inc.
Ph: 703-823-4300 x119   205 South Whiting Street #201
fax: 703-823-4301   Alexandria, VA  22304
 http://www.csmi.com  
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Cookie and Javascript detect

2000-11-28 Thread Park, Simon

Does anyone know of an elegant way to detect if the client browser's
javascript and cookies are enabled? Preferably in one file...

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Simon Park  Computer Systems Management, Inc.
Ph: 703-823-4300 x119   205 South Whiting Street #201
fax: 703-823-4301   Alexandria, VA  22304
 http://www.csmi.com  
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFMAIL Fails to Send

2000-11-28 Thread Park, Simon

We had some similar problems with CF 4.5.0. as there are know bugs with
CFMAIL in that version. Apparently Allaire re-wrote the CFMAIL tag from
scratch and didn't catch all the bugs. Upgrading to 4.5.1 seemed to do fix
the problems.

Simon Park

Sean Daniels [mailto:[EMAIL PROTECTED]] wrote:
> I am using an SMTP service running on the local machine to 
> send outgoing
> mails. In the CFAdmin the server verifies fine. But when I 
> send an email it
> gets stuffed into Undeliverable folder and the mail.log says 
> it was unable
> to connect to the SMTP server.
> 
> Anyone have any suggestions? According to the IT guy at the 
> company the SMTP
> service is working.
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Netscape 6 out UGH!!!!

2000-11-16 Thread Park, Simon

http://developer.netscape.com/docs/technote/dynhtml/collapse/index.html

The example DHTML code on this page in netscape's site doesn't work in
Netscape 6.

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Simon Park  Computer Systems Management, Inc.
Ph: 703-823-4300 x119   205 South Whiting Street #201
fax: 703-823-4301   Alexandria, VA  22304
 http://www.csmi.com  

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



RE: DHTML Collapsing Tree

2000-11-14 Thread Park, Simon

Duane Boudreau [mailto:[EMAIL PROTECTED]] wrote:
> Does anyone know of a cross browser ( IE4 & NN4 ) DHTML 
> collapsing tree that
> supports at least 3 levels of menus.

http://developer.netscape.com/docs/technote/dynhtml/collapse/index.html

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Simon Park  Computer Systems Management, Inc.
Ph: 703-823-4300 x119   205 South Whiting Street #201
fax: 703-823-4301   Alexandria, VA  22304
 http://www.csmi.com  

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



RE: CFMAIL undeliverable and spool troubles

2000-10-31 Thread Park, Simon

Install the latest CF service pack which will help with your CFMAIL problem

http://www.allaire.com/Handlers/index.cfm?ID=17751&Method=Full
Issues fixed in ColdFusion 4.5.1 SP1 -> Tags
"CFMAIL no longer causes logging system errors under load."

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Simon Park  Computer Systems Management, Inc.
Ph: 703-823-4300 x119   205 South Whiting Street #201
fax: 703-823-4301   Alexandria, VA  22304
 http://www.csmi.com  

> -Original Message-
> From: Jeffrey Bonnell [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, October 31, 2000 2:08 PM
> To: CF-Talk
> Subject: CFMAIL undeliverable and spool troubles
> 
> 
> Having some troubles apparently when malformed email 
> addresses end up in
> form responses and jam the cfmail function until timeout when all
> pending mail is then diverted to the undeliverable folder.
> Javascript validation on forms helps, but not all the time and when a
> non-functional address sneaks through it's effectively shutting down
> mail coming off the websites.
> 
> CF4.5 on NT 4.0
> 
> Doesn't seem to happen on our servers (also NT) running CF4.0
> 
> We
> 
> Log Message is:
> "Failed to send spooled mail file" SMTP Server replied  
> Internal Error:
> Pending mail operations must be completed.
> 
> So we're trying to discern if this is a sendmail problem or a 
> CF problem
> because it results in all the subsequent mail being dumped into the
> undeliverable folder.
> 
> Any insights and/or assistance will be greatly appreciated.

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



Allaire gov't rep?

2000-10-17 Thread Park, Simon

I remember from an old CFUG meeting that Allaire has a person who
specifically deals with using ColdFusion for government contracts, answering
questions and allaying fears about security, scalability and such. Does
anyone have the contact info for this person?

Thanks

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Simon Park  Computer Systems Management, Inc.
Ph: 703-823-4300 x119   205 South Whiting Street #201
fax: 703-823-4301   Alexandria, VA  22304
 http://www.csmi.com  
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Java Books

2000-10-10 Thread Park, Simon

You can download Bruce Eckel's books in electronic format here:
http://www.eckelobjects.com/

Simon Park

> -Original Message-
> From: Pete Freitag [mailto:[EMAIL PROTECTED]]
> Sent: Monday, October 09, 2000 12:27 PM
> To: CF-Talk
> Subject: RE: Java Books
> 
> 
> Thinking In Java by Bruce Eckel is a great book.
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



any dates for 5.0?

2000-10-03 Thread Park, Simon

Have any dates been announced/rumored for the alpha/beta/release of CF 5.0?

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Simon Park  Computer Systems Management, Inc.
[EMAIL PROTECTED]  205 South Whiting Street
Ph: 703-823-4300 x119   Suite 201
fax: 703-823-4301   Alexandria, VA  22304
 http://www.csmi.com  
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Raiser's Edge

2000-10-02 Thread Park, Simon

Has anyone ever connected CF to or even heard of Raiser's Edge, a database
application geared toward non-profit fundraising? It is made by Blackbaud
(http://www.blackbaud.com). The white paper on the application states that
it is ODBC compliant and can come with SQL Anywhere, Oracle, or SQL Server.

If anyone has any experience, please contact me off-list. Thanks.

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Simon Park  Computer Systems Management, Inc.
[EMAIL PROTECTED]  205 South Whiting Street
Ph: 703-823-4300 x119   Suite 201
fax: 703-823-4301   Alexandria, VA  22304
 http://www.csmi.com  
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: [CF-Talk] CFCOOKIE problems

2000-09-19 Thread Park, Simon

If you use CFLOCATION after setting a cookie, the cookie will not set on the
client machine.
http://www.allaire.com/Handlers/index.cfm?ID=1465&Method=Full

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Simon Park  Computer Systems Management, Inc.
[EMAIL PROTECTED]  205 South Whiting Street
Ph: 703-823-4300Suite 201
fax: 703-823-4301   Alexandria, VA  22304
 http://www.csmi.com  

> 
>   -Original Message-
>   From:   Gina Shillitani 
> [mailto:[EMAIL PROTECTED]]
>   Sent:   Tuesday, September 19, 2000 2:31 PM
>   To: '[EMAIL PROTECTED]'
>   Subject:[CF-Talk] CFCOOKIE problems
> 
>   I am attempting to use this:
> 
>EXPIRES="NEVER">
> 
>   to set a cookie on a page. It is not setting 
> the cookie. I'm not sure what
>   I'm doing wrong but it is aggravating me to no end.
> 
>   Here is the block of code the above tag is in:
> 
>   
>   
>geckoKey="#geckoKey#" 
>   profile_id="#checkCode.profile_id#">
>   
>   
>VALUE="#profID#" EXPIRES="NEVER">
>   
>url="/index.cfm?profID=#profID#&flogin=1">
>   
> 
>   Gina Shillitani
>   [EMAIL PROTECTED]
>   
> --
> 
>   Archives: 
> http://www.mail-archive.com/cf-talk@houseoffusion.com/
>   To Unsubscribe visit 
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=list
s/cf_talk or send a message to [EMAIL PROTECTED] with
'unsubscribe' in the body.

The information contained in this e-mail message is intended only for the
personal and confidential use of the recipient(s) named above. This message
may be an attorney-client communication and/or work product and as such is
privileged and confidential. If the reader of this message is not the
intended recipient or an agent responsible for delivering it to the intended
recipient, you are hereby notified that you have received this document in
error and that any review, dissemination, distribution, or copying of this
message is strictly prohibited. If you have received this communication in
error, please notify us immediately by e-mail, and delete the original
message. 



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: OT:Problem with Windows 2000 Server

2000-09-15 Thread Park, Simon

One thing you might be able to do, if you have the original key is to
manually import the key into IIS5. When we changed the production server
from NT4 to Win2k for one of our sites that uses digital certificates, we
exported the key from IIS4 and imported it to IIS5 which worked fine for us.
This way you wouldn't have to pay for another key.

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Simon Park  Computer Systems Management, Inc.
[EMAIL PROTECTED]  205 South Whiting Street
Ph: 703-823-4300Suite 201
fax: 703-823-4301   Alexandria, VA  22304
 http://www.csmi.com  

Cary Gordon [mailto:[EMAIL PROTECTED]] wrote:
> This may only be part of your problem, but Verisign certs are server 
> specific (IIS4 may show up as a different server than IIS5) 
> and you might 
> have to have them reissued for your new server.  Depending on 
> when you 
> bought the cert, it will either be free of, I think, $100.
> 
> Cary
> 
> At 05:41 PM 9/15/2000 +0100, you wrote:
> >I have transferred cf sites over to my new windows 2000 
> server from an NT4
> >SP4 box. Not a task without its headaches.
> >I now find that when I come to export verisign certificates 
> over - they
> >import OK and state themselves to be OK in IIS5 but the SSL 
> no longer works!
> >I cannot access the site with https:// - I get page not found.
> >I am now working with Microsoft on the problem having spent 
> the whole day on
> >the phone - they promise to come back to me.
> >In the meantime my question is:- Has anyone succesfully 
> imported verisign
> >certificates into web sites on a Windows 2000 Server SP1 box?
> >I have been told by other that they have succesfully installed new
> >certificates on win2000 but I know noone who has tried ti 
> import them as
> >yet.
> >
> >In the meantime my question is:- Has anyone succesfully 
> imported verisign
> >certificates into web sites on a Windows 2000 Server SP1 box?
> >
> >Paul
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Verity query for a many-to-many relationship

2000-09-14 Thread Park, Simon

I'm using a query to populate a Verity index the records of Table A which
has a many-to-many relationship with Table B. I want to be able to search by
a the data in a column of B. The query I'm currently using is this:

SELECT  A.a_id,
A.a_text,
B.b_text
FROMA,
AB,
B
WHERE   A.a_id = AB.a_id AND 
AB.b_id = B.b_id

When I run the Verity search using data I would find in the 'b_text' column,
I get multiple listings of the same record in Table A if there are multiple
B records linked to it. Is there a way re-write this query so that the
Verity engine would only return unique A records? Or another solution?

Thanks
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Simon Park  Computer Systems Management, Inc.
[EMAIL PROTECTED]  205 South Whiting Street
Ph: 703-823-4300Suite 201
fax: 703-823-4301   Alexandria, VA  22304
 http://www.csmi.com  
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Verity collection- Excluding files

2000-08-22 Thread Park, Simon

Is there a way to exclude certain files within a directory from being
indexed into a Verity collection?

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Simon Park  Computer Systems Management, Inc.
[EMAIL PROTECTED]  205 South Whiting Street
Ph: 703-823-4300Suite 201
fax: 703-823-4301   Alexandria, VA  22304
 http://www.csmi.com  
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



my pre-selected select box - why won't this work?

2000-07-03 Thread Park, Simon

Sorry, this is probably very simple but I can't figure it out. I have a
pre-selected value on my select box but it won't display. It should
pre-select Maryland but it goes to the first option, Alaska. If I hard-code
"MD" into the 'SELECTED' parameter of the CFSELECT tag, the right option is
selected but if it is drawn from the query, it is wrong. Can anyone tell me
why?

The URL is:
http://206.239.48.11/test.cfm

The code is:

SELECT  state_des, state_abbrev
FROM states 
ORDER BY state_abbrev



SELECT  state
FROMdbo.comp_address
WHERE   comp_address.company_address_id = 299



GetCompanyAddress.state:
#GetCompanyAddress.state#

State: *




Thanks.

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Simon Park  Computer Systems Management, Inc.
[EMAIL PROTECTED]  205 South Whiting Street
Ph: 703-823-4300Suite 201
fax: 703-823-4301   Alexandria, VA  22304
 http://www.csmi.com  
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Unsubscribe

2000-07-03 Thread Park, Simon

Some lists that I subcribe to have in the footer:
"You are currently subscribed to  as: [EMAIL PROTECTED]"

Perhaps something like that would help this gentleman (term used loosely)
unsubscribe himself off of this list.

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Simon Park  Computer Systems Management, Inc.
[EMAIL PROTECTED]  205 South Whiting Street
Ph: 703-823-4300Suite 201
fax: 703-823-4301   Alexandria, VA  22304
 http://www.csmi.com  
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Crypto library failure

2000-06-28 Thread Park, Simon

> Using CF with the CF cybercash tag, sometimes a 'Failure in 
> cryptographic 
> library' message is returned.  I've found a few instances of 
> this error 
> message on the 'net, but the fixes aren't working for me.  

Mike,

We had this problem occur on about 10 percent of our transactions. The
source of the problem was an unnecessary "CCPS_SSL_HOST" parameter in the
CFX_Cybercash tag. When that was deleted, the tag worked much better (thanks
Katrina Chapman!) but not perfectly. We still encounter that error message
once in a while.

Perhaps you can post the code (minus your merchant key and cybercash_id) and
that would give the gurus here a better idea of why your errors are
happening.

Another option to explore is the new version of the cfx_oncr_cybercash tag
that Online Creations just released. I wouldn't recommend them because we
used their previous version which was buggy and received very little help
from them. They may have fixed the problems and revamped their customer
service. Hope springs eternal...

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Simon Park  Computer Systems Management, Inc.
[EMAIL PROTECTED]  205 South Whiting Street
Ph: 703-823-4300Suite 201
fax: 703-823-4301   Alexandria, VA  22304
 http://www.csmi.com  
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



round up to the 500th

2000-05-09 Thread Park, Simon

Anyway know a quick way to round a value _up_ to the 500th? In other words:

400 -> 500
600 -> 1000
1499 -> 1500
1501 -> 2000

This is for real estate calculations.

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Simon Park  Computer Systems Management, Inc.
[EMAIL PROTECTED]  205 South Whiting Street
Ph: 703-823-4300Suite 201
fax: 703-823-4301   Alexandria, VA  22304
 http://www.csmi.com  
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



JSP to CF?

2000-05-02 Thread Park, Simon

A project of ours needs to incorporate datafiles from a company using Java
objects and methods. There are some sample JSP templates included in the
package that seem to cover most of the task that we will need to do. 

So here's the decision that we will need to make quickly - learn JSP and
modify those sample JSP files (along with installing a Java web server and
all that) or try to re-code that functionality in ColdFusion, with which we
are pretty comfortable, and pretty much re-creating the wheel. Those
datafiles will be used in part of the site while the rest of the site is
being developed in CF. 

Does anyone on the list have any experience with this? If so, I'd appreciate
any insights. I'd also be thankful for any web sites or other resources to
which I could be pointed for either the implementation of JSP or the
decision as which direction to go.

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Simon Park  Computer Systems Management, Inc.
[EMAIL PROTECTED]  205 South Whiting Street
Ph: 703-823-4300Suite 201
fax: 703-823-4301   Alexandria, VA  22304
 http://www.csmi.com  
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Another li'l OT - performance penalty for joining 3 or more tables

2000-04-20 Thread Park, Simon

Thanks for the help on the incrementing field value question. I have another
question..

How bad is it, performance-wise, to join 3 or 4 tables in a SELECT
statement? I could re-design the tables to include redundant fields so I
join fewer tables. Should I? 

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Simon Park  Computer Systems Management, Inc.
[EMAIL PROTECTED]  205 South Whiting Street
Ph: 703-823-4300Suite 201
fax: 703-823-4301   Alexandria, VA  22304
 http://www.csmi.com  
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



li'l OT - SQL Server

2000-04-20 Thread Park, Simon

Is there a way to increment a value in SQL server with one database call -
sort of like 
UPDATE mytable
SET foofield = foofield++
WHERE fooid = 2
?   


=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Simon Park  Computer Systems Management, Inc.
[EMAIL PROTECTED]  205 South Whiting Street
Ph: 703-823-4300Suite 201
fax: 703-823-4301   Alexandria, VA  22304
 http://www.csmi.com  
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: CFX_CYBERCASH

2000-04-04 Thread Park, Simon

You do have to register an account with Cybercash to get the Cybercash_id
and the merchant key but you do not need to install MCK on the server. You
may want to install the MCK to access some of the administrative
functionality but you don't need to.

Simon Park

-Original Message-
From: dave
To: [EMAIL PROTECTED]
Sent: 4/4/00 8:05 PM
Subject: Re: CFX_CYBERCASH

Yes , you have to.

You need to register with Cybercash... and they will provide an account
(test account) , which you can use.

Dave..

- Original Message -
From: Russel Madere <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, April 04, 2000 9:57 PM
Subject: CFX_CYBERCASH


> Has anyone here used the Latest CFX_CYBERCASH?
>
> I have a few questions.
>
> Do I need to install the latest MCK in addition to the tag?
>
> If not, how do I access the Administrator functions?
>
> Russel Madere, Jr.
> Web Developer
>
>

--

> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
or
send a message to [EMAIL PROTECTED] with 'unsubscribe'
in
the body.
>


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
or send a message to [EMAIL PROTECTED] with
'unsubscribe' in the body.
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



MIME link

2000-04-02 Thread Park, Simon

Sorry to ask this again on the list...

What is that link on the Figleaf site that Dave Watts always refers us to
when we ask about MIME attachments with CFMAIL?

Simon Park
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: REGEX validating email

2000-03-31 Thread Park, Simon

This doesn't answer your specific question but you could try using a Custom
Tag like CF_MailTest (which we use) which can be found in the Tag Gallery.

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Simon Park  Computer Systems Management, Inc.
[EMAIL PROTECTED]  205 South Whiting Street
Ph: 703-823-4300Suite 201
fax: 703-823-4301   Alexandria, VA  22304
 http://www.csmi.com  

> -Original Message-
> From: Brian Peddle [mailto:[EMAIL PROTECTED]]
> Sent: Friday, March 31, 2000 5:10 PM
> To: [EMAIL PROTECTED]
> Subject: REGEX validating email
> 
> 
> Im doing some server side validation and Im trying to make 
> sure the '@' and the '.' is in there.  I have played with a 
> variety of things and cant get it to work.  Here is the last 
> one I tried.
> 
> 
> 
> 
> Bad Email
> 

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Who's Using CF v45 in Production?

2000-03-31 Thread Park, Simon

We were using it in production but the recent problems with RAM hogging and
the CFMAIL tag is forcing us to move back to 4.01. I've heard that the
clustering is better on 4.5 than on 4.0x.

Simon Park

> -Original Message-
> From: Abraham Lloyd [mailto:[EMAIL PROTECTED]]
> Sent: Friday, March 31, 2000 3:21 PM
> To: [EMAIL PROTECTED]
> Subject: Who's Using CF v45 in Production?
> 
> 
> 
> Good Morning to everyone. :-)
> 
> I was wondering how many people are using CF v45 in a Production or
> High-Traffic Environment?  If possible, I would love to hear 
> any comments,
> observations, and advice about your experience with this 
> version (btw -
> how's the clustering?).
> 
> Thanks in advance -- Best Wishes and Regards,
> 
> Abraham Lloyd
> Senior Developer
> 
> www.onproject.com
> Working Together, Apart.
> 
> onProject.com Inc.
> [EMAIL PROTECTED]
> p 407.302.4917
> f 973.971.9971
> 
> --
> 
> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit 
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=list
s/cf_talk or send a message to [EMAIL PROTECTED] with
'unsubscribe' in the body.
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



subtract elements of one list from another?

2000-03-30 Thread Park, Simon

Is there an easy way to take the elements of one list and remove them from
another list? i.e. Subtract ListB from ListA to get ListC

ListA = (1,2,3,4,5,6)
ListB = (2,4,6)

I want returned ListC = (1,3,5)

Thanks! 

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Simon Park  Computer Systems Management, Inc.
[EMAIL PROTECTED]  205 South Whiting Street
Ph: 703-823-4300Suite 201
fax: 703-823-4301   Alexandria, VA  22304
 http://www.csmi.com  
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.