Re: advanced error handling...

2000-08-15 Thread JustinMacCarthy
You should have a look at fusebox.org and the reuse form tag... ~Justin MacCarthy - Original Message - From: "Ryan" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, August 15, 2000 2:15 PM Subject: advanced error handling... Hello. I was wondering what is the best way to

Re: OT Flow chart program

2000-08-15 Thread JustinMacCarthy
We use http://www.microsoft.com/office/visio/ , it petty good. BTW Check out http://www.fusebox.org/specifications/fuseml/index.cfm for UML / Fusebox /CF website planning. ~Justin MacCarthy - Original Message - From: "Chad" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, August

4.5.1 memory leak? is this really a leak we are talking about ?

2000-08-15 Thread JustinMacCarthy
Are you guys talking about the memory allocation in CF or a bona fide leak CF does grab memory as it needs and yes it doesn't release it - by design. It fingures that if it needed the memory once it will do again. And there is an over head in aquiring / releasing memory. From "Looking At

Re: Double Dimesion ArraySorting

2000-08-14 Thread JustinMacCarthy
raySorting Thanks a ton! I'll work on that ! cheers, vin -Original Message----- From: JustinMacCarthy To: [EMAIL PROTECTED] [EMAIL PROTECTED] Date: Friday, August 11, 2000 5:52 PM Subject: Re: Double Dimesion ArraySorting Build a structure (associative array) where you have the

Confirm CF bugs

2000-08-14 Thread JustinMacCarthy
Hi All, Does anyone know if there is a list of confirmed bugs in CF anywhere. Or is it a case of looking at all the KB articles?? ~Justin MacCarthy -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/

Re: E-commerce Security, for the non programmer..

2000-08-14 Thread JustinMacCarthy
Check out the The World Wide Web Security FAQ @ http://www.perl.com/pub/doc/FAQs/cgi/www-security-faq.html ~Justin MacCarthy - Original Message - From: "Paul Ihrig" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, August 14, 2000 4:05 PM Subject: OT: E-commerce Security, for

Re: Adobe sues Macromedia????

2000-08-14 Thread JustinMacCarthy
They are suing over "tearable tabs" where you can click on a tab and drag it off the dialog it is on etc. Or you can drag it to CFSTUDIO too!! -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/

Re: History list

2000-08-11 Thread JustinMacCarthy
I would suggest using an array and the ArrayDeleteAt(array, position) ArrayAppend(array, value) so if you have a var session.history as you add a values use ArrayAppend(session.history, value) and if the array is over 5 entries use ArrayDeleteAt(session.history,1) Justin MacCarthy -

[ot]Ouch at allaire.com

2000-08-11 Thread JustinMacCarthy
All of www.allaire.com down C:\ping www.allaire.com Pinging allaire.com [205.181.25.11] with 32 bytes of data: Reply from 4.0.5.74: TTL expired in transit. Request timed out. Request timed out. Request timed out. ~J

Re: Double Dimesion ArraySorting

2000-08-11 Thread JustinMacCarthy
Build a structure (associative array) where you have the value you are trying to sort (array[x][5]) as the keyname and the array[x] as the keyvalue * untested code ahead *** cfset myStruct = StructNew() cfloop from=1 to=ArrayLen(myarray) index=idx cfset result =

Re: From .exe to .dll

2000-08-11 Thread JustinMacCarthy
Have you got the source code ??? What language was it written in? What does it do? ~Justin - Original Message - From: "Mark Armendariz" [EMAIL PROTECTED] To: "Cf-Talk" [EMAIL PROTECTED] Sent: Friday, August 11, 2000 2:55 PM Subject: From .exe to .dll I am looking for resources

Re: JavaScript CSS Detector

2000-08-11 Thread JustinMacCarthy
Use the Browers Sniffer at http://developer.iplanet.com/docs/examples/javascript/browser_type.html And dynamically write the css sheet document.write("style ") ~JustinMacCarthy - Original Message - From: "Robert Forsyth" [EMAIL PROTECTED] To: [EMAIL PRO

Re: From .exe to .dll

2000-08-11 Thread JustinMacCarthy
ed a means of giving the dll input and then getting the output via a variable. Thanks.. -Original Message----- From: JustinMacCarthy [mailto:[EMAIL PROTECTED]] Sent: Friday, August 11, 2000 10:01 AM To: [EMAIL PROTECTED] Subject: Re: From .exe to .dll Have you got the source code ??? Wha

