RE:

2001-12-17 Thread Jay Jorgensen
The group over at JS-Jive is pretty active. http://groups.yahoo.com/group/JS-Jive/ jay [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 18, 2001 12:55 AM To: CF-Talk Subject: All, Sorry to post this here. Does anyon

Re: CF-Talk-list V1 #23

2001-12-17 Thread [EMAIL PROTECTED]
From: "mtroy" <[EMAIL PROTECTED]> Subject: REMOVE, Unsubscribe Date: Mon, 3 Dec 2001 23:16:32 -0500 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="=_NextPart_000_000D_01C17C50.915FFF20" X-Priority: 3 X-MSMail-Priority: Normal X-Unsent: 1 X-MimeOLE: Produced By Microso

Re: CF-Talk-list V1 #22

2001-12-17 Thread [EMAIL PROTECTED]
From: "mtroy" <[EMAIL PROTECTED]> Subject: REMOVE, Unsubscribe Date: Mon, 3 Dec 2001 23:16:32 -0500 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="=_NextPart_000_000D_01C17C50.915FFF20" X-Priority: 3 X-MSMail-Priority: Normal X-Unsent: 1 X-MimeOLE: Produced By Microso

RE:

2001-12-17 Thread Joseph DeVore
I just whipped this up for you - hopefully you can get the idea from this.. function calculate() { var f1=document.x.f1.value; var f2=document.x.f2.value; var f3=eval(f1*f2); document.x.f3.value=f3; } enter a number in the first 2 fields: HTH, Joseph DeVore VeloxWeb Technologies

www.irt.org RE:

2001-12-17 Thread Jared Clinton
I usually find most of the javascripty things I need at www.irt.org Jared Clinton NEC Business Solutions NEC Australia -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 18 December 2001 3:55 PM To: CF-Talk Subject: All, Sorry to post this here. Doe

cf-talk@houseoffusion.com

2001-12-17 Thread coldfusion . developer
All, Sorry to post this here. Does anyone know of a JavaScript lists like CF-Talk? I'm trying to multiply two form field values and show the result in a third without a submit action. So when the curser moves to the third form field, the calulation is done automatically. Thanks for the list

Re: Listing MP3 files and alowing either Download or Run

2001-12-17 Thread cftalk
Providing the files for download is a given. One thing you might consider for providing them for listening on-demand... Create an m3u playlist dynamically, the name of which would be a hash of the file path, etc. Send that m3u playlist to the user. I have implemented this solution for wma prev

Re: cookies, Is this possible?

2001-12-17 Thread Tony Schreiber
Cookies can be read and set only within their own domain. So you can't read a product2.com cookie on the product1.com website. > I have a client with multiple domains www.product1.com www.product2.com > www.product3.com. > > To gain acces to certain information on these sites a user would need

Re: cookies, Is this possible?

2001-12-17 Thread Howie Hamlin
By RFC cookies cannot be shared between domains, so this is not possible. If the domains share the same client storage then you can use cfid/cftoken to manage access between sites... Regards, Howie - Original Message - From: "trent" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED

cookies, Is this possible?

2001-12-17 Thread trent
I have a client with multiple domains www.product1.com www.product2.com www.product3.com. To gain acces to certain information on these sites a user would need to log in. I was thinking of the user signing up and then setting a cookie on their machine to allow them access to the other sites, wi

RE: Calendar Custom Tag

2001-12-17 Thread Eric J Hoffman
I have one we use regularlycan be used across multiple sites or multiple calendars in one site...email me offlist. [EMAIL PROTECTED] Eric J Hoffman Director of Internet Development Small Dog Design, LLC www.smalldogdesign.com Home of MN Vikings Fans Worldwide! www.purplepride.org -Orig

Calendar Custom Tag

2001-12-17 Thread Tangorre, Michael T.
Hello everyone. I searched the tag gallery and came up with a lot of calendar custom tags... Could someone recommend a good one based upon my criteria for use listed below? I need a calendar tag that will allow a user to click on the day, and all I need to do is pass that date either in the url

