RE: Downloading Files via CFContent

2001-08-07 Thread Craig Dudley
The cfcontent tag is fine. If that tag is in a file called dload.cfm, link to it like this.. dload.cfm/#filename#?file=#filename# It's a hack, but it works. -Original Message- From: Curtis C. Layton [mailto:[EMAIL PROTECTED]] Sent: 06 August 2001 18:21 To: CF-Talk Subject: Downloading

Subtract Null = Error

2001-08-07 Thread Gryphawk
Hi there I was hoping you could help me with a problem - I have a calculated value from the following code: cfoutputcfset newTotal =(Recordset2.TOTAL - Recordset1.TOTAL)#newTotal# /cfoutput Which works just fine when the Recordset2.TOTAL and Recordset1.TOTAL are populated by the SQL (as set

Re: Subtract Null = Error

2001-08-07 Thread Dick Applebaum
Look at the IsNumeric function HTH Dick At 9:41 AM +0100 8/7/01, Gryphawk wrote: Is there anyway to get around this such as an If Recordset.TOTAL = nothing, Then [don't subtract]? ~~ Structure your ColdFusion code with Fusebox. Get the

RE: Subtract Null = Error

2001-08-07 Thread Mark Smyth
HI Something like this should do it Depending whether the variable is null or has a value cf will evaulate which one to use automatically cfif Recordset2.Total is NULL Statements to deal with when the value is null cfelse cfoutputcfset newTotal =(Recordset2.TOTAL - Recordset1.TOTAL)#newTotal#

RE: Subtract Null = Error

2001-08-07 Thread Mark Smyth
Or actually, if the variable isn't even created you'll have to: cfif isDefined(Recordset2.Total) cfoutputcfset newTotal =(Recordset2.TOTAL - Recordset1.TOTAL)#newTotal# /cfoutput cfelse Statements to deal with when the value is null /cfif -Original Message- From: Mark Smyth Sent: 07

Urgent ! CFHTTP ....Connection Failed

2001-08-07 Thread JAIME HOI
hi have anyone tried sending sms using coldfusion ?? I was trying to do a CFHTTP on a website that enables sending of mesages to a specific service provider. But somehow , i also get this error Connection failed. I was not able to retrieve the specific web page. I was thinking , could it be

RE: Urgent ! CFHTTP ....Connection Failed

2001-08-07 Thread James Maltby
Jamie - we are working on an out-of-the-box custom tag application that you could just plug-in to your website (using CF) with a subscription to an SMS service centre (it will cost to send per message). If you are interested we could organise a beta test for you... Also, I know that Singapore

RE: Urgent ! CFHTTP ....Connection Failed

2001-08-07 Thread David Siew
Hi Jaime, You have a space after ...default.asp . Removing it would help. HTH. Regards David -Original Message- From: JAIME HOI [mailto:[EMAIL PROTECTED]] Sent: 07 August 2001 17:01 To: CF-Talk Subject: Urgent ! CFHTTP Connection Failed hi have anyone tried sending sms using

ColdFusion Memory Leak

2001-08-07 Thread Carlo van Wyk
Hi I recently upgraded to ColdFusion 5 from 4.5 . I notice that every 2 to 3 days my processor is running at 100%, and I have to stop the cfserver process and start it again. I know that this is a problem as I have seen other people post questions about it. I tried searching my older

RE: Cybersource

2001-08-07 Thread Philip Arnold - ASP
A company I am doing work for is looking at Cybersource at the payment processor and all development is being done in Cold Fusion. The business rules call for authorization of the credit card to happen both through a Web interface and through weekly recurring batches. In addition, the

RE: How can I insert a new record with no values?

2001-08-07 Thread Philip Arnold - ASP
INSERT INTO Table (Field1) VALUES (NULL) That should do it as long as the field can accept NULL values The autonumber field in my query does not accept nulls...but thank you for your input... I know you've already got a solution to this, but as I commented, as long as the field

RE: Urgent ! CFHTTP ....Connection Failed

2001-08-07 Thread JAIME HOI
hi james yes..i tried to connect to http://www.pcworld.com also failed. so dats why i am suspecting that it could be due to the firewall thing...yet i dun know how to resolve it . -Original Message- From: James Maltby [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 07,

RE: Urgent ! CFHTTP ....Connection Failed

2001-08-07 Thread JAIME HOI
Hi David, thanks ! i juz realised that using CFHTTP alone works, as in no errors were returned. But when i try to do a cfoutput#cfhttp.FileContent#/cfoutput, it gives me the error of Connection Failure . I have no idea why i cannot cfoutput the result ?

RE: Urgent ! CFHTTP ....Connection Failed

2001-08-07 Thread David Siew
Hi Jaime, Tried it from my side.. it worked without any problems. Can't say why it didn't work for you. Regards David Siew -Original Message- From: JAIME HOI [mailto:[EMAIL PROTECTED]] Sent: 07 August 2001 17:43 To: CF-Talk Subject: RE: Urgent ! CFHTTP Connection Failed Hi

Structure on Application Scope

2001-08-07 Thread Daniel Chicayban
Hello. I am trying to check if there's a Structure in the Application Scope with the IsStruct() function, unsuccessful. It's a simple application with a shopping cart. If the user add some products, I create a cart, but if the user wants to see the cart before the create procedure, I need to

RE: embedding a MIME image to an email - HELP URGENTLY!

2001-08-07 Thread Nick Betts
Hello all. I need to bulk email a database of users. BAsically, I have an image I need to embed in the email which is NOT pointing at a server, so somehow I need to embed the image into the email so that even people not online can view the image. Is there anyway using CFMAIl to do this?

Re: Structure on Application Scope

2001-08-07 Thread Daniel Chicayban
Ok, I am not sure what's going on yet, but I think I solve it. In app_locals.cfm of the cart circuit application (fusebox app) I am creating the cart. cfif isDefined(Application.Cart.u#CFID##CFTOKEN#) eq false cflock scope=APPLICATION type=exclusive timeout=10

RE: Urgent ! CFHTTP ....Connection Failed

2001-08-07 Thread Dick Applebaum
Probably the reason for the failure is that cfhttp doesn't resolve the urls for css. You can display the output with: cfoutput#Replace(CFHTTP.FileCOntent, , lt;, All)#/cfoutput HTH Dick At 5:42 PM +0800 8/7/01, JAIME HOI wrote: Hi David, thanks ! i juz realised that

ODBC? system32 location

2001-08-07 Thread Emmet McGovern
Does anyone know what file in WINNT/SYSTEM32 contains the odbc mappings for nt? I just went through the most butchered back asswards NT recovery and would like to not have to map all my DB's up again. Thanks Emmet ~~ Structure your ColdFusion

Re: ODBC? system32 location

2001-08-07 Thread Guy M. Saenger
It is in the registry. HKEY_LOCAL_MACHINE\Software\ODBC\ODBC.INI\ODBC Data Sources -- Guy M. Saenger [EMAIL PROTECTED] 214.448.8887 - Original Message - From: Emmet McGovern [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, August 07, 2001 5:36 AM Subject: ODBC? system32

RE: Urgent ! CFHTTP ....Connection Failed

2001-08-07 Thread Peter Lutwyche
Hi Jaime, Is CFHTTP working for any URL? Try something basic like www.yoursite.com first. When you say that i juz realised that using CFHTTP alone works, as in no errors were returned this seems to me that the tag is running, some sort of connectivity problem is occurring (for example, your

Re: Downloading Files via CFContent

2001-08-07 Thread [EMAIL PROTECTED]
Try this: http://cfapostle.com/tests/cfcontent/ A HREF=Download.cfm/LocalPeople.xlsView Local People/A /// Download.cfm // HTML TITLEBeer is Good/TITLE BODY BGCOLOR=CC CFCONTENT TYPE=application/vnd.ms-excel TABLE BORDER=EECCEE TR

RE: Urgent ! CFHTTP ....Connection Failed

2001-08-07 Thread Stephen Moretti
Jaime, Just so you know - you are unlikely to be able to send an SMS through this page as the SMS form is generated by a Java applet and not a standard HTML form. Regards Stephen -Original Message- From: JAIME HOI [mailto:[EMAIL PROTECTED]] Sent: 07 August 2001 10:01 To: CF-Talk

advanced security password compare

2001-08-07 Thread Mak Wing Lok
hi.. just wondering how i could compare the password that user key-in with the one in the LDAP server before i let the application update the password for the user, as i found out that the password i retrieve using cfa_userGet is encrypted but the password which user key-in in form field is in

RE: Subtract Null = Error

2001-08-07 Thread Christopher Olive, CIO
check out the NVL function. i'm assuming this is SQL server. if you NVL(total, 0) in your sql query, it will substitute 0 for the NULL values. i'm also assuming that negative #newtotal# is ok. chris olive, cio cresco technologies [EMAIL PROTECTED] http://www.crescotech.com -Original

Re: PREVIOUS 1 2 3 ... NEXT page codes

2001-08-07 Thread nyon
Hi, I manage to created buttons for Previous/Next in a search that returns 10 records each time. However, how can I put a more direct way to access the pages ie. Pages 1 2 3 4 (similiar to search engines). I know it involves some count, looping procedures. thanks nyon

RE: Embedding an image inline into an email

2001-08-07 Thread Nick Betts
Hello all. I need to bulk email a database of users. BAsically, I have an image I need to embed in the email which is NOT pointing at a server, so somehow I need to embed the image into the email so that even people not online can view the image. Is there anyway using CFMAIl to do this?

CF Forums - Weirdness

2001-08-07 Thread Edward Chanter
Ok, we've just set up forums on our system and it's behaving in a rather odd way, perhaps one of you lot has seen this before and knows a workaround. Ok, the way it's working is this: 1. User goes to conference 2. User is allowed in but with no rights to post or reply 3. User wants to post

RE: PREVIOUS 1 2 3 ... NEXT page codes

2001-08-07 Thread Joshua Miller
I've got a CF tag that your wrap around your output that creates a NEXTN situation ... if anyone's interested, I'll post it on a site so you can download it. We're going to be charging for it eventually, but until we come up with a price, I'll hand a few out as freebies. Thanks, Joshua Miller

RE: CF Forums - Weirdness

2001-08-07 Thread Schlosser, JoAnn
I like the ActiveFeedback Forums - there is a link to it from the Developer's Exchange. Really simple to implement and administer. JoAnn A. Schlosser Consultant Association Management Software Grant Thornton LLP Washington, D. C. 703.837.4428 -Original Message- From: Edward Chanter

Word,Excel-Links to

2001-08-07 Thread Hirschman, Miriam
Hi, I asked this question before,but got no answer and I need help. How can I create a link to a Word or Excel document that is held in an Access DB as an OLE Object? Thanks ~~ Structure your ColdFusion code with Fusebox. Get the official book

Re: Locked Database

2001-08-07 Thread Jeffry Houser
I'd advise against this usage. Performing invalid queries isn't the preferred method. Using the CFusion_DBConnections_Flush() function is a much more stable way to unlock an Access database. At 10:32 PM 08/06/2001 -0400, you wrote: The simplest way is to make a bogus call to the database

cfhttp/cflocation

2001-08-07 Thread Ken Beard
cfhttp is returning a connection failure when i send it to a valid url which cflocates to another valid url, which happens to be the same file that is originally doing the cflocating (b/c i'm doing fusebox everything is index.cfm). You may ask, why would you ever do that? And I could tell

RE: CF Forums - Weirdness

2001-08-07 Thread Declan Maher
Dalai, Is it the free forum from allaire that you mean by CF Forums If so did you know that there is a forum for it at www.forumspot.org If you dont know about it its opensource. You can download it from the above address also. There are a few errors in the files such as attachments etc. Most of

Date as absolute integer?

2001-08-07 Thread Tristram Charnley
Is there a way to return a date as an integer a bit like DayOfYear returns the day of the year as a number? I'm sure I've seen it done somewhere. Tristram Charnley ~~ Structure your ColdFusion code with Fusebox. Get the official book at

RE: cfhttp/cflocation

2001-08-07 Thread Craig Dudley
I don't think that is ever going to work, the cflocation will be re-writing the http header and therefore the response code will not be 200 (success) so cfhttp will have problems. -Original Message- From: Ken Beard [mailto:[EMAIL PROTECTED]] Sent: 07 August 2001 17:45 To: CF-Talk

Crystal Reports without cfreport

2001-08-07 Thread Todd Ashworth
Does anyone have an example of connecting to a Crystal Reports report without using cfreport? Can this even be done? Todd ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ:

RE: Crystal Reports without cfreport

2001-08-07 Thread Schlosser, JoAnn
Here is the contents of a page that I use to open a particular report. IP's and passwords are changed to protect the vulnerable - and my job :-) == BODY BGCOLOR-C6C6C6 LANGUAGE=VBScript ONLOAD=Page_Initialize OBJECT ID=CRViewer CLASSID =

RE: Date as absolute integer?

2001-08-07 Thread Schlosser, JoAnn
DateFormat it as mmdd JoAnn A. Schlosser Consultant Association Management Software Grant Thornton LLP Washington, D. C. 703.837.4428 -Original Message- From: Tristram Charnley [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 07, 2001 9:51 AM To: CF-Talk Subject: Date as absolute

RE: OLE Object

2001-08-07 Thread David Shadovitz
Miriam, * Query to get the OLE Object * Write it to a file on the server * Offer a hyperlink to the file on the server -David On Monday, August 06, 2001 9:36 AM, Hirschman, Miriam [SMTP:[EMAIL PROTECTED]] wrote: -Original Message- From: Hirschman, Miriam Sent:

RE: CF Forums - Weirdness

2001-08-07 Thread Edward Chanter
-Original Message- Is it the free forum from allaire that you mean by CF Forums Yes If so did you know that there is a forum for it at www.forumspot.org Yeah I know but I thought I'd post the question here too becuase the support forum isn't the fastest place in the world to get

RE: CodeCharge editor - anybody have experience with this?

2001-08-07 Thread Mary McDonald
I think CodeCharge helped me a lot this past year. The CF code it generated was far more cleaner and advanced than what I would have done, especially dealing with SQL commands. I think it is a great tool! It does let you add your own custom code, but you have to learn how. I found it very

parent/child custom tags

2001-08-07 Thread Ken Beard
anybody having trouble with these? servers getting flaky centered around their use? - Ken Beard Manager, Application Development StoneGround 5100 West Kennedy Blvd, Suite 430 Tampa, FL 33609 813-387-1235 (phone) 813-387-1237 (fax)

RE: parent/child custom tags

2001-08-07 Thread Justin Hansen
What do you mean? A custom tag that recursively calls itself to get all parent/child relationships into a structure? I have done that and it got flaky. The answer was to Exclusively lock the original tag call. Am I barking up the right tree here? Woof! Justin Hansen - [EMAIL PROTECTED] Web

RE: CFMAIL and MS SMTP

2001-08-07 Thread Cameron Childress
Yes, it's set to relay for CF's IP range. I've also tried allowing everyone to send through the server to see if it was a relay issue. I wouldn't expect it to accept the sender and recipient if it were a relay issue. I wouldn't expect it to accept the connection at all, but it is. It just

CFML-PDF

2001-08-07 Thread Simon Whittaker
I would like to convert a CFML template to a PDF file on the fly - this includes images. Does anyone have any tips on how to acheive this? Cheers Simon ~~ Structure your ColdFusion code with Fusebox. Get the official book at

I'm an idiot...

2001-08-07 Thread Willy Ray
Say, hypothetically, I had lost the password to the Cold Fusion Administrator for cf4.5 on my win2k machine. Anybody have any ideas where, *hypothetically* I might find the password in the registry or something? ~~ Structure your ColdFusion

RE: I don't understand session locking :(

2001-08-07 Thread Tyson
There's an easy technique to avoid excessive locking with any shared scope (application, server, session) variables. Rather than locking the variables all over the place, simply lock them once, make a copy of them into the request scope, and use those. Here's a code example where this would

RE: CFML-PDF

2001-08-07 Thread Carlisle, Eric
check out Allaire DevEx and http://www.cfcomet.com They have some goodies -Original Message- From: Simon Whittaker [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 07, 2001 10:42 AM To: CF-Talk Subject: CFML-PDF I would like to convert a CFML template to a PDF file on the fly - this

RE: CFML-PDF

2001-08-07 Thread James Maltby
There's a custom tag on Allaire that will do this http://devex.allaire.com/developer/gallery/info.cfm?ID=8565C4A3-BA51-11D4-AA B000508B94F380method=Full HTH J -Original Message- From: Simon Whittaker [mailto:[EMAIL PROTECTED]] Sent: 07 August 2001 15:42 To: CF-Talk Subject:

RE: I'm an idiot...

2001-08-07 Thread Dave Watts
Say, hypothetically, I had lost the password to the Cold Fusion Administrator for cf4.5 on my win2k machine. Anybody have any ideas where, *hypothetically* I might find the password in the registry or something? The password contained in the registry is encrypted (weakly, though), but

RE: I'm an idiot...

2001-08-07 Thread Dan Phillips
HKEY_LOCAL_MACHINE SOFTWARE Allaire ColdFusion Current Version Server The edit the key UseAdminPassword and set it to Zero. This will let you back in the admin. Dan Phillips CFXHosting.com -Original Message- From: Willy Ray [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 07, 2001

RE: CFML-PDF

2001-08-07 Thread Robert Segal
You could use Active PDF server with the webgrabber module to take the output of an http request and convert it to a PDF file. Depending on your situation, you make be able to just embed CF variables in the PDF file. -Original Message- From: Simon Whittaker [mailto:[EMAIL PROTECTED]]

RE: I'm an idiot...

2001-08-07 Thread Simon Whittaker
From the FAQ at FAQ: http://www.thenetprofits.co.uk/coldfusion/faq I've forgotten the ColdFusion Administrator password. What can I do? Run regedit and go to to HKLM\Software\Allaire\ColdFusion\CurrentVersion\Server Change UseAdminPassword from 1 to 0. This will allow you to get into your

RE: I'm an idiot...

2001-08-07 Thread Duane Boudreau
If you have access to the registry or the cfregistry tag you can remove the password by changing the following reg key: HKLM\Software\Allaire\ColdFusion\CurrentVersion\Server\ UseAdminPassword = 0 You can then go directly to the admin and re-enable and reset the password. Duane -Original

RE: CFMAIL and MS SMTP

2001-08-07 Thread Ian Tait
Hiya, Can you telnet to port 25 on the MS machine and send mail 'manually'? HELO MAIL FROM: RCPT TO: DATA etc This may shed more light on your problem... Ian -Original Message- From: Cameron Childress [mailto:[EMAIL PROTECTED]] Sent: 07 August 2001 15:38 To: CF-Talk Subject: RE:

RE: I'm an idiot...

2001-08-07 Thread Andrew Tyrone
-Original Message- From: Willy Ray [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 07, 2001 10:41 AM To: CF-Talk Subject: I'm an idiot... Say, hypothetically, I had lost the password to the Cold Fusion Administrator for cf4.5 on my win2k machine. Anybody have any ideas where,

RE: I'm an idiot...

2001-08-07 Thread Schlosser, JoAnn
You will find it when you have to reinistall and write it in on a secret page in your CF Admin manual. JoAnn A. Schlosser Consultant Association Management Software Grant Thornton LLP Washington, D. C. 703.837.4428 -Original Message- From: Willy Ray [mailto:[EMAIL PROTECTED]] Sent:

RE: I don't understand session locking :(

2001-08-07 Thread Ken Wilson
Wouldn't you actually need to use the Duplicate() function here when referencing the session variable? I seem to recall past discussions that the process of making a copy in this way actually only created a pointer to the session variable and left you vulnerable to the locking issue. Using

RE: Locked Database

2001-08-07 Thread Andrew Tyrone
-Original Message- From: Jeffry Houser [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 07, 2001 12:36 PM To: CF-Talk Subject: Re: Locked Database I'd advise against this usage. Performing invalid queries isn't the preferred method. Using the CFusion_DBConnections_Flush() function

RE: Date as absolute integer?

2001-08-07 Thread Tyson
Spectra uses the following to convert date and time into some numeric format. cfset dtmNow = parseDateTime()+0 This will return something along the lines of: 37110.4213426 Not an integer, per say, but a numeric representation. -Tyson -Original Message- From: Tristram Charnley

RE: I'm an idiot...

2001-08-07 Thread Tyson
But once you do this, be sure to immediately go in an assign a new CF Admin password. Wouldn't want to leave your server open to the rest of the world. ;) -Tyson -Original Message- From: Dan Phillips [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 07, 2001 9:49 AM To: CF-Talk

RE: Date as absolute integer?

2001-08-07 Thread Dunwiddie, Bruce
how about (year - 1900) * 366 + DayOfYear() -Original Message- From: Tristram Charnley [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 07, 2001 8:51 AM To: CF-Talk Subject: Date as absolute integer? Is there a way to return a date as an integer a bit like DayOfYear returns

OT: CFStudio and Development Mappings - Just Can't Get it to Work

2001-08-07 Thread Joshua Miller
Ok, I have a server environment like this: PADDINGTON: CFServer/SQL Server/IIS5 (Win2k) d:/websites/ contains all the .cfm docs and is mapped via IIS to resolve to http://paddington/ FOZZY: CFStudio 4.5.2 (Win2k) f:/ is mapped to \\PADDINGTON\warehouse\websites\ which contains

RE: I don't understand session locking :(

2001-08-07 Thread Matthew W Jones
Yes -Original Message- From: Ken Wilson [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 07, 2001 10:01 AM To: CF-Talk Subject: RE: I don't understand session locking :( Wouldn't you actually need to use the Duplicate() function here when referencing the session variable? I seem to

Re: Embedding an image inline into an email

2001-08-07 Thread tom muck
Here you go. This works for me (image should be in the same folder as the page, or adjust the CFFILE tag): cfmail to=[EMAIL PROTECTED] from=[EMAIL PROTECTED] subject=test image cfmailparam name=mime-version value=1.0 cfmailparam name=content-type value='multipart/alternative;

Re: Embedding an image inline into an email

2001-08-07 Thread tom muck
Actually, make sure the multipart/alternative and boundary are on the same line -- it wrapped in the post. Write me offlist if you can't get it to work and I'll send you a working page. tom www.basic-ultradev.com tom muck [EMAIL PROTECTED] wrote in message 3b700a77$[EMAIL

RE: I'm an idiot...

2001-08-07 Thread Daniel Kemp
Say, hypothetically, I had lost the password to the Cold Fusion Administrator for cf4.5 on my win2k machine. Anybody have any ideas where, *hypothetically* I might find the password in the registry or something? Well... hypothetically you could do a search on the internet for a coldfusion

RE: Urgent ! CFHTTP ....Connection Failed

2001-08-07 Thread Zachary S. Bedell
You didn't mention what version of CF you're using, but lemme guess: 4.5.x, right? I know that in 4.5.x CFHTTP is very picky about the MIME type that's returned by the server. If it's one of the few (like text/plain or text/html) that CFHTTP thinks is plain text, then you can use CFHTTP with no

CFContent again.......

2001-08-07 Thread Critter
Hello CF-Talk, I am using cfcontent to push an xls sheet to the user, I have tried calling the template two ways. One thru a popup window, and the other thru the same frame. With the popup window, the users is pushed a .csv but the same code in the same frame the user is pushed

How to fire a macro in Excel through COM

2001-08-07 Thread ychen
hi, Has any one really done something like http://www.cfcomet.com/cfcomet/Excel/index.cfm?ArticleID=E1943E88-13F6-43B3-9C FE474494C63A5B before, and does it works? if anyone has already done that already, do u mind to share you code with me. Thank you very much YC

RE: I'm an idiot...

2001-08-07 Thread Jeff Beer
Go into the registry, HKEY_LOCAL_MACHINE\SOFTWARE\Allaire\ColdFusion\CurrentVersion\Server and change the value UseAdminPassword from 1 to 0. Go back to the administrator and refresh the page. Don't forget to reset the checkbox Use Admin Password (sic) in the administrator. Jeff Beer Senior

RE: I'm an idiot...

2001-08-07 Thread Jeff Beer
ack.. this will teach me to see if the question had already been answered.. sorry for the redundant post! Jeff Beer Senior Programmer Architect Hydrogen Media, Inc (727) 530-5500 x303 [EMAIL PROTECTED] -Original Message- From: Daniel Kemp [mailto:[EMAIL PROTECTED]] Sent: Tuesday,

IIS Functions

2001-08-07 Thread BT
Does anyone know of any functions that IIS does besides CGI variables Can it do includes or anything? Thanks, Brian ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~` ~`~`~`~`~`~`~`~`~`~` Chat with Brian, Click Here

Refresh with form variables?

2001-08-07 Thread Josh R
Is there a way to automatically refresh from a cfm file to an html page on another site (not one of mine) and send form variables along the way? In other words, I want to go directly from www.mysite.com/formpage.cfm to www.theirsite.com/formresultspage.htm immediately with the form already

Refresh with form variables?

2001-08-07 Thread Josh R
Is there a way to automatically refresh from a cfm file to an html page on another site (not one of mine) and send form variables along the way? In other words, I want to go directly from www.mysite.com/formpage.cfm to www.theirsite.com/formresultspage.htm immediately with the form already

RE: I'm an idiot...

2001-08-07 Thread Schlosser, JoAnn
I'm glad you asked it - Allaire tech support told me to reinstall (client forgot password - I came in late in the game). You guys are smart and cheap! JoAnn A. Schlosser Consultant Association Management Software Grant Thornton LLP Washington, D. C. 703.837.4428 -Original Message-

web base reporting tools

2001-08-07 Thread ychen
Hi, Does anyone knows any good web base reporting tools beside Crytal report? Thank you for any information YC ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ:

RE: CFStudio and Development Mappings - Just Can't Get it to Work

2001-08-07 Thread Andrew Scott
1) Studio dir This is how you would see the files as a mapped drive, so if you access for instance f:\websites then this is what you do for studio. 2) If the directory is d:\inetpub\websites then this is the physical dir on the server 3) enter the IP address Its that simple!!

RE: web base reporting tools

2001-08-07 Thread Mark Smyth
I've been using actuate well worth a look, but pricy www.actuate.com hth mark -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: 07 August 2001 17:34 To: CF-Talk Subject: web base reporting tools Hi, Does anyone knows any good web base reporting tools

Re: Crystal Reports without cfreport

2001-08-07 Thread Terri Stocke
Hi Todd, Yep, it sure is possible. Here's how we did it, after having no luck with CFREPORT (CF 4.0 Enterprise). It wasn't easy, but we finally figured it out. We pass the CF variables into an ASP page, and then call the CFREPORT from the ASP page. If you go to Crystaldecisions.com and

RE: Word,Excel-Links to

2001-08-07 Thread Janine Jakim
I havent' done this but saw lots of info here: http://www.cfcomet.com/cfcomet/ Hope it is of help. j -Original Message- From: Hirschman, Miriam [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 07, 2001 9:26 AM To: CF-Talk Subject: Word,Excel-Links to Hi, I asked this question

Re: web base reporting tools

2001-08-07 Thread Bruce Sorge
Without knowing your requirements for this, we are using PopCharts as well as a home grown application at my office. PopCharts does a great job of creating graphs of almost every type. All you need to do is feed PopCharts a query and it takes care of the rest. - Original Message - From:

Spell checker

2001-08-07 Thread Ray Bujarski
I need a spell checker for an application I am working on. I don't want to build it from scratch. Does anyone know of some good ones? Thanks, Ray ~~ Structure your ColdFusion code with Fusebox. Get the official book at

RE: I don't understand session locking :(

2001-08-07 Thread Bruce, Rodney
Changing from session to client Are there any limitations on client vars, other than db size? Could structures and arrays be a problem? Looking at the table, cdata, the client vars are all dumped into one field, can this be changed? and is there a way to automatically delete them when a user

oracle and coldfusion

2001-08-07 Thread Steven Dworman
Here's the situation. I have this rather large and complex package of procedures, and I want to avoid doing a commit or rollback inside the procs. What I am attempting to do is run the procedures and if there is an error message do a rollback, or if no error message then do a commit. This

Re: Spell checker

2001-08-07 Thread Howie Hamlin
Look for cfx_spell here: http://www.forta.com/cf/tags/ HTH, Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. www.CoolFusion.com 631-737-4668 x101 inFusion Mail Server (iMS) - The Intelligent Mail Server Join the DevCon community at www.coolfusion.com/devcon - Original

RE: Spell checker

2001-08-07 Thread Pete Freitag
Spell Checker: http://www.cfdev.com/spellcheck/index.cfm?ref=126 -Original Message- From: Ray Bujarski [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 07, 2001 1:08 PM To: CF-Talk Subject: Spell checker I need a spell checker for an application I am working on. I don't want to

Re: Spell checker

2001-08-07 Thread Paris Lundis
jspell.com -Original Message- From: Ray Bujarski [EMAIL PROTECTED] Date: Tue, 07 Aug 2001 10:08:22 -0700 Subject: Spell checker I need a spell checker for an application I am working on. I don't want to build it from scratch. Does anyone know of some good ones? Thanks, Ray

RE: Spell checker

2001-08-07 Thread Robert Forsyth
http://www.cfdev.com awesome server side spell checker. -Original Message- From: Ray Bujarski [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 07, 2001 1:08 PM To: CF-Talk Subject: Spell checker I need a spell checker for an application I am working on. I don't want to build it from

Re: Spell checker

2001-08-07 Thread Ray Bujarski
I forgot to mention I am running solaris, so cfx tags won't work. At 01:17 PM 8/7/2001 -0400, Howie Hamlin wrote: Look for cfx_spell here: http://www.forta.com/cf/tags/ HTH, Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. www.CoolFusion.com 631-737-4668 x101 inFusion Mail

RE: Spell checker

2001-08-07 Thread Pete Freitag
CFDEV.COM's spell checker is written in Java... so it will work on Solaris: http://www.cfdev.com/spellcheck/index.cfm?ref=126 pete -Original Message- From: Ray Bujarski [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 07, 2001 1:27 PM To: CF-Talk Subject: Re: Spell checker I forgot to

Re: Crystal Reports without cfreport

2001-08-07 Thread Todd Ashworth
I do have this file and have been looking over it. What I most need to do is have a way to tell Crystal Reports what database file to use while generating its report. I found an example that lets you change the DSN, but that doesn't help since I have 1 DSN and many many different database

RE: web base reporting tools

2001-08-07 Thread Costas Piliotis
RR Report Writer. Used an older version of it with Btrieve that was okay. http://www.livewarepub.com/ They have an activeX contril. -Original Message- From: Mark Smyth [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 07, 2001 9:53 AM To: CF-Talk Subject: RE: web base reporting tools

RE: oracle and coldfusion

2001-08-07 Thread Costas Piliotis
Yup. Why don't you look at cftransaction? -Original Message- From: Steven Dworman [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 07, 2001 10:14 AM To: CF-Talk Subject: oracle and coldfusion Here's the situation. I have this rather large and complex package of procedures, and I

RE: IIS Functions

2001-08-07 Thread Dave Watts
Does anyone know of any functions that IIS does besides CGI variables Can it do includes or anything? Yes, you can do standard server-side includes within HTML pages using one of the two file extensions mapped to the SSI engine. I think the extensions are .stm and .shtm. Dave Watts, CTO,

OT: Javescript for clearing history?

2001-08-07 Thread Bruce, Rodney
I hope I remember correctly. Did someone say they had or knew were to get javascript that could clear the history of a browsers? Specify the dropdown listing of burls. Thanks ~~ Structure your ColdFusion code with Fusebox. Get the official book

DateFormat

2001-08-07 Thread Hirschman, Miriam
Hi, I am doing an if statement if isdate is true then output the field in DateFormat. Now the is date returns Yes==it is a date, but when the user enters a date that is before tha year 1600-the isDate is true, but I get an error that the field must be a Date/Time field. Any ideas??

Oracle Stored Procedures

2001-08-07 Thread Clint Tredway
Does anyone know what table oracle holds stored procedures? I do not have access to client tools and I need to see what a procedure is doing. Thanks! -- Clint Tredway www.factorxsoftware.com -- ~~ Structure your ColdFusion code with Fusebox. Get

Yipes - its raining ColdFusion 5 books

2001-08-07 Thread Cary Gordon
A search at FatBrain http://www1.fatbrain.com/search/searchresults.asp?SearchFunction=keyqtext=coldfusion reveals 11 new CF books, not including, for some reason, the new WACK. Notable titles include: Adv anced Coldfusion 5: Application Development By Jeff Taylor (September); Macromedia

  1   2   3   >