Comparing Dates Functions

2001-10-25 Thread Paige Chandler
Hello All, I'm having difficulty comparing a date range to DateLastModified, returned from CFDirectory. I've explored most of the date functions but can't find the function and syntax to do the job. Any help would be appreciated. TIA. Have a nice day. Regards, Paige

AS400 Stored Procedure without using CFSTOREDPROC?

2001-10-25 Thread Nathan Stanford
CFSTOREDPROC PROCEDURE=ASTDTCCK.TESTPRC14 DATASOURCE=ork DEBUG=Yes CFPROCPARAM TYPE=IN cfsqltype=CF_SQL_CHAR VALUE=12345678 variable=dealer_number CFPROCPARAM TYPE=INOUT cfsqltype=CF_SQL_CHAR VALUE=ABCDEFG variable=price /CFSTOREDPROC The above stored proc works against the AS400. How

RE: Access Default values

2001-10-25 Thread Aidan Whitehall
You can set the default value of a field in an Access table's design view. He wanted to set default values as part of a CREATE TABLE statement. -- Aidan Whitehall [EMAIL PROTECTED] Macromedia ColdFusion Developer Fairbanks Environmental +44 (0)1695 51775

RE: Regular Expression

2001-10-25 Thread Alistair Davidson
Michael Try REReplace( string, .*(URL=)([^[:space:]]+).*, \2 ) A loose translation - 1) look for any character (.) any number of times(*), followed by 2) the string URL=, followed by 3) anything other than a space ([^[:space:]]), at least once (+) 4) Replace that whole lot with whatever bit

RE: Comparing Dates Functions