RE: CF5 Release Date

2001-12-17 Thread Tyler M. Fitch
The press release for CF5 is dated April 30, 2001. I bet that's the date. http://www.macromedia.com/macromedia/proom/pr/2001/index_cf5_server.fhtm l t ** Tyler M. Fitch Certified Advanced ColdFusion 5 Developer ISITE Design,

CF5 Release Date

2001-12-17 Thread sam komolafe
Hi guys, When was CF5 officially released by Macromedia? Thanks Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/c

Re: Certificate expired?

2001-12-17 Thread John Dowdell
>>> Not to be a whiner, but geez, Macromedia, help us out here? >> >> Using the regular support options would be the assured path. > > The response is already given in the regular channels ;) Yup, how about that. 8) One sidenote: I've heard incidental reports from several that certification from

RE: tricky form question

2001-12-17 Thread Bryan Love
use mailto:[EMAIL PROTECTED]] Sent: Monday, December 17, 2001 2:41 PM To: CF-Talk Subject: tricky form question Hello, here is what I'm having problem with and not even sure I can pull this off. I have a normal html form which submits to a CF action page. wrench thats throwen into the pic

Re: Certificate expired?

2001-12-17 Thread Jochem van Dieten
John Dowdell wrote: > At 8:58 AM 12/17/1, Ian Lurie wrote: > >>Just started getting a 'certificate expired' warning when you >>try to download the CFTREE applet on all of our CF sites... >>Not to be a whiner, but geez, Macromedia, help us out here? >> > > I'll try, but I'm not in the core ColdF

RE: Certificate expired?

2001-12-17 Thread John Dowdell
At 8:58 AM 12/17/1, Ian Lurie wrote: > Just started getting a 'certificate expired' warning when you > try to download the CFTREE applet on all of our CF sites... > Not to be a whiner, but geez, Macromedia, help us out here? I'll try, but I'm not in the core ColdFusion support group, and I don't

RE: SQL Server Union statement

2001-12-17 Thread Lon Lentz
select into? > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Monday, December 17, 2001 5:45 PM > To: CF-Talk > Subject: OT: SQL Server Union statement > > > Hi all, > > I have an union statement that puts 2 cust tables together. I > want to but I > c

OT: SQL Server Union statement

2001-12-17 Thread thanh . nguyen
Hi all, I have an union statement that puts 2 cust tables together. I want to but I could not save it as a view in SQL Server for other pages.. Is there some other way to save it in SQL ? Thanh Get the mailserver

Re: tricky form question

2001-12-17 Thread Tony Schreiber
Have the submit page process the request, then redirect to a frame set with a hidden frame containing the asp page. You'll have to pass any variables to the asp page via the url in the frame set call. > Hello, > here is what I'm having problem with and not even sure I can pull > this off. > >

RE: CFXGraphicsServer

2001-12-17 Thread Steve Drucker
Check out ChartF/X http://www.softwarefx.com/sfxproducts/CfxInternet/ Great stuff, although it can get a little pricey. -S > -Original Message- > From: Stephen Moretti [mailto:[EMAIL PROTECTED]] > Sent: Monday, December 17, 2001 2:36 PM > To: CF-Talk > Subject: Re: CFXGraphicsServer >

Re: tricky form question

2001-12-17 Thread Alex
try a hidden frame On Mon, 17 Dec 2001, Troy Montour wrote: > Hello, > here is what I'm having problem with and not even sure I can pull > this off. > > I have a normal html form which submits to a CF action page. wrench > thats throwen into the picture is I also have an asp action page I

RE: CF > Java trouble.

2001-12-17 Thread Kevin Cundick
Pete, Just thought I'd mention to you that the problem I was having was in the CFX_JSocket.java code. On line 36 this is what the code I downloaded from CFDev.com has: Socket socket = new Socket(request.getAttribute("HOST"), Integer.parseInt( request.getAttribute("T"))); I