Re: From .exe to .dll

2000-08-11 Thread JustinMacCarthy
---- From: JustinMacCarthy [mailto:[EMAIL PROTECTED]] Sent: Friday, August 11, 2000 10:39 AM To: [EMAIL PROTECTED] Subject: Re: From .exe to .dll If you have the source code I would recommend wrapping the code in a cfx_tag. It's very simple. For example of cfx source code in C/C++ H

Re: More elegant way of passing URL variables?

2000-08-11 Thread JustinMacCarthy
Encrypt the url I wrote a couple of tags that encrypt/ decrypt query_strings so instead of index.cfm?value=6name=jim You get page2.cfm?94946560A4946560B495214551E01031C1D1A. and on page2 you include cf_DeCryptURL and you can still use url.value and url.name etc I don't have it handy at

Re: Newbie Question - CSV text file + IE4/5 fun

2000-08-11 Thread JustinMacCarthy
If you use the pips , ensure that you change your ODBC driver settings, a comma is default. BTW if you looking to play around, check out the IE Databinding stuff with CSV file. 6 Lines of code and you can output the file sort it by columns and allsorts of cool stuff. Handy for a quick csv

Re: Documentation system a la Perldoc

2000-08-11 Thread JustinMacCarthy
There is : FuseDoc , you can find it at Hals page @ http://www.teamallaire.com/hhidev/index.cfm?external=true Justin Maccarthy - Original Message - From: "Paul Johnston" [EMAIL PROTECTED] To: "Fusebox" [EMAIL PROTECTED]; "Cf-Talk" [EMAIL PROTECTED] Sent: Friday, August 11, 2000 5:31

Re: dynamic pulldowns using a database?

2000-08-09 Thread JustinMacCarthy
Yes go here http://devex.allaire.com/developer/gallery/info.cfm?ID=CA347197-2830-11D4-AA 9700508B94F380method=Full ~Justin MacCarthy - Original Message - From: "Wurst, Keith D." [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, August 09, 2000 3:31 PM Subject: dynamic pulldowns

Re: How to check a password is only alpha characters?

2000-08-08 Thread JustinMacCarthy
Much better to do cfif REFind("^[a-zA-Z0-9]*$", password ) ~Justin !--- Eliminate anything that isn't alphanumeric, then check to see if it's the same thing --- CFIF REReplace(newpassword1,"[^a-zA-Z0-9]","","ALL") IS newpassword1 !--- ... --- /CFIF But, as Perl says, there's

Re: Net Present Value NPV()

2000-08-02 Thread JustinMacCarthy
Dana E. Johnson Sr. Web Developer CIT VTF/Technology Financing Services [EMAIL PROTECTED] (904) 620-7458 -Original Message----- From: JustinMacCarthy [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 01, 2000 10:02 AM To: [EMAIL PROTECTED] Subject: Re: Net Present Value NPV() NPV

Re: need help calculating total order price

2000-08-02 Thread JustinMacCarthy
ductId))#/tD td #DollarFormat(ThisItemTotal)# /td cfset Total = Total + ThisItemTotal /tr /cfoutput cfoutputTotal /cfoutput ~JustinMacCarthy - Original Message - From: "Jon Tillman" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, August 02, 2000 5:55 AM Subject: Re: need hel

Re: Other File Types

2000-08-02 Thread JustinMacCarthy
It's in the webserver setting that you put those settings... What webserver you using ? Justin - Original Message - From: "Kent A. Orso" [EMAIL PROTECTED] To: "CF-TALK" [EMAIL PROTECTED] Sent: Wednesday, August 02, 2000 12:32 PM Subject: Other File Types I know someone already

Clustered server - keeping code insync

2000-08-01 Thread JustinMacCarthy
Hi all , Has anyone got any recommendations for keeping the code on several production servers in a clustered setup in sync??? Thanks ~Justin -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To

Re: appropriate SQL 7 licensing for CF website

2000-08-01 Thread JustinMacCarthy
FYI new pricing model from microsoft http://www.microsoft.com/sql/productinfo/pricing.htm ~Justin - Original Message - From: "Benjamin S. Rogers" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, August 01, 2000 2:20 PM Subject: RE: appropriate SQL 7 licensing for CF website

Re: Net Present Value NPV()

