Re: Data Ignored Error

2002-04-02 Thread Jochem van Dieten
Gregory Taylor wrote: Jochem, If I sound a little confused by your statement, it's because I am. I'm not using a Unix box and telnet is turned off on this server. I was suggesting you can use a telnet client to connect to port 80 of your webserver and send some malformed request to

SQL Order By weirdness

2002-04-02 Thread Brian Scandale
Does anyone recognize why this list seems Out of Order? I am getting an odd result when using a calculation as the argument of an ORDER BY Statement... cfquery name=Hist SELECT Starts, Rejects FROM History ORDER BY ((Starts-Rejects)/Starts) /cfquery cfoutput query=Hist tr

RE: SQL Order By weirdness

2002-04-02 Thread Andy Ewings
Try putting the ((Starts-Rejects)/Starts) in your select list, give it an alias, and order by that alias -Original Message- From: Brian Scandale [mailto:[EMAIL PROTECTED]] Sent: 02 April 2002 10:33 To: CF-Talk Subject: SQL Order By weirdness Does anyone recognize why this list seems

RE: How can I add a timespan to a date in sql (access)?

2002-04-02 Thread Matthew R. Small
Thanks, Scott, but I don't think you caught that I don't want to use today(as in right now), but rather a date that is already in my database (called todate). cfquery name=getshows databasse=showstop select * from shows where #createodbcdate(now())# between todate and

RE: How can I add a timespan to a date in sql (access)?

2002-04-02 Thread Matthew R. Small
Just in case anybody is interested... Access SQL has a function DateAdd that is exactly like ColdFusion's. This is the working example cfquery name=getshows datasource=showstop select * from shows where #createodbcdate(now())# between todate and dateadd('ww',1,todate)

Re: Free tax software or cheapo

2002-04-02 Thread Mike Bruce
www.guru.com has an great time and billing system and it is free. Mike - Original Message - From: Owens, Howard [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, April 01, 2002 7:58 PM Subject: RE: Free tax software or cheapo I just pretty much always used regular old

Re: CFFORM

2002-04-02 Thread phumes1
The problem with this is I'm submitting from a drop-down menu which when a user is selecting the information is displayed in my iframe. I then have 2 submit buttons Add and Delete which I need to pass the #User# to another template to delete or add a group. !--- START RETURN LIST OF ALL NT

CFFUNCTION

2002-04-02 Thread Aidan Whitehall
OK, now I'm *really* curious - what is CFFUNCTION (saw it in the Beta teaser from MM)? I've applied to join, but can anyone give an outline of what it does? Is it a way of calling a UDF from within a tag? BTW, I don't want anyone to violate their NDA, if this constitutes a violation. Thanks

How do I let the ColdFusion server wait between two commands

2002-04-02 Thread Broek, ir. M.A. van den
Hello, I would like to zip a few files with cfexecute and then redirect to this zip file (see code below). The ColdFusion server has two wait a few seconds before the cflocation is executed, because it takes some time to zip the files. How can I accomplish that? Thank you, Machteld cflock

RE: How do I let the ColdFusion server wait between two commands

2002-04-02 Thread Neil Clark - Team Macromedia
Put the execute on one page and then put the copy/ftp on an include. __ 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

Re: How do I let the ColdFusion server wait between two commands

2002-04-02 Thread Jochem van Dieten
Broek, ir. M.A. van den wrote: Hello, I would like to zip a few files with cfexecute and then redirect to this zip file (see code below). The ColdFusion server has two wait a few seconds before the cflocation is executed, because it takes some time to zip the files. How can I accomplish

RE: Being psychic with NT files and usergroups

2002-04-02 Thread Carlisle, Eric
I will certainly check this out. Many thanks, Howie! :) EC -Original Message- From: Howie Hamlin [mailto:[EMAIL PROTECTED]] Sent: Monday, April 01, 2002 3:16 PM To: CF-Talk Subject: Re: Being psychic with NT files and usergroups I think iHTK may suit your needs.

RE: Creating update statements on the fly