tricky form question

2001-12-17 Thread Troy Montour
Hello, here is what I'm having problem with and not even sure I can pull this off. I have a normal html form which submits to a CF action page. wrench thats throwen into the picture is I also have an asp action page I need to load hidden. I need to have the CF action page only come up and

Re: EASY QUESTION

2001-12-17 Thread webmaster
Hi, You can use cfcontent tag, #SummaryRow# This will pop-up a download window, with "my.csv" as filename, Mahmut Basaran measure Twice cut Once -- Original Message -- from: "Jason Green" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] date: Mon,

RE: IN condition... help?

2001-12-17 Thread Bryan Love
no need to initiate a loop. This is much faster... WHERE item IN ('#replace(listVar,",","','","all")#') +---+ Bryan Love Macromedia Certified Professional Internet Application Developer Database Analyst Telecomunication Systems [EMAIL PROTECTED]

RE: IN condition... help?

2001-12-17 Thread Jason Green
i just knew that in SQL, when doing an IN statment, you need to put single quotes around the items in a list and if you are using a number list, you don't have to. i know what you mean on feeling like a new-bi posted a question today and i know i've writen the code before, but i can't thin

RE: IN condition... help?

2001-12-17 Thread Paul Ihrig
right on! Thank you Jason! Now, is that something simple that i have should always have known? i have read WACK 3 or so times. & paged through aWACK a few times. Where do you learn these types of things??? i have been using CF aggressively for almost 3 years now & still there are days, such as

RE: ???

2001-12-17 Thread Joel Parramore
On the surface, nothing appears to be the matter. You don't need all those # signs in your code, and taking them out will make things a bit more readable. The revised code appears below. A good article by Ben Forta on when to use and not to use # signs is at http://www.defusion.com/art

Re: ???

2001-12-17 Thread Howie Hamlin
For one, I would print out the values prior to calculating the total. Also, I would not use quotes and would strip out the hashes in the calculation. In this way, if a value is a non-numberic you'll see the error before you get to the final sum, like so: #q1_qnty_1A

RE: IN condition... help?

2001-12-17 Thread Jason Green
then you need to loop through each one in the IN statment and put ' ' around each item WHERE item IN ('#i#',) try that. >From: Paul Ihrig <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: CF-Talk <[EMAIL PROTECTED]> >Subject: RE: IN condition... help? >Date: Mon, 17 Dec 2001 16:17:17

Re: ???

2001-12-17 Thread coldfusion . developer
Scratch that. The code is good, I just wasn't passing variables to the code correctly. Opps. Thanks > All, > > This simple process worked for me 10 minutes ago and now > it's throwing an error message ... I just can't see the > problem. I need a second pair of fresh eyes. > > Thanks > >

RE: IN condition... help?

2001-12-17 Thread Paul Ihrig
is #rs_View.Project_Type_ID2# a coma list of numbers? if so, try not adding the ' around it in the IN statment no, it is text like (0264,0039 SF,0258,0257) i have tried IS, LIKE, IN any other ideas. thanks

???