2001-10-25 Thread Joseph DeVore
This code should help you out. You can compare the dates down to the second. The function datecompare has an optional parameter (It's the precision of the comparison) The parameter can have any of the following values: sPrecise to the second nPrecise to the minute hPrecise to

RE: Checking file size before upload.

2001-10-25 Thread Tilbrook, Peter
I don't thinks so. At least not with CF as standard. Peter Tilbrook ColdFusion Applications Developer Australia New Zealand Food Authority Boeing House 55 Blackall Street BARTON ACT 2600 Ph: +61-2-6271-2671 Fax: +61-2-6271-2278 http://www.anzfa.gov.au -Original Message- From: Lon Lentz

Server Installation Question

2001-10-25 Thread Kevin Mansel
When setting up cf 4.5, do you have to stop the IIS service?Or does it stop the IIS service? And do you have to reboot after the installation is complete? Just wondering if anyone knows this stuff off the top of their head. Thanks, Kev ~ Kevin Mansel Senior Web

Re: Running app from server...HELP!

2001-10-25 Thread James Sleeman
At 01:51 AM 10/24/2001, you wrote: Hi, I've posted this before but I'm at a dead end. I have no idea how to go about this. I'm listing files in a directory on my server. All files are wrapped with a href.../a. What I want to happen is when a user clicks on a file I want that file opened in an

Re: How to auto generate images?

2001-10-25 Thread James Sleeman
Hunt around for the CFX_IMAGE tag, it might not be on the developers exchange so a google search is in order... http://www.google.com/search?q=cfx_image At 06:45 AM 10/24/2001, you wrote: Does anyone know how to dynamically generate formatted images. i.e. 1. A client fills out a web site

When is a cookie set in the browser

2001-10-25 Thread Aidan Whitehall
When setting a cookie in a page that throws a ColdFusion error, the cookie doesn't get set in the browser. Why is that? Does the instruction to the cookie not get sent until the page is successfully parsed? Thanks -- Aidan Whitehall [EMAIL PROTECTED] Macromedia ColdFusion Developer

RE: Access Question

2001-10-25 Thread Owens, Howard
Try: SELECT* FROM messages WHERE message_date = #CreateODBCDate(attributes.datebox)# H. Howard Owens Internet Operations Coordinator www.insidevc.com [EMAIL PROTECTED] AIM: GoCatGo1956 -Original Message- From: Greg Luce [SMTP:[EMAIL

Tracking time in CF

2001-10-25 Thread Mike Tangorre
Hi everyone. I am trying to find a way on how to do the following securely. I have a website that has 4 chat rooms. Chat Room A = $0.50/minute Chat Room B = $0.60/minute Chat Room C = $0.70/minute Suppose when people sign up they prefill their account with X amount of dollars. Is there a way in

Re: Access Question

2001-10-25 Thread David Green
This is what works for me. I don't know if it's the best way but it seems to work fine with access and ODBC drivers. Good Luck David DT = #CREATEODBCDATE(FORM.P_DATE)# - Original Message - From: Greg Luce [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, October 18,

Default Value for CFTree

2001-10-25 Thread Ulf Unger
Hi, I have a table with categories stored with their id and parent_id. I would like to use CFTree to show the category tree in an Input / Update form. In the input form there is no problem - but how can I provide a default value to cfree in an update form to show the selected category. I

RE: Running app from server...HELP!

2001-10-25 Thread phumes1
I have the following lines of code to open a file from the server on the client PC using ultraedit. cfheader name=Content-Disposition value=filename=#FileName# cfcontent type=text/plain file=#DirPath#\#FileName# deletefile=No It works great (Thanks Dave) except for a few things. For example,

Macromedia/Allaire Knowledge Base

2001-10-25 Thread Tracy Bost
I'm am very frustrated with the Knowledge Base at Macromedia/Allaire. If it wasn't for posting a problem here or doing a search through the CF Talk archives, I would have ditched ColdFusion a long time ago. Its just when this list is down, that something like that is appreciated. One would

RE: Access Question

2001-10-25 Thread Greg Luce
Like I said earlier: If I use single quotes around #attributes.datebox# it gives me an error saying datatype mismatch. I just disregarded using access and made a SQL Server db for it. It works in SQL Server. Greg Luce 954-763-4504 It's doing the math. It thinks 10/18/2001 is 10 divided by

Declare a variable as a string in SQL

2001-10-25 Thread Dusty Tinashe Shoko
How do I declare a variable as a string in SQL? I want to create tables dynamically in Coldfusion and Access and some of the input will be huge amounts of text And when we think we getting a lil stronger Thats when we weakest of all!! We think we're holding onto something special That very

Multiple request scopes?

2001-10-25 Thread Mike Kear
The request scope, as I understand it, contains variables that are available for all templates executing from one page, including any included templates. But what happens if two users are simultaneously executing the same page? Are there two copies of the request scope? Or do they share the

WDDX question

2001-10-25 Thread Neil Clark
WDDX will support any type of variable/char thrown at it, it is simply XML. Regads Neil Team Macromedia ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community.

RE: Multiple request scopes?

2001-10-25 Thread Craig Dudley
The request scope exists on a per http request basis, ie the variables in the request scope only exist while the webs server/application server are completing that single request.They die immediatley CF has finished processing the request. If your'e server is set up to process 5 maximum

cfmail and more than 1 cc problem

2001-10-25 Thread Seamus Campbell
Hi I am using cfmail to send some emails to more than one person A cannot, however, get it to work after I have more than one cc Here is my code: cfmail to=[EMAIL PROTECTED] from=[EMAIL PROTECTED] subject=TEST cc=[EMAIL PROTECTED],[EMAIL PROTECTED] TESTING /cfmail It works perfectly until I

RE: cfmail and more than 1 cc problem

2001-10-25 Thread Will Swain
should the cc addresses be separated by a ; not a comma? they certainly need to be when I add more than one to outlook when wending a mail. HTH Will -Original Message- From: Seamus Campbell [mailto:[EMAIL PROTECTED]] Sent: 25 October 2001 10:20 To: CF-Talk Subject: cfmail and more

Updating an XML file so Flash can use it

2001-10-25 Thread Jeff Green
Hi all, I have a client that needs CF to update an XML file that flash reads to display info. I was wondering if anyone has any tips, tags, or advice to help get me started on my project of updating his existing XML file. Also, I know that CF supports WDDX, which is a dialect of XML, I was

Displaying Word Docs with CF -- Urgent!!!

2001-10-25 Thread Ianv2
Hi Fellow Developers. I wish to display MS Word docs in an html page/browser via Coldfusion. These word docs are currently stored in BLOBS in an Oracle 8 database, Is this achieveable and what is the process to achieve this? ~~ Get the

RE: cfmail and more than 1 cc problem

2001-10-25 Thread Seamus Campbell
I tried that but still didn't work Ta Seamus At 07:29 pm 25/10/01 , you wrote: should the cc addresses be separated by a ; not a comma? they certainly need to be when I add more than one to outlook when wending a mail. HTH Will -Original Message- From: Seamus Campbell [mailto:[EMAIL

RE: cfmail and more than 1 cc problem

2001-10-25 Thread Mark Smyth
hi no the commas are the correct delimiter i just tested the code here and it works fine that would make me think its a problem with your mail server what errors are you getting? mark -Original Message- From: Seamus Campbell [mailto:[EMAIL PROTECTED]] Sent: 25 October 2001 10:41 To:

Oracle and CF

2001-10-25 Thread Simon Whittaker
hello there, I am having some trouble connecting ColdFusion to an Oracle Datasource on a different machine. It seems that we may be missing a driver somewhere along the line but am not exactly sure what to do next - does anyone have any advice? Also, what are the major differences between

HTTP Posts with a java cfx

2001-10-25 Thread Craig Dudley
Good morning all, I'm trying to write a java custom tag to do a simple http post and read the response into a variable, I'm getting the same error no matter what method I try. Basically it's for posting small xml packets to an SMS service provider. I've tried this with 20+ differnet url's, all

RE: cfmail and more than 1 cc problem

2001-10-25 Thread Will Swain
my bad, you are absolutely right. just tried it with the commas too and it works fine for me. -Original Message- From: Mark Smyth [mailto:[EMAIL PROTECTED]] Sent: 25 October 2001 10:45 To: CF-Talk Subject: RE: cfmail and more than 1 cc problem hi no the commas are the correct

RE: Updating an XML file so Flash can use it

2001-10-25 Thread Joseph DeVore
Jeff, You could use SOXML, it provides ColdFusion programmers with an easy to use interface for integration of XML with CF. This custom tag is open-source (of course), free, and action based. These actions include: • XML2CF (Converts a XML document into a complex CF structure) • XML2DOM

RE: Displaying Word Docs with CF -- Urgent!!!

2001-10-25 Thread Joseph DeVore
You need to use cfcontent with the type=application/msword or application/rtf Joseph DeVore VeloxWeb Technologies -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 25, 2001 2:34 AM To: CF-Talk Subject: Displaying Word Docs with CF --

RE: cfmail and more than 1 cc problem

2001-10-25 Thread Joseph DeVore
If you still can't get it to send multiple emails, a workaround would be to loop over a list of email addresses. cfset emailList =[EMAIL PROTECTED],[EMAIL PROTECTED] cfloop list=#emailList# index=i cfmail to=#i# . /cfmail /cfloop Joseph DeVore VeloxWeb Technologies -Original

RE: Access Question

2001-10-25 Thread Tony Gruen
Try ... WHERE message_date = '#attributes.datebox#' -Original Message- From: Greg Luce [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 18, 2001 5:45 PM To: CF-Talk Subject: Access Question I haven't used access much, so I'm sure this is going to sound dumb, but can you think of

Re: HTTP Posts with a java cfx

2001-10-25 Thread nagraj
Hai Craig, This is specially when you donot give exception throws exception clause processrequest() method. Is the syntax as below. Please check it public void processRequest(Request req,Response res) throws Exception { } Regards Nagaraj - Original Message - From: Craig Dudley

RE: HTTP Posts with a java cfx

2001-10-25 Thread Craig Dudley
It already does ? -Original Message- From: nagraj [mailto:[EMAIL PROTECTED]] Sent: 25 October 2001 11:30 To: CF-Talk Subject: Re: HTTP Posts with a java cfx Hai Craig, This is specially when you donot give exception throws exception clause processrequest() method. Is the syntax as

RE: Updating an XML file so Flash can use it

2001-10-25 Thread Rich Wild
Jeff, like Joseph said, there are the SOXML options to go down to alter your XML file - but you should be aware that Flash currently processes pure text variable files much quicker than XML files. This was an issue that Figleaf/Allaire/Macromedia came across during the development of the Flash

Oracle and CF

2001-10-25 Thread John Forrester
First to respond to the question about Oracle and CF. We have found that CF on Windows platform with ODBC drivers linking with Oracle DB on Windows or Linux boxes had few problems once we chose the native drivers from Oracle. The principal problem with connecting to an Oracle db was the

Problem with database insert

2001-10-25 Thread Lee Bailey - Element2 Limited
Hi all, I have a form which includes a file field, however this is an optional field for the user. The 'insert.cfm' page checks to see if the user has selected a file and if so gets the name of it and all the other form data and inserts it into a database. The problem I'm having is what code I

RE: Problem with database insert

2001-10-25 Thread Craig Dudley
Try this lee. !--- Upload File Attachment, check if user has selected a file first --- cfif Len(Trim(form.file_rfq)) GT 0 CFFILE action=UPLOAD FILEFIELD=file_rfq DESTINATION=d:\webserver\mysite\www\uploads\ NAMECONFLICT=makeunique cfset uploadedfilename = CFFILE.SERVERFILE cfelse

Re: Problem with database insert

2001-10-25 Thread Lee Bailey - Element2 Limited
Perfect! Thanks Craig, much appreciated :-) ~~ 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:

RE: Submitting forms without showing the action pages

2001-10-25 Thread Angel Stewart
Hmm.. Ok. So say you are at Page 1, and you then want to go to Page 2, but Page 1's data must be processed by Page1_Action.cfm You can use CFINCLUDE template=Page1_Action.cfm at the very top of Page 2, to run the action page, but still display Page 2. Do the same thing with page 3..etc. etc.

RE: cfmail and more than 1 cc problem

2001-10-25 Thread Mark Smyth
I'd be interested to see if that works. Because if it was a CF limitation the code wouldnt've worked here would it? Mark -Original Message- From: Joseph DeVore [mailto:[EMAIL PROTECTED]] Sent: 25 October 2001 11:13 To: CF-Talk Subject: RE: cfmail and more than 1 cc problem If you

RE: AS400 Stored Procedure without using CFSTOREDPROC? - Anyone?

2001-10-25 Thread Nathan Stanford
Can you not do it any other way? -Original Message- From: Nathan Stanford [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 24, 2001 7:59 AM To: CF-Talk Subject: AS400 Stored Procedure without using CFSTOREDPROC? CFSTOREDPROC PROCEDURE=ASTDTCCK.TESTPRC14 DATASOURCE=ork DEBUG=Yes

RE: cfmail and more than 1 cc problem

2001-10-25 Thread Seamus Campbell
Many thanks - this worked fine. I think there is something wrong with my ISP's mail server as I have just sent myself an email with 2 cc's and only get 2 of the 3 emails back I'll ring my ISP tomorrow Thanks to everyone who replied Seamus At 08:12 pm 25/10/01 , you wrote: If you still can't

RE: HTTP Posts with a java cfx

2001-10-25 Thread Mark Smyth
hi not sure if this will help but cfx_soap on cfdev has source code included regards mark -Original Message- From: Craig Dudley [mailto:[EMAIL PROTECTED]] Sent: 25 October 2001 11:15 To: CF-Talk Subject: RE: HTTP Posts with a java cfx It already does ? -Original Message-

RE: SQL question grouping, ordering, sorting

2001-10-25 Thread Alistair Davidson
Willy Try something like - SELECT TOP 10 (table).searchstring, 'NoSearches' = COUNT( tableAlias.ID ) FROM (table) INNER JOIN (table) tableAlias ON (table).searchstring = tableAlias.searchstring GROUP BY (table.searchstring) ORDER BY COUNT(

RE: client wants online credit card processing

2001-10-25 Thread Bud
On 10/18/01, Matt Robertson penned: Thats a valid point. real time cc processing isn't cheap, and generally is the wrong answer for a small business with an unproven web business model. Most of my clients don't use it, instead doing exactly what Paris mentions. Once they can't keep up with

Re: Percent calculation

2001-10-25 Thread Bud
On 10/19/01, Tilbrook, Peter penned: Hi there! I need to find the percentage of a value in ColdFusion but have been getting inconsistent results. eg: Initial Weight: 250 grams Weight Change: 10.7% Final Weight (would be 250 grams plus 10.7%): ?? and also for subtracting (weight reduction),

How to Handle Multiple CF Versions?

2001-10-25 Thread Voris, Jim
Say I have an application that will be deployed in mulitple environments, some which are CF 4.5, and some which are CF 4.0. In in the CF 4.5 environments, I want to use the cfmailparam tag. Is there anyway to prevent CF 4.0 from trying to parse this? Cftry doesn't work. Testing for version

CF Reporting question

2001-10-25 Thread Mark Robinson (National Express)
We have had a request to have data extracted by reports from a CF intranet with an Ingres database. Only being an amateur CF developer I wonder if anybody has any suggestion on how to do this. The ways we have thought of so far is perhaps using crystal reports (can this be plugged into CF

RE: CF Reporting question

2001-10-25 Thread Mark Smyth
hi mark i don't know about crystal reports but i use actuate reports quite alot these work with the database via odbc so, it's fairly easy to implement and once done the report is written the format can be switched between DHML, PDF and its native report format for delivery across different

Re: Comparing Dates Functions

2001-10-25 Thread Paige Chandler
Hi Joseph, Thanks. I'll be working on it again today. Have a nice day. Regards, Paige - Original Message - From: Joseph DeVore [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, October 25, 2001 2:56 AM Subject: RE: Comparing Dates Functions This code should help you

Why can't I buy JUST CFStudio 5?

2001-10-25 Thread Joshua Miller
Why is it that Macromedia insists on bundling CFStudio5 and UltraDev 4 together? Why can't I buy just CFStudio5? I can get JRun Studio, I can buy UltraDev without CFStudio, I can buy HomeSite but I can't buy just CFStudio5. I already own UltraDev4 and I really don't want to pay extra to have a

Popup calendar

2001-10-25 Thread Jones, Becky
Has anyone seen a good script that pops up a calendar and fills in not only a date in the text field but also a time? * This e-mail, including any attachments, is intended for the receipt and use by the intended addressee(s), and may contain

RE: Popup calendar

2001-10-25 Thread Neil Clark
Use the ColdFusion/Flash UI. Adding the date is easy. Neil Team Macromedia ~~ 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

Re: Why can't I buy JUST CFStudio 5?

2001-10-25 Thread Todd Ashworth
http://dynamic.macromedia.com/bin/MM/store/US/product.jsp?category=/Software /Development/StandAlones/ColdFusionStudiotype=FULL Todd - Original Message - From: Joshua Miller [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, October 25, 2001 8:55 AM Subject: Why can't I buy

Re: Popup calendar

2001-10-25 Thread corrigan
Neil, I'm interested in something like this too, but I'm not familiar with ColdFusion/Flash UI. Could you give a few more details? I'd love to find out more about it. Thanks, Michael Corrigan Programmer Endora Digital Solutions www.endoradigital.com 630/942-5211 x-134 - Original

RE: Popup calendar

2001-10-25 Thread Neil Clark
Hi Michael http://devex.allaire.com/developer/gallery/info.cfm?id=20C2283F-3392-11D5-83 F400508B94F380method=full Take a squiz at this... download and your away.. if you need a hand just shout. HTH Neil Team Macromedia ~~ Structure your

Re: Cold Fusion and Dynamic PDF Files

2001-10-25 Thread Chuck Rodgers
Hi, I've used activepdf toolkit. If you can afford this it will make your life much easier in dealing with pdfs. Chuck Rodgers At 10:03 PM 10/24/01 -0700, you wrote: http://partners.adobe.com/asn/developer/acrosdk/forms.html www.pdflib.com www.fastio.com www.activePDF.com Ive got some

Re: Popup calendar

2001-10-25 Thread corrigan
PERFECT Thanks Neil!!! Michael Corrigan Programmer Endora Digital Solutions www.endoradigital.com 630/942-5211 x-134 - Original Message - From: Neil Clark To: CF-Talk Sent: Thursday, October 25, 2001 8:13 AM Subject: RE: Popup calendar Hi Michael

RE: Popup calendar

2001-10-25 Thread James Taavon
also, you can go here. http://www.webtricks.com/Main.cfm -Original Message- From: Neil Clark [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 25, 2001 9:14 AM To: CF-Talk Subject: RE: Popup calendar Hi Michael

Re: Access Default values

2001-10-25 Thread Dina Hess
brainfart...that reply was definitely before coffee :( my apologies to the original poster. - Original Message - From: Aidan Whitehall To: CF-Talk Sent: Wednesday, October 24, 2001 4:05 AM Subject: RE: Access Default values You can set the default value of a field in an

Re: CFHTTP Replacement

2001-10-25 Thread Lewis Sellers
On Wed, 24 Oct 2001 23:05:03 -0500, David Brooks [EMAIL PROTECTED] wrote: Heya all, Anyone know of a good solution, cfx tag or otherwise, for a replacement for the CFHTTP tag? I consistently have had problems with CFAS 4.x and 5.0 servers. http://www.intrafoundation.com/tcpclient.html. It's a

RE: CFHTTP Replacement

2001-10-25 Thread Mark Smyth
hi lewis would you recommend this object for connecting to soap server if so, what advice would you give? if not, what would you recommend using with CF? tia mark -Original Message- From: Lewis Sellers [mailto:[EMAIL PROTECTED]] Sent: 25 October 2001 14:34 To: CF-Talk Subject: Re:

RE: Popup calendar

2001-10-25 Thread Angel Stewart
Error Occurred While Processing Request Error Diagnostic Information An error occurred while attempting to establish a connection to the service. The most likely cause of this problem is that the service is not currently running. You can use the 'Services' Control Panel to verify that the

Re: Why can't I buy JUST CFStudio 5?

2001-10-25 Thread Jeffry Houser
I assumed ( although do not know for a fact ) that the CF Studio 5 Ultradev 4 was just a first out the door thing. The product won't be available in a 'boxed' form until sometime in November. I suspect that we will be getting a single CF Studio package sometime soon. People with CF

Re: Why can't I buy JUST CFStudio 5?

2001-10-25 Thread Jeffry Houser
Forget everything I said in my last email. : ha, ha: They don't make it obvious, though. At 09:02 AM 10/25/2001 -0400, you wrote: http://dynamic.macromedia.com/bin/MM/store/US/product.jsp?category=/Software /Development/StandAlones/ColdFusionStudiotype=FULL Todd - Original Message

RE: Popup calendar

2001-10-25 Thread Angel Stewart
When you turn off the POPUP Attribute on the UI Calendar, it seems the user needs to DOUBLE CLICK on a particular date in order for that date to be registered as being selected. Is there any way to change this behaviour? As it is counter intuitive to a user to have to doubleclick a date,

RE: Server Installation Question

2001-10-25 Thread Mark Stewart
IIS needs to be running so CF can see it when you do the install. I can't remember if it prompts you to reboot, but nonetheless, it's always a good idea to do a reboot after you install something new. Mark -Original Message- From: Kevin Mansel [mailto:[EMAIL PROTECTED]] Sent: Wednesday,

pop up windows

2001-10-25 Thread Jones, Becky
i have a template that i want to be able to have a link that you would click on that would launch a popup window. the contents of that popup window when changed will effect the template underneath. my problem is that the window doesnt automatically close after i click on submit (an alert box

RE: Tracking time in CF

2001-10-25 Thread Mark Stewart
What about a scenario where they just close their browser? At that point, you at least have to have some javascript involved. Have you thought about using an applet instead? Mark -Original Message- From: Mike Tangorre [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 23, 2001 3:40 PM

RE: pop up windows

2001-10-25 Thread Janine Jakim
You can find this topic at the forums at http://www.tek-tips.com/ From what I understand the message will always appear on a windows machine- however, on the mac it closes automatically. -Original Message- From: Jones, Becky [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 25, 2001

RE: Why can't I buy JUST CFStudio 5?

2001-10-25 Thread Mark Stewart
Not obvious at all. They're going to become another Microsoft, just wait and see. Mark -Original Message- From: Jeffry Houser [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 25, 2001 12:58 PM To: CF-Talk Subject: Re: Why can't I buy JUST CFStudio 5? Forget everything I said in

RE: Macromedia/Allaire Knowledge Base

2001-10-25 Thread Raymond Camden
What is wrong w/ the KB? I mean what issues are you running into? === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful

RE: pop up windows

2001-10-25 Thread Richard B
I use the following script regularly, the only ime I get a message, is if the page being loaded is the result of a submit, in which case the browser asks if it is OK to resubmit the data. script language=JavaScript window.opener.location.reload(); window.close(); /script

RE: Macromedia/Allaire Knowledge Base

2001-10-25 Thread Robert Everland
I have never liked the KB myself either. You find more on the support forums then you do on there. I would like it if they were able to update the KB as an issue is resolved with CF. Microsoft, although they are the devil, has an awesome KB that you can find answers to every question you can

CFREPORT

2001-10-25 Thread Mark Robinson (National Express)
I am getting the error below when I try and use the CFREPORT tag. I have installed our copy of Crystal Reports 7 and I get the error below. Has anybody used CFREPORT tag successfully and have they got any tips that would help me. Error Diagnostic Information Error occurred while processing

cf_filter_duplicate_emails_from_query

2001-10-25 Thread coldfusion . developer
Hello, I am querying 3 tables that all contain email addresses. What I want to do is send an email using all the email addresses. I just want to make sure there aren't duplicate e-mail when i sent the email. I need some advice on how to remove duplicates.

Re: Checking file size before upload.

2001-10-25 Thread Lewis Sellers
On Thu, 25 Oct 2001 16:51:35 +1000, Tilbrook, Peter [EMAIL PROTECTED] wrote: I don't thinks so. At least not with CF as standard. I vaguely recall writing a custom http server and cfx to handle getting raw post data... I believe I intended to allow you to set a byte-limit and have the server

RE: cf_filter_duplicate_emails_from_query

2001-10-25 Thread Leon Greeff
Why don't you use distinct -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: 25 October 2001 05:12 To: CF-Talk Subject: cf_filter_duplicate_emails_from_query Hello, I am querying 3 tables that all contain email addresses. What I want to do is send an email

Re: Macromedia/Allaire Knowledge Base

2001-10-25 Thread Owen Leonard
I find the KB impossible to use as well. It seems that every time I'm looking for something, I put in a phrase or keywords to search for, and the results are zero. And usually the page doesn't even say, 'No results were found,' it's just empty. Usually I have to trim my search down to 1

OT Frontier Rochester

2001-10-25 Thread Rich Tretola
Anyone on this list work for Frontier Rochester, NY? Formally frontier Plano, TX Rich ~~ 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:

How do I check to see if cookies exist

2001-10-25 Thread Robert Everland
I am making an applications that will rely on cookies, basically session management, I don't want to pass cfid or cftoken because it is a shopping catalouge and will defeat the purpose if people can't link to my products on other websites. How can I check this? Robert Everland III Dixon

RE: cf_filter_duplicate_emails_from_query

2001-10-25 Thread Steven Monaghan
Would this work? CFQUERY NAME=all_emails datasource=#datasource# SELECT db1_email as email_field, FROMdb1 union SELECT db2_email as email_field, FROMdb2 union SELECT db3_email as email_field, FROMdb3 /cfquery CFLOOP QUERY=all_emails cfmail

RE: How do I check to see if cookies exist

2001-10-25 Thread Mark Smyth
why don't you just try setting a cookie on the 1st page that would tell you if they cookies enabled mark -Original Message- From: Robert Everland [mailto:[EMAIL PROTECTED]] Sent: 25 October 2001 16:19 To: CF-Talk Subject: How do I check to see if cookies exist I am making an

RE: How do I check to see if cookies exist

2001-10-25 Thread Will Swain
try setting one then check for its existence. This should tell you if the browser is allowing cookies. HTH Will -Original Message- From: Robert Everland [mailto:[EMAIL PROTECTED]] Sent: 25 October 2001 16:19 To: CF-Talk Subject: How do I check to see if cookies exist I am

RE: cf_filter_duplicate_emails_from_query

2001-10-25 Thread Lon Lentz
Have you tried unions? Another option is to convert the email query to a list and run it through a custom tag like cfx_listsort which can sort the list and dedupe it. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 25, 2001 11:12 AM

RE: CFHTTP Replacement

2001-10-25 Thread Lanny R. Udey
According to Dave Watts at the Devoloper's Conference, you cannot use CFHTTP. He used a TCP COM object although I don't remember which one. You may want to contact him. Lanny Udey Hofstra University [EMAIL PROTECTED] Thursday, October 25, 2001 hi lewis would you recommend this object for

validate email addresses in text area

2001-10-25 Thread Jeff Beer
Does anyone have a routine to parse and validate e-mail addresses in a text area? I'm having some trouble figuring out all the necessary steps. It would be cool if it could handle various delimiters (spaces, commas, etc) and validate each address, resulting in a simple comma delimited list of

RE: How do I check to see if cookies exist

2001-10-25 Thread Andy Ewings
yeh but remember that you can't write to a cookie and then read it within the same page call. -- Andrew Ewings Project Manager Thoughtbubble Ltd http://www.thoughtbubble.net

RE: How do I check to see if cookies exist

2001-10-25 Thread Robert Everland
I am trying that, it's not showing me that it wasn't set. Maybe because I set it then check to see if it exists right after. Robert Everland III Dixon Ticonderoga Web Developer Extraordinaire -Original Message- From: Will Swain [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 25, 2001

RE: Macromedia/Allaire Knowledge Base

2001-10-25 Thread Gary P. McNeel, Jr.
The Devil? That's how they suck you in. You are lost. ;) I agree. I have never counted on finding answers there, although I must admit I got close enough once to actually solve it after a bit of monkeying around. -Gary -Original Message- From: Robert Everland [mailto:[EMAIL

RE: CFHTTP Replacement

2001-10-25 Thread Lomvardias, Christopher
Another option If you are running CF on Windows is the ServerXMLHTTP object included in MS XML Parser 3 or later. The ServerXMLHTTP object provides for support for basic authentication, SSL and certificates. I will have a slide presentation on using ServerXMLHTTP available on

RE: Macromedia/Allaire Knowledge Base

2001-10-25 Thread Aidan Whitehall
It seems that every time I'm looking for something, I put in a phrase or keywords to search for, and the results are zero. Me too. -- Aidan Whitehall [EMAIL PROTECTED] Macromedia ColdFusion Developer Fairbanks Environmental +44 (0)1695 51775

RE: How do I check to see if cookies exist

2001-10-25 Thread Garza, Jeff
Set it with CF, check it with JavaScript. This has always worked for me for setting and reading a cookie on the same page. Othwise you'll have to use a gateway page that attempts the cookie set and then read if from a second page. Jeff Garza Lead Developer/Webmaster Spectrum Astro, Inc.

RE: CFHTTP Replacement

2001-10-25 Thread Dave Watts
According to Dave Watts at the Devoloper's Conference, you cannot use CFHTTP. He used a TCP COM object although I don't remember which one. You may want to contact him. I used Lewis Sellers' TCPClient COM object. It was very simple to use, making it good for demonstration purposes, and

CF4.5 and JRE: CFGRID won't run

2001-10-25 Thread andrew kopelman
I am trying to run an app with a CFGRID applet; CF4.5 is running, and I have JRE 1.2 ('classic') running. I believe the JVMP and Class Path are set correctly in the CFAdministrator, but .cfms with the CFGRID won't even load! Help! Thanks in advance, Andrew

RE: Popup calendar

2001-10-25 Thread wdlist
I have one at http://planeta.terra.com.br/informatica/vega/_opcal/cal_en2.html It has nothing to do with CF and it only puts the date into the field but that can be accomplished with a small script modification. Feel free to modify and use it if you like. __ Jones, Becky wrote:

RE: CFHTTP Replacement

2001-10-25 Thread Mark Smyth
hi i've been trying to get the xmlhttprequest com object working, but i keep getting the following error LoadRegTypeLi(4110913304, 29909128, 47497, u...)failed. Library not registered.

  1   2   3   >