2002-04-02 Thread Jerry Staple
Try This UPDATE tablename SET blah = '#form.blah#' cfif isDefined(attributes.String1) ,string1 = attributes.String1 /cfif cfif isDefined(attributes.String2) ,string2 = attributes.String2 /cfif cfif isDefined(attributes.String3) ,string3 =

Chat

2002-04-02 Thread Andy Ewings
Has anyone implemented CFChat on any sites they have built and if so what sort of overhead was there on the server? __ Get the mailserver that powers this list at http://www.coolfusion.com FAQ:

RE: How do I let the ColdFusion server wait between two commands

2002-04-02 Thread Rick Eidson
There is a custom tag for this. CFX_SLEEP SLEEPTIME=3 Rick -Original Message- From: Broek, ir. M.A. van den [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 02, 2002 6:43 AM To: CF-Talk Subject: How do I let the ColdFusion server wait between two commands Hello, I would like to zip

Re: CFFUNCTION

2002-04-02 Thread Dave Carabetta
OK, now I'm *really* curious - what is CFFUNCTION (saw it in the Beta teaser from MM)? I've applied to join, but can anyone give an outline of what it does? Is it a way of calling a UDF from within a tag? BTW, I don't want anyone to violate their NDA, if this constitutes a violation. I

Re: CFFUNCTION

2002-04-02 Thread Dave Carabetta
OK, now I'm *really* curious - what is CFFUNCTION (saw it in the Beta teaser from MM)? I've applied to join, but can anyone give an outline of what it does? Is it a way of calling a UDF from within a tag? BTW, I don't want anyone to violate their NDA, if this constitutes a violation. I

RE: How do I let the ColdFusion server wait between two commands

2002-04-02 Thread Robert Everland
Or better yet, cfscript function sleep(timeMillis) { var thread = createObject(java, java.lang.Thread); thread.sleep(timeMillis); } /cfscript Haven't tested it yet, but that should work. Robert Everland III Dixon Ticonderoga Web Developer Extraordinaire

RE: CFFUNCTION

2002-04-02 Thread Mike Chambers
-Original Message- From: Aidan Whitehall [mailto:[EMAIL PROTECTED]] OK, now I'm *really* curious - what is CFFUNCTION (saw it in the Beta teaser from MM)? I've applied to join, but can anyone give an outline of what it does? Is it a way of calling a UDF from within a tag?

RE: CFFUNCTION

2002-04-02 Thread Mark A. Kruger - CFG
Mike, read the thread (we know) -Original Message- From: Mike Chambers [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 02, 2002 9:23 AM To: CF-Talk Subject: RE: CFFUNCTION -Original Message- From: Aidan Whitehall [mailto:[EMAIL PROTECTED]] OK, now I'm *really* curious

RE: CFFUNCTION

2002-04-02 Thread Aidan Whitehall
I believe that's a part of the NDA, as it's part of the new functionality of CF MX. Unless they actually described what it is in the beta teaser you're speaking of, just knowing it exists is as far as beta users can explain. By the way, it's part of one of the coolest features of CF MX

RE: CFFUNCTION

2002-04-02 Thread Michael Dinowitz
I want to thank all those who have posted that any talk on CF MX functionality on the list is a violation of NDA. The community deserves a round of applause for its ability to police itself and do so politely. I prefer this over forcing people to comply. It also sends a good message to

Re: line length in cfmail

2002-04-02 Thread Howie Hamlin
Actually, the RFC states 1000 characters. From RFC 2821: text line The maximum total length of a text line including the CRLF is 1000 characters (not counting the leading dot duplicated for transparency). This number may be increased by the use of SMTP Service

Re: line length in cfmail

2002-04-02 Thread Jochem van Dieten
Howie Hamlin wrote: Actually, the RFC states 1000 characters. From RFC 2821: text line The maximum total length of a text line including the CRLF is 1000 characters (not counting the leading dot duplicated for transparency). This number may be increased by the use of

udf browser / cflib.org

2002-04-02 Thread Raymond Camden
FYI, if you use the Studio UDF Browser for cflib.org, please grab the updated source at www.cflib.org. The recent upgrade has made the old versions incompatible. (Hey, if I were charging for this I'd be just like Microsoft! ;)

Dynamic update screen

2002-04-02 Thread Frank Mamone
Hi, I would would like to create a screen which can update several records with on screen. There are two field per record: QTY ID QTY is a dropdown. ID is prepopulated and not updateable. The number of records is not constant. I'm just wondering what is the best approach to process this

Re: line length in cfmail

2002-04-02 Thread Howie Hamlin
Right, 1000 characters max, like I said. Regards, Howie - Original Message - From: Jochem van Dieten [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, April 02, 2002 10:55 AM Subject: Re: line length in cfmail Howie Hamlin wrote: Actually, the RFC states 1000

Converting a CF Structured Array to a JS Structured Array ?

2002-04-02 Thread Justin Hansen
Does anyone have code that could convert a CF Structured Array to a JS Structured Array? And then convert it back? Justin Hansen -- Uhlig Communications Web Developer / Programmer -- [EMAIL PROTECTED] 913-498-0123 ext 284 --

RE: Converting a CF Structured Array to a JS Structured Array ?

2002-04-02 Thread Raymond Camden
CFWDDX :) cfset a = arrayNew(1) cfset a[1] = q cfset a[2] = d script cfwddx action=CFML2JS input=#a# toplevelvariable=foo /script === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL

Re: INPUT

2002-04-02 Thread phumes1
Yup, Me again, I'm trying to pass the #user# selected from the down-down menu to the hidden input field and pass that to my template. Lets say I select phumes1 from the list. I want this passed to my template file but all I get when I submit this code is. #MyGroups# form

RE: How do I let the ColdFusion server wait between two commands

2002-04-02 Thread Justin Greene
The problem with all the solution except this one is that they tie up a connection on the server, which is the last thing you want to do. Better to put the pause on the client side or have the client keep checking whether the task is complete. Perhaps with a simple META REFRESH to check for the

CF DTS Packages

2002-04-02 Thread Bosky, Dave
I have a user that uploads an Access database every 2 weeks and I want to create a DTS package to automatically Import the data into sql server. What are some good references for creating Access-SQL DTS packages? Would you schedule the package to run through sql server or should I setup a

Re: CF DTS Packages

2002-04-02 Thread Joel Firestone
Dave: I just did this. I simply scheduled the SQL server to run it. Then there's one less player in the game (CF server). My $.02. Joel - Original Message - From: Bosky, Dave [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, April 02, 2002 11:47 AM Subject: CF DTS

Way OT: SQL Server Replication

2002-04-02 Thread Andrew Peterson
Sorry for the OT post. I will be replicating a sql server db. The replica will be accessed by MS Access users using ODBC. My question is: Does SQL Server need to be installed on the server where the replica sits, or can all db views/inserts/updates/deletes be accommodated by the ODBC driver and

Re: Converting a CF Structured Array to a JS Structured Array ?

2002-04-02 Thread ksuh
Look at WDDX. It does all this. - Original Message - From: Justin Hansen [EMAIL PROTECTED] Date: Tuesday, April 2, 2002 9:37 am Subject: Converting a CF Structured Array to a JS Structured Array ? Does anyone have code that could convert a CF Structured Array to a JS Structured

ClusterCats, Verity, Cluster Questions

2002-04-02 Thread chris.alvarado
Here is the scenario. We have decided to cluster our server environment to improve performance as well as add more fail over assurance. Environment: 4 Identical servers. 1 File Server (where all of the files will reside) From what I have gathered about Cluster Cats, it requires that your

Re: line length in cfmail

2002-04-02 Thread Jochem van Dieten
Howie Hamlin wrote: Right, 1000 characters max, like I said. No. As it says in the intro, keywords should be interpreted as per RFC 2119. SHOULD is one of those keywords: quote 3. SHOULD This word, or the adjective RECOMMENDED, mean that there may exist valid reasons in particular

RE: Converting a CF Structured Array to a JS Structured Array ?

2002-04-02 Thread Justin Hansen
Sweet! That worked great for CF to JS. Any tips for going back? JS to CF. I was thinking about a JS that would pump the changed data into a hidden form field. Then looping through that to update the db. Any other ideas? -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED]]

detecting an image

2002-04-02 Thread Scott Mulholland
Any way using CF to tell if an image exists, and show another image if it doesn't? I don't think FileExists is not an option as the images are on a remote machine. CFHTTP and check the length of the response? TIA, Scott __

Re: detecting an image

2002-04-02 Thread Jochem van Dieten
Scott Mulholland wrote: Any way using CF to tell if an image exists, and show another image if it doesn't? I don't think FileExists is not an option as the images are on a remote machine. CFHTTP and check the length of the response? I would go for CFHTTP but for one of the customtag

SiteObjects

2002-04-02 Thread Eric J Hoffman
We are looking for a relatively inexpensive publishing solution that allows one to use a word/fp style interface for journalists from this client's site to paste in their short articles from word, add images (allowing uploading to server) and go. This looks like it can handle it...any thoughts

CFREPORT and Error 500

2002-04-02 Thread Wolf, Alan
I am trying to pass a variable to CFREPORT and I continue to receive the following. There is very little on the Allaire discussion forums about this. I am running CF 5 and CR 8.5. I thought the previous problems regarding CFREPORT has been fixed in CF 5. Anyone have an idea on this? Error

IE6 not acepting cookies on certain sites

2002-04-02 Thread Tony_Petruzzi
I posted this about 5 days ago and have narrowed down the problem. it seems that only ie6 has this problem. for some reason it will not accept cookie from one of the intranet servers we have. netscape accepts the cookie fine, but ie6 won't write the cookie. has anyone come across this problem? i

Re: IE6 not acepting cookies on certain sites

2002-04-02 Thread Critz
oi Tony!! just approve that site for the cookie just double click the alert icon in the status bar -- Critz Certified Adv. ColdFusion Developer Crit[s2k] - CF_ChannelOP Network=Efnet Channel=ColdFusion - Tuesday, April 2, 2002, 11:35:30 AM,

RE: IE6 not accepting cookies on certain sites

2002-04-02 Thread Christian Abad
Anthony: Welcome to the wonderful world of P3P (Platform for Privacy Preferences Project)! Visit http://www.w3.org/P3P/ for more information. In a nutshell, Microsoft introduced the first P3P-enabled web browser with the release of IE6. IE6 filters, or blocks, cookies that are deemed

RE: IE6 not acepting cookies on certain sites

2002-04-02 Thread Scott Mulholland
I have seen this at my place as well...weird thing is it only does it one our dev intranet. Same server, just different virtual domain. intranet1.domain.com is fine with IE6 intranet2.domain.com does not accept cookies have not found an answer yet either. -Original Message- From:

A little WDDX, a little JS, a little CFML, a little DHTML, but n o results

2002-04-02 Thread Owens, Howard
The following code is based on an example from Forta's Advanced book. The idea is to take a query and convert it to JavaScript for some dynamic selects of the details. The book example doesn't quite fit my needs, so I've tried modifying it, but I'm not getting the results expected ... what

Java CFX Question

2002-04-02 Thread VAN VLIET, SCOTT E (SBCSI)
Can you create a new query in a Java CFX, or can you only modify a passed query reference? When I try to create a query object, I receive an error message saying that com.allaire.cfx.Query is only an abstract, and cannot be instanciated. Any thoughts? TIA. Scott -- Scott Van Vliet Senior

Re: CFREPORT and Error 500

2002-04-02 Thread Rick Walters
In the CF Forums you can find a lot about using CFReport. Last I checked the tag was depreciated since version 5 of Crystal Reports. Crystal has it's own webserver product now. Crystal seems to have spent a good deal of time integrating their product with ASP. I also remember some

RE: Java CFX Question

2002-04-02 Thread Matthew R. Small
You can absolutely create a new Query object. What is the code that you're using? - Matt Small -Original Message- From: VAN VLIET, SCOTT E (SBCSI) [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 02, 2002 2:09 PM To: CF-Talk Subject: Java CFX Question Can you create a new query in a

Re: detecting an image

2002-04-02 Thread Jochem van Dieten
Jochem van Dieten wrote: Scott Mulholland wrote: Any way using CF to tell if an image exists, and show another image if it doesn't? I don't think FileExists is not an option as the images are on a remote machine. CFHTTP and check the length of the response? I would go for CFHTTP but for

RE: Java CFX Question

2002-04-02 Thread Pete Freitag
Yeah you have to use the addQuery method on the response object, it returns an implementation of the Query abstract class... String[] columns = {A, B, C}; Query query = response.addQuery(queryName, columns); .. int row = query.addRow(); query.setData(row, A, value); ..

RE: Java CFX Question

2002-04-02 Thread Pete Freitag
you can't say Query q = new Query(); because Query is an abstract class. See my previous email. -Original Message- From: Matthew R. Small [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 02, 2002 2:21 PM To: CF-Talk Subject: RE: Java CFX Question You can absolutely create a new Query

Re: A little WDDX, a little JS, a little CFML, a little DHTML, but n o results

2002-04-02 Thread ksuh
You have categories, but then you reference it as Categories - Original Message - From: Owens, Howard [EMAIL PROTECTED] Date: Tuesday, April 2, 2002 11:58 am Subject: A little WDDX, a little JS, a little CFML, a little DHTML, but n o results The following code is based on an example

RE: SiteObjects

2002-04-02 Thread Pete Freitag
Take a look at ActivEdit: http://www.cfdev.com/activedit -Original Message- From: Eric J Hoffman [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 02, 2002 1:21 PM To: CF-Talk Subject: SiteObjects We are looking for a relatively inexpensive publishing solution that allows one to use a

RE: Java CFX Question

2002-04-02 Thread VAN VLIET, SCOTT E (SBCSI)
Got it ^_^ Thanks for the quick reply :) -- Scott Van Vliet Senior Analyst SBC Services, Inc. ITO Enterprise Tools Office: 858.886.3878 Pager: 858.536.0070 Email: [EMAIL PROTECTED] -Original Message- From: Pete Freitag [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 02, 2002 11:32

RE: What is MX

2002-04-02 Thread Kola Oyedeji
Surely in this case the function is to increase dev time lost by cross browser compatibly and perhaps to have modular GUI components and to decrease the amount of trips to the server... just my 2pence Kola -Original Message- From: Matthew R. Small [mailto:[EMAIL PROTECTED]] Sent: 01

RE: A little WDDX, a little JS, a little CFML, a little DHTML, bu t n o results

2002-04-02 Thread Owens, Howard
I made the change ... but it didn't make any difference. H. -Original Message- From: [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED]] Sent: Tuesday, April 02, 2002 11:20 AM To: CF-Talk Subject: Re: A little WDDX, a little JS, a little CFML, a little DHTML, but n o results

Re: RE: A little WDDX, a little JS, a little CFML, a little DHTML, bu t n o results

2002-04-02 Thread ksuh
Is Javascript throwing you an error anywhere? Also, try changing your div names. I know JavaScript goes weird when you have objects with the same names. - Original Message - From: Owens, Howard [EMAIL PROTECTED] Date: Tuesday, April 2, 2002 12:25 pm Subject: RE: A little WDDX, a

Re: RE: A little WDDX, a little JS, a little CFML, a little DHTML, bu t n o results

2002-04-02 Thread ksuh
Oh yeah, there's no onclick event for option. You have to move the event to the select tag. - Original Message - From: Owens, Howard [EMAIL PROTECTED] Date: Tuesday, April 2, 2002 12:25 pm Subject: RE: A little WDDX, a little JS, a little CFML, a little DHTML, bu t n o results I

Cold Fusion Journal Awards

2002-04-02 Thread Gordon Burns
Been catching up with email, and magazines etc. and see that quite a number of list members have been winning awards. Figleaf, Ben Forta, Michael who provides the list and others all getting mentions in the ColdFusion Developer's Journal annual awards. Congratulations to Howie and the team at

CF_404_errors_shared_hosting

2002-04-02 Thread coldfusion . developer
This is a shot in the dark ... Our company has a shared hosted site and we want to be able to control the error templates that are displayed when a user gets a 404 error for example. Our hosting company said they CAN'T help us, unless we migrate from a shared hosting to a co-located service.

RE: CF_404_errors_shared_hosting

2002-04-02 Thread Dan Phillips
Are they saying they can't setup a custom 404 page for you? You just have the generic Microsoft 404 page now on your site? I can't see why they won't do this for you. It just takes a couple of clicks in IIS. Dan Phillips CFXHosting.com -Original Message- From: [EMAIL PROTECTED]

RE: CF_404_errors_shared_hosting

2002-04-02 Thread Lee Fuller
Yep.. Pretty simple. Lee Fuller Chief Technical Officer PrimeDNA / AAA Web Hosting Corporations | -Original Message- | From: Dan Phillips [mailto:[EMAIL PROTECTED]] | Sent: Tuesday, April 02, 2002 12:45 PM | To: CF-Talk | Subject: RE: CF_404_errors_shared_hosting | | | Are

RE: CF_404_errors_shared_hosting

2002-04-02 Thread Michael Pool
http://www.cs.tut.fi/~jkorpela/www/404.html Check this out. It may help you. Michael Pool [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 02, 2002 3:40 PM To: CF-Talk Subject: CF_404_errors_shared_hosting This is a

Inform forms management beta open

2002-04-02 Thread Matthew Walker
Hi folks, The forms creation and handling tool I've been working on for the last few months is available for download as version 2 Beta (for CF5). Basically, this is a tool for building dynamic forms quickly and easily. Server-side validation is built-in, with client-side validation provided by

Error when submitting form to DB

2002-04-02 Thread Jamie Jackson
Please help me figure this out: I've got an online form that updates a MSSQL 2000 record. When I send more than 3500 characters, I get the error: OLEDB Error Code = 3621 The statement has been terminated. Here's the SQL: = update respondents set q1=6 , q10='XXX...this is the string

Re: CF DTS Packages

2002-04-02 Thread cf refactoring
I just learned how to do DTS transformations two weeks ago, and I figured out most of it just by playing around with the SQL Server Enterprise Manager. A good reference is DTS Transformations from WROX. But you don't need all of that. You can just use SQL Server 2000 programming, also from WROX.

Batch files and Scheduled tasks

2002-04-02 Thread Bosky, Dave
I need use the windows task scheduler to execute a CF script every 30 minutes. Does someone have a sample file to use as a guide? Thanks, Dave __ Signup for the Fusion Authority news alert and keep up with the latest

RE: detecting an image

2002-04-02 Thread Jim Taylor
This Should Do it cfif FileExists(images.gif) IMG SRC=image.gif WIDTH=18 HEIGHT=20 cfelse IMG SRC=Otherimage.gif WIDTH=18 HEIGHT=20 /cfif JT -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 02, 2002 12:22 PM To: CF-Talk Subject: Re: detecting

Re: Error when submitting form to DB

2002-04-02 Thread Paul Hastings
I've got an online form that updates a MSSQL 2000 record. When I send more than 3500 characters, I get the error: nvarchar == 2bytes per char. 4k nvarchar chars = 2k chars. so yes you've exceeded the column size. don't use N datatypes unless you need to, --- Outgoing mail is certified Virus

Re: detecting an image

2002-04-02 Thread David Hannum \(Ohio University\)
Try using the CF_IMAGE tag inside a CFTRY/CFCATCH Dave - Original Message - From: Scott Mulholland [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, April 02, 2002 1:09 PM Subject: detecting an image Any way using CF to tell if an image exists, and show another image if

RE: SiteObjects

2002-04-02 Thread Eric J Hoffman
It would appear this does not allow you to upload a bunch of images at the time of creating the little article? -Original Message- From: Pete Freitag [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 02, 2002 1:34 PM To: CF-Talk Subject: RE: SiteObjects Take a look at ActivEdit:

RE: IE6 not acepting cookies on certain sites

2002-04-02 Thread Tony_Petruzzi
I have found the light http://support.microsoft.com/default.aspx?scid=kb;en-us;Q316112 basically you can't have illegal characters in the domain name. in my case it was a _. Anthony Petruzzi Webmaster 954-321-4703 http://www.sheriff.org -Original Message- From: Scott Mulholland

CFtransaction crap

2002-04-02 Thread Robert Everland
I have an AS/400 and I am not sure if it supports transactions and I want to test it. Is the syntax for cftransaction correct below. I would like to pretend there is an error right after I insert the newlinenumber and I would like to roll that back. cftransaction action=BEGIN

RE: SiteObjects

2002-04-02 Thread Pete Freitag
Eric, You can upload multiple images per session, but the online demo has image uploading disabled because we have hundreds of people using the demo every day, that would be a lot of storage. + Pete Freitag ([EMAIL PROTECTED]) CTO, CFDEV.COM

query loop error

2002-04-02 Thread Shawn Regan
I keep getting this error: Cannot set default query to LESSON A query by this name is not available at this time The error occurred while processing an element with a general identifier of (CFOUTPUT), occupying document position (50:2) to (50:31) in the template file I can't seem to figure

Re: query loop error

2002-04-02 Thread Jerry Johnson
Not quite sure here, but... You have a query loop using a query named lesson. You then have an output loop with a query named #quiz_name# with a field named lesson. It may be that the inner loop can't resolve between the query lesson and the variable lesson. what if you used 1. called the

RE: CFtransaction crap

2002-04-02 Thread David Schmidt
Robert, I generally use cftry/cfcatch in conjunction with cftransaction. This allows you to roll back if errors are encountered. The general outline is this: cftransaction action=BEGIN cfset doCommit = True cfquery whatever... some sql... /cfquery cfquery whatever... some

CFTREE no longer delivering form node values?

2002-04-02 Thread Ian Lurie
Hi all, I've got a CFTREE that I've been using, literally, for 3 years without a hitch. Suddenly today, we started getting CF errors indicating that the form.cats.node value is no longer being passed. I've checked everything - the code is literally untouched since 2000. Could it be a special

compilation error from POST????

2002-04-02 Thread Jeff Fongemie
Hello everyone, For some reason, CF gives me an error with this line: FORM ACTION=https://myotjersite.cfm; METHOD=post I'm I missing something all of a sudden?? I've got a closing form tag too. Just in time compilation error Invalid parser construct found on line 184 at position

RE: query loop error

2002-04-02 Thread Andy Ousterhout
Question, do you have query call lesson earlier in your program? if so, is quiz_name a field from the query? If not, are you trying to loop through the query inside the loop? If so, pull that query outside the loop, name it lesson and you should rock. Also, is lesson a field in faxdata_text? I

RE: CFtransaction crap

2002-04-02 Thread David Schmidt
Whoops, This should be correct. Sorry for the mis-code. :) Robert, I generally use cftry/cfcatch in conjunction with cftransaction. This allows you to roll back if errors are encountered. The general outline is this: cftransaction action=BEGIN cfset doCommit = True cftry cfquery

RE: detecting an image

2002-04-02 Thread Scott Mulholland
Not in my case though, the images are on a remote server :) -Original Message- From: Jim Taylor [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 02, 2002 4:20 PM To: CF-Talk Subject: RE: detecting an image This Should Do it cfif FileExists(images.gif) IMG SRC=image.gif WIDTH=18

Re: compilation error from POST????

2002-04-02 Thread Alex
what is this? https://myotjersite.cfm On Tue, 2 Apr 2002, Jeff Fongemie wrote: Hello everyone, For some reason, CF gives me an error with this line: FORM ACTION=https://myotjersite.cfm; METHOD=post I'm I missing something all of a sudden?? I've got a closing form tag too.

RE: query loop error

2002-04-02 Thread Shawn Regan
Yes, Thanks I just figured it out also. It was the problem with my query being the same name as the field name #lesson# duh! Thanks guys Shawn Regan Applications Developer Pacific Technology Solutions -Original Message- From: Jerry Johnson [mailto:[EMAIL PROTECTED]] Sent: Tuesday,

JRE 1.4 problems with CFTREE

2002-04-02 Thread Ian Lurie
It appears that the last two versions of the JRE don't support CFTREE. Or vise-versa. The end result is the same - you can no longer pass variables from CFTREE to another template in the form scope. Anyone else experiencing this? I'll apologize in advance if it's just me, but there is at least

Dynamic Insert Query Issue

2002-04-02 Thread Brunt, Michael
This is difficult to explain but I will try my best. I have an Insert Query which will be passed a list of values from a form. This form is dynamically generated from a previous query result set so by the time the form is generated we know the number of records returned used for building the

Re: SQL: How can I add a timespan to a date in sql (access)?

2002-04-02 Thread ksuh
Access has it's own now() function, as well as a dateadd() function that you can use. I prefer to use database functions for stuff like this, as opposed to doing the work in CF and then creating a dynamic query. - Original Message - From: Matthew R. Small [EMAIL PROTECTED] Date:

Last Chance - CF102: One Day ColdFusion Intro

2002-04-02 Thread Michael Smith
This Wednesday, April 3rd, we are offering our full day introduction to ColdFusion. Get a jump on ColdFusion and get started fast. Whether you are new to ColdFusion or you are looking for a refresher course, this could be the class for you. Don't miss out - this full day class will be held this

I am fried

2002-04-02 Thread Clint Tredway
I have had a very long day and I need some assistance. I need to break a recordset into columns.. how?? I have tried using the MOD operator, but it is not helping.. I know this and I just cannot think of it.. TIA, Clint __

RE: compilation error from POST????

2002-04-02 Thread Tim Painter
Check any cf code right above that line. You may have forgot to put a closing bracket or parentheses. Tim P. -Original Message- From: Jeff Fongemie [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 02, 2002 5:37 PM To: CF-Talk Subject: compilation error from POST Hello everyone,

Re: I am fried

2002-04-02 Thread Jim Gurfein
This might help... been working with it for 3 days!!! table tr cfoutput query=qname CFSET ROWCOUNT=ROWCOUNT+1 td valign=top Do something cfif ROWCOUNT mod 3 is 0/td/trtr cfelseif rowcount is query.recordcount/td cfelse/td /cfif /cfoutput /tr /table At 06:17 PM 4/2/2002 -0600, you wrote: I

RE: I am fried

2002-04-02 Thread Clint Tredway
thanks that helped, I was real close and your code sparked my memory! -Original Message- From: Jim Gurfein [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 02, 2002 6:38 PM To: CF-Talk Subject: Re: I am fried This might help... been working with it for 3 days!!! table tr cfoutput

How to display each start and end date of all 12 weeks in a quarter?

2002-04-02 Thread han peng
hihi anyone know how shld i go abt doing it given a 1,2,3, or 4 as quarter and a year(eg 2002). i shld be able to produce something like this..: User make a choice : 4 th quarter of 2001... DISPLAY: WEEK4243 4445

RE: CFREPORT and Error 500

2002-04-02 Thread Gieseman, Athelene
I use Crystal 8.0 web page server. It's very easy to pass information from CF to the Crystal report. The following is an example of what I've done that has worked for me: cflocation url=http://kcweb/firmdaily/isweb/ISBudget/PO.rpt?Prompt0=#FindPO#; FindPO is the variable I'm sending from CF.

RE: I am fried

2002-04-02 Thread Brook Davies
spanked your monkey? At 06:46 PM 02/04/02 -0600, you wrote: thanks that helped, I was real close and your code sparked my memory! -Original Message- From: Jim Gurfein [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 02, 2002 6:38 PM To: CF-Talk Subject: Re: I am fried This might

Re: Dynamic Insert Query Issue

2002-04-02 Thread Frank Mamone
How about if you make the unused fields on your form invisible and give them a value which you can detect on your processing page and set them to null. A little more work on the form generation side. Another way to do it is to use a set if Isdefined(Form.Adresses_X) on the processing page and

best password encryption method

2002-04-02 Thread Mak Wing Lok
anyone can suggest what is the best method to encrypt password that stored in the database? --- Pharmaniaga Berhad, your integrated healthcare provider www.pharmaniaga.com.my www.ehealth4all.com, your most convenient way

RE: JRE 1.4 problems with CFTREE

2002-04-02 Thread Jeff Green
I downloaded the lastest jdk 1.4 and cfgrid no longer works on my machine jeff -Original Message- From: Ian Lurie [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 02, 2002 3:10 PM To: CF-Talk Subject: JRE 1.4 problems with CFTREE It appears that the last two versions of the JRE don't

  1   2   >