2001-12-17 Thread coldfusion . developer
All, This simple process worked for me 10 minutes ago and now it's throwing an error message ... I just can't see the problem. I need a second pair of fresh eyes. Thanks ***THE ERROR:*** Error Diagnostic Information An error occurred while evaluating the expression: TOTAL1 = (#q1_qnty_1A#

Re: IN condition... help?

2001-12-17 Thread Jason Green
is #rs_View.Project_Type_ID2# a coma list of numbers? if so, try not adding the ' around it in the IN statment like this SELECT Profile_Code2, Profile_Name2 FROM tbl_Profile_Codes_2 WHERE Profile_Code2 IN (#rs_View.Project_Type_ID2#) jason >From: Paul Ihrig <[EMAIL PROTECTED]> >Rep

RE: Listing MP3 files and alowing either Download or Run

2001-12-17 Thread Jerry Johnson
Well then, I'd say streaming they DON'T need. More like just a download center to allow them access to their files. And depending on the size/length of these audio clips, maybe a "dl/listen to sample" available for the large ones. (to circumvent long downloads of the WRONG file) What are you

IN condition... help?

2001-12-17 Thread Paul Ihrig
ok i must be missing something, so if you can see the problem i would appreciate it i am not able to view the out put of a cfloop query, but can see the ids output? SELECT Profile_Code2, Profile_Name2 FROM tbl_Profile_Codes_2 WHERE Profile_Code2 IN ('#rs_View.Project_Type_ID2#') #rs_pc2.Profil

RE: Listing MP3 files and alowing either Download or Run

2001-12-17 Thread Rick Osborne [Mojo]
I set up a music server for our Intranet a few months ago and wrote a CFX tag and a really quick-n-simple browser interface for it. (For those whom using a file interface was too difficult. :p~~~ ) It uses IceCast running on a Linux server, but it could just as easily use NFS or SMB or whatever

RE: Listing MP3 files and alowing either Download or Run

2001-12-17 Thread Brunt, Michael
We need to do it across the Internet, as you say on the LAN it runs OK. We run a service providing digitally converted client music (from their own audio sources) for their own events and want to give them Internet access to their own files after the event. Mike Brunt Webapper http://www.webappe

Re: Listing MP3 files and alowing either Download or Run

2001-12-17 Thread Jim McAtee
Do you need to do this across the Internet or just across your LAN? On the lan, file access works well, effectively streaming the content. For example: file://MYSERVER/Jazz/Joe Henderson/lush life.mp3 Jim - Original Message - From: "Brunt, Michael" <[EMAIL PROTECTED]> To: "CF-Talk" <

Re: Source Control and Your Dog

2001-12-17 Thread Chris Norloff
Microsoft's Visual Source Safe brought our development to its knees, so I understand where you're coming from. We switched to PVCS because it's our customer's choice. It's more clunkly that VSS, but it is robust - something VSS is most definitely not. And it does support remote developers- i

Re: Listing MP3 files and alowing either Download or Run

2001-12-17 Thread Jerry Johnson
does "in the client browser" mean streaming or downloaded first? If you want to stream, I have set up a streaming jukbox before using icecast/winamp. Give it a try http://www.icecast.org/faq.html Jerry Johnson >>> [EMAIL PROTECTED] 12/17/01 02:05PM >>> I am trying to enable listing of MP3 fi

EASY QUESTION

2001-12-17 Thread Jason Green
OK.I'm having one of those days I am creating a csv page on the fly and i'm wanting it to downloadhow do we do that again? I've done this before, but i just can't think of how i did it. IT's MONDAY! thanks for the help. jason

fusebox ?

2001-12-17 Thread Douglas Brown
I am needing help on returnfuseaction, this is my first use of the tag and I get an error when trying to use it. I may be using it incorrectly. Error Diagnostic Information An error occurred while evaluating the expression: "#returnURL#/#caller.fusetoken#" Error near line 27, column 22.

Listing MP3 files and alowing either Download or Run

2001-12-17 Thread Brunt, Michael
I am trying to enable listing of MP3 files in two directory structures (with sub directories for different genres) on two different hard drives on the same server. IIS and ColdFusion are running on the same server as the MP3 directory structures. What I want to do is allow either downloading of

Re: New IE Hole Info!

2001-12-17 Thread Jon Hall
Heh, yes a very bad security problem...the problem is that the patch doesn't totally fix the problem. Also the patch does not fix Outlook Express either. See Bugtraq posting today... jon - Original Message - From: "Justin Hansen" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent:

OT: New IE Hole Info!

2001-12-17 Thread Justin Hansen
FYI.. IE 5.5 and 6 users may want to install this new patch IMMEDIATELY. According to Microsoft (http://www.microsoft.com/technet/treeview/default.asp?url=/technet/security /bulletin/MS01-058.asp) this fixes a critical hole in IE that may allow an attacker to run any code they wish by fakin

RE: CFXGraphicsServer

2001-12-17 Thread Ron Anderson
Nothing like hearing from the stockholders :) -Original Message- From: Stephen Moretti [mailto:[EMAIL PROTECTED]] Sent: Monday, December 17, 2001 11:36 AM To: CF-Talk Subject: Re: CFXGraphicsServer The new manual is probably worth the $450 dollars on its own My postman was not happ

RE: CFQUERY

2001-12-17 Thread Ben Forta
It's intended, kind of. does not really care what the statement is (or if it is even legal). It just passes it to ODBC (or whatever data source is being used) for processing. So, if the drivers and databases support it then you can do it, and if not then not. --- Ben -Original Message-

RE: CFQUERY

2001-12-17 Thread Ken Wilson
>> Is there a way to do multiple delete queries in one cfquey tag. > No Actually, multiple deletes/inserts/updates within one query tag do work whether it's intended to or not. Just stick the seperate SQL statements right in there and go for it. Now, anybody know if this is intended or just an

Re: CFXGraphicsServer

2001-12-17 Thread Stephen Moretti
The new manual is probably worth the $450 dollars on its own My postman was not happy the day it wound up in his deliveries. :o) Here's an idea of how much difference there is between CFX_GraphicsServer and CFGraph: There are 405 pages in the manual for CFX_GS; pages 143 to 392 contain the i