2000-08-01 Thread JustinMacCarthy
NPV = C0 + C1 / (1+r) + C2 / (1+r)2 + ... + Cn / (1+r)n so something like if: values is an array of rates and rate is the rate then: cfset NPV = values[1] cfloop from=2 to=#ArrayLen(values)# index=C cfset temp =0 cfset temp = Value[c]/(1+rate) ^ c cfset NPV + temp /cfloop

Re: Looping through lists

2000-08-01 Thread JustinMacCarthy
Assuming you have namelist = "tom,dick,harry" IDlist = "1,2,3" and you want to select id, some_col from table where id in (#idlist#) output is id some_col 2 textorsomething 3 textorsomething then you chould do cfoutput #listgetat(namelist,listfind(idlist,id,))# #some_col#

Re: Looping through lists

2000-08-01 Thread JustinMacCarthy
I have: productlist = "1,2,3,4" quantitylist = "2,1,1,1" and i want to SELECT tblProduct.*, tblProductSize.productsizeSize, tblProductWeight.productweightWeight, tblProductColor.productcolorColor FROM((tblProduct

Re: IMS Email Server

2000-08-01 Thread JustinMacCarthy
www.coolfusion.com you can sign up for the mailing list there .. It's a great product ~Justin MacCarthy - Original Message - From: "Duane Boudreau" [EMAIL PROTECTED] To: "CFTalk" [EMAIL PROTECTED] Sent: Tuesday, August 01, 2000 6:20 PM Subject: IMS Email Server Hi All,

Re: Function for padding strings???

2000-07-31 Thread JustinMacCarthy
Look at RJustify CJustify LJustify. RepeatString ~Justin - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, July 31, 2000 3:18 PM Subject: Function for padding strings??? Hello all, This might sound like a very stupid question, I need to

Re: CFContent MIME Types

2000-07-28 Thread JustinMacCarthy
Hi Dave Try added this before your Cfcontent tag: to display in the browser: cfheader name="Content-Disposition" value="inline; filename="XYZ.txt" to download : cfheader name="Content-Disposition" value="attachment; filename="XYZ.txt" ~J

Re: do stored procedures REALLY .... - caching sproc results

2000-07-27 Thread JustinMacCarthy
One way in which stored procedures called using CFSTOREDPROC _could_ result in a performance loss is that CF can't cache their results. I agree that I always wonder why is this ?? Surely how ever the query is executed , cf still ends up with a RecordSet?? Why can't cf cache results from a

Re: Newbie with questions on CF + Samba

2000-07-27 Thread JustinMacCarthy
Hi Tage , welcome to the list. Can you tell us what user do you have CFserver running under Does that user have access to the the windows share? You chould just use CFFTP to interact with your Linux box , but CFFTP is a little crappy so Justin MacCarthy www.cfug.ie - Original

Re: CF Schedule and Linux

2000-07-26 Thread JustinMacCarthy
a workaround: schedule a cf page which "cfhttp gets " you page and write the content to a file ~Justin - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, July 26, 2000 4:01 PM Subject: CF Schedule and Linux I can't seem to get CF Schedule to work

Re: FUSEBOX

2000-07-25 Thread JustinMacCarthy
www.fusebox.org - Original Message - From: "Craig A. Zingerline" [EMAIL PROTECTED] To: "cf-talk" [EMAIL PROTECTED] Sent: Tuesday, July 25, 2000 1:01 PM Subject: FUSEBOX Hello, Can anyone tell me where to find resources on the Fusebox methodology. Any websites or print materials

Re: Query manipulation

2000-07-25 Thread JustinMacCarthy
Hola, If you need to manipulate/sort the same data over and over you might be better off saving the recordset as a structure or wddx in a session or client or cookie variable (or as wddx in a temp db table). You would need to stick it in a structure first. If you are using HTML4 browsers you

Re: Scheduled Tasks

2000-07-25 Thread JustinMacCarthy
They are stored in the reg. If you are looking for a scheduling package in which the tasks are in a a DB , give me a shout off-list ~Justin - Original Message - From: "Tim Cavins" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, July 25, 2000 5:02 PM Subject: Scheduled Tasks

Studio45a Problem

2000-07-24 Thread JustinMacCarthy
Hi All, can anyone tell me if there is a problem with viewing files using RDS in Studio45a? Is there a fix ? ~J -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit

SSL in a Clustered Setup

2000-07-21 Thread JustinMacCarthy
This is a multi-part message in MIME format. --=_NextPart_000_00D3_01BFF33E.37822060 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi All, Can anyone tell me what the issues are in implementing SSL certs in = a clustered setup. I

<    1   2   3   4