WOT: Cryptogram

2001-12-17 Thread Don Vawter
I got bored last night and wrote a script to work with cryptograms. If you like to waste time you are free to play with it. I have over 300 quotes on it. (Sorry not NS 4 compatible. I WASN'T that bored) http://www.vawter.com/crypto.cfm ~~ Your ad

Re: CFQUERY

2001-12-17 Thread Tyler Clendenin
what is a cascading delete? - Original Message - From: "Aidan Whitehall" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, December 17, 2001 12:45 PM Subject: RE: CFQUERY > > Is there a way to do multiple delete queries in one cfquey tag. and I > > need to surround

RE: CFXGraphicsServer

2001-12-17 Thread Philip Arnold - ASP
> Anybody have anything good or bad to say regarding CFXGraphicsServer? > (Other than the fact that charging $450 for a localhost version should > make TeraTech feel guilty on their way to the bank.) Why should the localhost NOT cost a whack, considering it does shed-loads more than CFGraph Thin

Re: CFXGraphicsServer

2001-12-17 Thread Michael Smith
I too would be interested in what people have to say about our CFXGraphicsserver http://www.cfxgraphicsserver.com/ graphing add in for CF. I will say that unlike CFGRAPH that comes with CF5 it has a lot more graph types and features and will work with CF 4 as well. We have greatly improved the m

Re: Excuting stuff on the server

2001-12-17 Thread Alex
read the cfdocs function list. look through the snippets directory for examples On Mon, 17 Dec 2001, Troy Montour wrote: > Hello everyone I have a snag since I have never done this my self > before. > > but I'm wondering what I would use in CF to do this same process?? > > Set HKSI = Server

CFXGraphicsServer

2001-12-17 Thread Jay Jennings
Anybody have anything good or bad to say regarding CFXGraphicsServer? (Other than the fact that charging $450 for a localhost version should make TeraTech feel guilty on their way to the bank.) Thanks. jay ~~ This list and all House of Fusion r

Re: Excuting stuff on the server

2001-12-17 Thread Troy Montour
Ron, no problem on not posting it all.. Thats what I figured it was. Troy Montour - Original Message - From: "Ron Hornbaker" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, December 17, 2001 11:39 AM Subject: RE: Excuting stuff on the server > Troy, > > Hey, th

RE: CFQUERY

2001-12-17 Thread Aidan Whitehall
> Is there a way to do multiple delete queries in one cfquey tag. and I > need to surround it in a transaction. How can I do this? No, but if you supply a where clause, you can delete everything from one table in one go (and if you have cascading deletes, just go for the parent-most records).

Re: Excuting stuff on the server----- NM ISP thru a curve ball at me.

2001-12-17 Thread Troy Montour
Thanks if you were looking at this but the ISP thru a curve ball at me and are moving the mail server on me so I won't be able to do what I wanted. Troy - Original Message - From: "Troy Montour" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, December 17, 2001 11:24 A

Any known issues with cfhttp?

2001-12-17 Thread Kola Oyedeji
Hi I am using cfhttp to grab content from another site. I've never used it much but I've seen numerous posts on this list and others regarding alternatives. Are there any known issues or problems I should know about and if so then what other options/solutions exist? Thanks in advance Kola Oyede

RE: Excuting stuff on the server

2001-12-17 Thread Ron Hornbaker
Troy, Hey, that code looks vaguely familiar. :) Thanks for not posting all of it to the list. Try the cfexecute tag combined with the adduser and ldaper executables. Our SafeExec object is an ASP-version of cfexecute ("safe" because it allows executions on only one specified directory). Ron Hor

RE: Bug I think

2001-12-17 Thread Garza, Jeff
Take the date that is passed and set the day to 1... myDate = now(); FirstDayofMonth = CreateDate(year(myDate), month(myDate), "1"); If someone else has a better way I'm open... Jeff Garza Lead Developer/Webmaster Spectrum Astro, Inc. 480.892.8200 [EMAIL PROTECTED] http://www.spectrumastro.co

CFQUERY

2001-12-17 Thread Tyler Clendenin
Is there a way to do multiple delete queries in one cfquey tag. and I need to surround it in a transaction. How can I do this? ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ

Re: Bug I think

2001-12-17 Thread Jim McAtee
Jim - Original Message - From: "David Brown" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, December 17, 2001 9:46 AM Subject: Re: Bug I think > I would like to get the first date of month(date). > > I want the first date of month to do a dateadd in my recurri

test list

2001-12-17 Thread Michael Dinowitz
Anyone who wants to help out with a new list system I'm working on, please go to http://www.houseoffusion.com/cf_lists/ and sign up. The list is [EMAIL PROTECTED] and its using some new features such as multiple posting addresses and variable digests. Your feedback will determine what new feat

RE: Certificate expired?

2001-12-17 Thread Ian Lurie
Not to be a whiner, but geez, Macromedia, help us out here? -Original Message- From: Marius Milosav [mailto:[EMAIL PROTECTED]] Sent: Monday, December 17, 2001 8:04 AM To: CF-Talk Subject: Re: Certificate expired? Funny that you mention that. 20 min ago we received calls from some of our

RE: session vs request ==> Multi-language site

2001-12-17 Thread Laure Lunot
Concerning Multi-language web site, can some of you give your experience on how to build such a site (for exemple a site in english, french, german). Which solution do you prefer to translate the content: Using structures in session variables, parts of text translated into fusebox-files, conditio

Re: Bug I think

2001-12-17 Thread David Brown
I would like to get the first date of month(date). I want the first date of month to do a dateadd in my recurring calendar app. - Original Message - From: "Garza, Jeff" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, December 17, 2001 11:17 AM Subject: RE: Bug I think

RE: Bug I think

2001-12-17 Thread Christopher Olive
it's because you're passing an integer (335) to the dateformat function. it doesn't recognize that as a valid date, so gives the "default date". christopher olive, cto, vp of web development cresco technologies, inc 410.825.0383 http://www.crescotech.com -Original Message- From: David B

RE: Bug I think

2001-12-17 Thread Garza, Jeff
This is how that function is supposed to operate. Firstdayofmonth() will return a julian date (day of the year). Dayofweek() requires a full date (mm-dd-). Think of it this way, how would dayofweek() know what year it is from a julian date? What are you trying to accomplish from this? Jef

RE: Bug I think

2001-12-17 Thread Steve Martin
True, but it isn't anything that you would normally do so there isn't really anything to worry about there. > -Original Message- > From: David Brown [mailto:[EMAIL PROTECTED]] > Sent: 17 December 2001 16:12 > To: CF-Talk > Subject: Bug I think > > > Server Product ColdFusion Serve

Bug I think

2001-12-17 Thread David Brown
Server Product ColdFusion Server Version 4, 5, 1, SP2 Edition Professional Has anyone see this? I am trying to find the firstdayofmonth(date) and then find what dayofweek(FirstDayofMonth(date)) is. For example: #firstday# #Weekday# This will give you: 335 for firstday (12

Re: Hello everyone.. question on converting a tag

2001-12-17 Thread Troy Montour
perfect.. thats what I needed thanks. Thanks Troy - Original Message - From: "Garza, Jeff" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, December 17, 2001 9:58 AM Subject: RE: Hello everyone.. question on converting a tag > Try the listToArray() function. This wil

Re: Certificate expired?

2001-12-17 Thread Marius Milosav
Funny that you mention that. 20 min ago we received calls from some of our customers with the same issue. It seams that it is a CF5 issue. Also related to the CFtree new behavior we found the following: 1)in CF4.x the treeview had default white background in CF5 with default settings (lookAndFeel

RE: Hello everyone.. question on converting a tag

2001-12-17 Thread Garza, Jeff
Try the listToArray() function. This will take a delimited list and convert it to a one dimensional array. Jeff Garza Lead Developer/Webmaster Spectrum Astro, Inc. 480.892.8200 [EMAIL PROTECTED] http://www.spectrumastro.com -Original Message- From: Troy Montour [mailto:[EMAIL PROTECTE

Hello everyone.. question on converting a tag

2001-12-17 Thread Troy Montour
Hello, I'm trying to convert an asp page to CF and not sure which tag to use for the ASP split tag any one have any idea's?? Thanks for your help Troy Montour ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http:/

RE: Certificate expired?

2001-12-17 Thread Ian Lurie
Yup, it still works, but that's not keeping all my clients from calling. Did Macromedia drop the ball on this? Ian -Original Message- From: Garza, Jeff [mailto:[EMAIL PROTECTED]] Sent: Monday, December 17, 2001 7:47 AM To: CF-Talk Subject: RE: Certificate expired? Yup... Me too. If yo

RE: Certificate expired?

2001-12-17 Thread Garza, Jeff
Yup... Me too. If you click through the alert, the applet will still load... Thankfully I'm only using It internally for some admin functions Jeff Garza Lead Developer/Webmaster Spectrum Astro, Inc. 480.892.8200 [EMAIL PROTECTED] http://www.spectrumastro.com -Original Message- Fr

Certificate expired?

2001-12-17 Thread Ian Lurie
Just started getting a 'certificate expired' warning when you try to download the CFTREE applet on all of our CF sites, on several different servers. Anyone else seeing this? Ian Portent Interactive Using Process, Design and Content to create great web sites since 1995 Consulting, design, develo

Re: BrainFART: CFQuery conditional excecution

2001-12-17 Thread Richard L Smith
Yep, That't the one, knew it was something simple! Thanks.. - Original Message - From: "Steve Martin" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, December 17, 2001 10:26 AM Subject: RE: BrainFART: CFQuery conditional excecution > You mean like this: > >

RE: BrainFART: CFQuery conditional excecution

2001-12-17 Thread Pascal Peters
I was to quick in replying: IsDefined("Category1") ... IsDefined("Category2") -Original Message- From: Pascal Peters Sent: maandag 17 december 2001 16:29 To: CF-Talk Subject: RE: BrainFART: CFQuery conditional excecution SELECT ItemName, BrandName, RetailEach, RetailUnit, Uni

RE: BrainFART: CFQuery conditional excecution

2001-12-17 Thread Aaron Cooper
try changing your isdefined(#SubCategory1#) to isdefined("SubCategory1") also, it looks like you're going to get an error anyway - if the elseif part of your block gets run, you'll have a sql statement which reads something like: SELECT ... FROM ... OR ... which will throw an error. -Origi

RE: BrainFART: CFQuery conditional excecution

2001-12-17 Thread Pascal Peters
SELECT ItemName, BrandName, RetailEach, RetailUnit, UnitSize, DetailedDescription, ItemNumber, MainCategory, SubCategory1, SubCategory2 FROM MasterItemTable WHERE 0 = 0 AND (SubCategory1 = '#SubCategory1#') AND (SubCategory2 = '#SubCategory2#')

RE: BrainFART: CFQuery conditional excecution

2001-12-17 Thread Steve Martin
You mean like this: SELECT ItemName, BrandName, RetailEach, RetailUnit, UnitSize, DetailedDescription, ItemNumber, MainCategory, SubCategory1, SubCategory2 FROM MasterItemTable WHERE 0=0 AND (SubCategory1 = '#SubCategory1#') OR (SubCategory2 = '#

BrainFART: CFQuery conditional excecution

2001-12-17 Thread Richard L Smith
Hello, I trying to get this cfquery to run based on what link the user clicks, i.e. if the user clicks "somepage.cfm?SubCategory1=#SubCategory1#" then the first part of the WHERE should execute else the the OR should execute. I have tried CFQueryParam to no avail, here is the code I am using so

RE: Just when you thought the topic of locking wascompletelyexhausted...

2001-12-17 Thread Pascal Peters
Yes -Original Message- From: BILLY CRAVENS [mailto:[EMAIL PROTECTED]] Sent: maandag 17 december 2001 15:18 To: CF-Talk Subject: Re: Just when you thought the topic of locking wascompletelyexhausted... So would it simply not access the code within the lock? --- Billy Cravens - Orig

Re: Just when you thought the topic of locking was completelyexhausted...

2001-12-17 Thread BILLY CRAVENS
So would it simply not access the code within the lock? --- Billy Cravens - Original Message - From: "Pascal Peters" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, December 17, 2001 5:49 AM Subject: RE: Just when you thought the topic of locking was completelyexhaust

RE: session vs request

2001-12-17 Thread Peter Windemuller
you could use the session and copy it in a request structure variable in the application.cfm with duplicate(). You could do the query to fill the session only if the session variable does not exist, so not at every page. -Original Message- From: list peters [mailto:[EMAIL PROTECTED]] Sent

Re: session vs request

2001-12-17 Thread Paul Hastings
> multi-language site. Page content pulled from database. I originally had > all "static" text (such as headings) wrapped in a cfif tag. This got really > hard to deal with, and wasnt very clean code. why not initialize everything (all pages, all languages) into structure(s) based on language

session vs request

2001-12-17 Thread list peters
hi, I am trying to decide the best way to deploy an application.. background: multi-language site. Page content pulled from database. I originally had all "static" text (such as headings) wrapped in a cfif tag. This got really hard to deal with, and wasnt very clean code. solution: at the st

RE: Just when you thought the topic of locking was completelyexhausted...

2001-12-17 Thread Pascal Peters
The timeout is in seconds. How long it takes to obtain a lock, depends on the other locks in the application, the code in them, the number of usrs on your site, In short: it depends. If throwontimeout = "no", CF will just continue executing after the without generating an error. -Origi

Just when you thought the topic of locking was completely exhausted...

2001-12-17 Thread Kay Smoljak
I have a couple of questions about locking. Now, before you groan, I *do* know how I should be locking, where I should be locking, and why. What I am unclear on is exactly what the effects of using different values for timeout and throwontimout. I presume timeout is in seconds; how long should th

RE: String ends

2001-12-17 Thread Steve Martin
ListLast(string, "*") eq "END" > -Original Message- > From: Don Vawter [mailto:[EMAIL PROTECTED]] > Sent: 17 December 2001 01:10 > To: CF-Talk > Subject: Re: String ends > > > len(st) GE 4 and right(st,4) EQ "*END" > > (you need to check length because right(st,4) with give an > error