Re: Problems with CFMAIL

2003-11-06 Thread Calvin Ward
I believe this should help you out on that! http://livedocs.macromedia.com/coldfusion/6/Developing_ColdFusion_MX_Applications_with_CFML/cfobject5.htm Thanks, Calvin - Original Message - From: Mickael To: CF-Talk Sent: Wednesday, November 05, 2003 6:15 PM Subject: Re: Problems with

RE: [Stats] CF-Talk: October 2003

2003-11-06 Thread Angel Stewart
Oh. Damn. 0_0 You don't get money just from people clicking the Ads? Well that sucks. It's not your fault if they don't want to buy a product that they've seen. TV Stations are paid regardless of if someone actually calls the 1-800 number on the screen to order anything. Billboard space

RE: [Reply To] (CF 6 reliability) from Re: Memory Leak on Win2k/CMX6.1

2003-11-06 Thread Joe Eugene
I have personally used the Scheduler in CFMX and CF5.0. This is not a very efficient way to handle Scheduled Tasks, since they take up Application Server Resources. I would have another server handle all Offline tasks as Batch Jobs, Use RMI/WebServices to invoke applications that need to run

best way to force a save as no matter what

2003-11-06 Thread Vamp
I want to force a download no matter the file name and extension. so example .pdf I don't want it to launch the program I want it to launch save as box instead. whats the best way to do this?? Thank you Troy [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User

RE: best way to force a save as no matter what

2003-11-06 Thread Pascal Peters
Use cfcontent and cfheader cfheader name=Content-Disposition value=attachment; filename=#attributes.filename# cfcontent type=#variables.mimetype# file=#attributes.file# deletefile=No Works for me, but I can't guarantee it works no matter what Pascal -Original Message- From: Vamp

RE: best way to force a save as no matter what

2003-11-06 Thread Adam Reynolds
Right click, save as. You realise that should you click on a html file, you would also launch a save as box. -Original Message- From: Vamp [mailto:[EMAIL PROTECTED] Sent: 06 November 2003 04:38 To: CF-Talk Subject: best way to force a save as no matter what I want to force a download no

MX6.1 no more data to read error

2003-11-06 Thread Thomas Chiverton
We're getting this error for once specifc 'delete' cfquery, and I've just read http://webforums.macromedia.com/coldfusion/messageview.cfm?catid=6threadid=684306 Is there any update or concreate fix for this ? -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749 834997 email: [EMAIL

Re: [Stats] CF-Talk: October 2003

2003-11-06 Thread Thomas Chiverton
On Wednesday 05 Nov 2003 18:47 pm, Michael Dinowitz wrote: You probably had a number (50 or so) dashes, tildas or the like between the data sets. The list has been set for a long time to treat 50 or more of these elements in a row as the list footer and remove everything past it. Why not

Re: Novell to acquire SUSE

2003-11-06 Thread Thomas Chiverton
On Wednesday 05 Nov 2003 18:58 pm, Joshua Miller wrote: I'm not saying I'll go back to Windows, I'm just saying that I'll find another distribution of the free Linux OS that doesn't cost $200. Fedora do you ? :-) -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749 834997 email:

Re: Problems with CFMAIL

2003-11-06 Thread Mickael
Thanks Calvin that helps! - Original Message - From: Calvin Ward To: CF-Talk Sent: Thursday, November 06, 2003 4:57 AM Subject: Re: Problems with CFMAIL I believe this should help you out on that!

RE: Cfmx 6.0 and the scheduler

2003-11-06 Thread DURETTE, STEVEN J (AIT)
We had the same problem.The only way that we could fix it was to create new jobs and delete the old ones. Everything runs on time now, but it's kind of disconcerting that we may have to do this at every time change. Steve -Original Message- From: Sicular, Alexander [mailto:[EMAIL

MX Debugging - Tree mode, limitations

2003-11-06 Thread Philip Arnold
Does anyone know why the Tree style of Report Execution Times is limited to 2 levels of Include? I need it to go deeper as it's reporting that one of the templates is taking longer than I know it would Also, is there a replacement file that will allow me to go to several levels deeper? Just

RE: OT:Transparent Div question.

2003-11-06 Thread [EMAIL PROTECTED]
Yeah thats what I thought, I have the default divs outside the central content area div. Still can't get the other top divs to display on top of the default top div. Div layout as follows: div defaultTop /div defaultTop div changable div top /div top div middle div image /div image div

RE: CFMX woes

2003-11-06 Thread Kennerly, Rick H CIV
Generally, if the services are running the pages work, so the services must not be running. We've had bad installs before, for no apparent reason.If you check these items it still doesn't work, then I'd uninstall and try again, paying particular attention to any directory modifications or

Re: MX6.1 no more data to read error

2003-11-06 Thread Calvin Ward
the U3 drivers do resolve that issues. - Calvin - Original Message - From: Thomas Chiverton To: CF-Talk Sent: Thursday, November 06, 2003 6:06 AM Subject: MX6.1 no more data to read error We're getting this error for once specifc 'delete' cfquery, and I've just read

Create an ASCII Table from Query Output?

2003-11-06 Thread Cold Fusion Developer
Hello, I am wondering if it is possible to create an ASCII output in Cold Fusion. Essentially, what I am wanting to accomplish is to create the column headers on one row and then the following column data underneath (and essentially looping through that data - that part I'm able to accomplish).

UDF

2003-11-06 Thread Tangorre, Michael
Anyone remember the UDF that checks a string to see if Len(Trim(str)) EQ 0 [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: UDF

2003-11-06 Thread Pascal Peters
No, but it takes like 2 sec to write it function IsEmptyString(str){ return (Len(Trim(str)) EQ 0) } -Original Message- From: Tangorre, Michael [mailto:[EMAIL PROTECTED] Sent: donderdag 6 november 2003 14:41 To: CF-Talk Subject: UDF Anyone remember the UDF that checks a string to see if

RE: UDF

2003-11-06 Thread Pascal Peters
I forgot a ; function IsEmptyString(str){ return (Len(Trim(str)) EQ 0); } [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: MX6.1 no more data to read error

2003-11-06 Thread Thomas Chiverton
On Thursday 06 Nov 2003 13:18 pm, Calvin Ward wrote: the U3 drivers do resolve that issues. I'm a bot loath to be fiderling around downgrading driver versions that were introduced to fix bugs. We're on Linux connecting to an Oracle 9i DB, if that means you can reassure me ? -- Tom Chiverton

CFCs and file uploads

2003-11-06 Thread Tangorre, Michael
Has anyone run into issues where you pass a form field of type file into a CFC and are not able to upload the file? If I do a cffile in the calling page, it works fine, but trying to do the upload in a funciton within my cfc does not work... Thoughts? [Todays Threads] [This Message]

Re: CFCs and file uploads

2003-11-06 Thread Dwayne Cole
the fileField in the cffile tag must refer to a form.xxx scope.So if you are using an arguments.xxx scope variable for th fileField name it will not work. Dwayne Cole, MS in MIS, MBA Florida AM University Certified Advanced ColdFusion Developer 850-591-0212 It can truly be said that nothing

Application Question

2003-11-06 Thread Eric Creese
Has anyone written an application that handles Job Applicant Tracking? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Interesting problem, query with javascript

2003-11-06 Thread mayo
I have a problem that doesn't make sense to me. COLD FUSION QUERY I have a query that pulls data about a photo (name, URL, ...). _javascript_ Clicking on the thumbnail changes the option ../option in a select box a href=""> > img src="" width=37 height=58 border=0 alt=/a script

RE: CFCs and file uploads

2003-11-06 Thread Tangorre, Michael
hmmm how would one ever get file upload capabilities into a CFC? -Original Message- From: Dwayne Cole [mailto:[EMAIL PROTECTED] Sent: Thursday, November 06, 2003 10:01 AM To: CF-Talk Subject: Re: CFCs and file uploads the fileField in the cffile tag must refer to a form.xxx scope.So

RE: MX6.1 no more data to read error

2003-11-06 Thread Christine Lawson
Hi Thomas, I'd suggest you go to the Updater 3 drivers for this issue, keep in mind what Stephen posted in the last post to that thread (see below). *** Patches for 4 of the bugs in the 3.2 drivers are due around 11/15 for pre-release testing. (the 4096 ArrayIndex..

Hotfix problem

2003-11-06 Thread DeMarco, Alex
Hello, I have applied the following fix: http://www.macromedia.com/support/coldfusion/ts/documents/cfform_hotfix. htm#J2EE Yet when I go into the System Information section I do not see it listed I have double checked my config and I have it right per the technote. Anyone applied hotfixes?

RE: CFCs and file uploads

2003-11-06 Thread Sparrow-Hood, Walter
I had the same problem when the CFC was in a persistent scope (in my case- session). I was told that it was related to the page context bug in CFMX.I solved the problem by taking it out of the persistent scope and using cfinvoke.This should not be a problem with 6.1 but I have not had the time to

Re:CFCs and file uploads

2003-11-06 Thread Trevor Holm-Laursen
We do it like this. When I invoke the method I pass the variables like this, CFINVOKE COMPONENT=#objPhoto# METHOD=SavePhoto argEditMode=#Form.txtEditMode# argProductID=#Form.txtProductID# argTitle=#Form.txtTitle# argFile=#Form.txtFile# argPhotoID=#Form.txtPhotoID# returnvariable=arrErrors

Re:CFCs and file uploads

2003-11-06 Thread Trevor Holm-Laursen
We do it like this. When I invoke the method I pass the variables like this, CFINVOKE COMPONENT=#objPhoto# METHOD=SavePhoto argEditMode=#Form.txtEditMode# argProductID=#Form.txtProductID# argTitle=#Form.txtTitle# argFile=#Form.txtFile# argPhotoID=#Form.txtPhotoID# returnvariable=arrErrors

RE: Hotfix problem

2003-11-06 Thread Christine Lawson
Did you stop and start the services, I've seen this happen when that was not done and the hot fix has not been committed. Christine -Original Message- From: DeMarco, Alex [mailto:[EMAIL PROTECTED] Sent: Thursday, November 06, 2003 10:44 AM To: CF-Talk Subject: Hotfix problem Hello,

Re: Problems with CFMAIL

2003-11-06 Thread Dave Jones
Michael, Here you go: CFMAIL version: cfmail from=[EMAIL PROTECTED] to=[EMAIL PROTECTED] subject=CFMAIL msg #msg# /cfmail CDONTS version: cfscript newMail = CreateObject(COM,CDONTS.NewMail); newMail.From([EMAIL PROTECTED]); newMail.To([EMAIL PROTECTED]); newMail.Subject(CDONTS msg);

Re: Application Question

2003-11-06 Thread Calvin Ward
The company I work for: http://www.recruitmax.com has a solution that does this, written in ColdFusion. Oh, and it seems we're hiring ColdFusion developers! http://www.prohire.com/candidates/default.cfm?szWID=8684szCID=39080 - Calvin - Original Message - From: Eric Creese To: CF-Talk

RE: Problems with CFMAIL

2003-11-06 Thread Tom Jordahl
All of the ongoing problems with CFMAIL should have been addressed in CFMX 6.1.It is now robust, reliable and scalable. You can easily add the SPOOLENABLE=NO attribute to your tag (or in the administrator) to force mail to be delivered inline in the page, as opposed to spooling it for later

RE: Hotfix problem

2003-11-06 Thread DeMarco, Alex
Do I have to stop all the Jrun instances or just the one running CFmx? - Alex -Original Message- From: Christine Lawson [mailto:[EMAIL PROTECTED] Sent: Thursday, November 06, 2003 11:26 AM To: CF-Talk Subject: RE: Hotfix problem Did you stop and start the services, I've

RE: [Stats] CF-Talk: October 2003

2003-11-06 Thread Dave Watts
You don't get money just from people clicking the Ads? Well that sucks. It's not your fault if they don't want to buy a product that they've seen. TV Stations are paid regardless of if someone actually calls the 1-800 number on the screen to order anything. Billboard space is paid for

RE: Verbose account of files transfered with an HTTP request

2003-11-06 Thread Dave Watts
Dave wrote: ...you will probably have to disable client cache support in the web server if that's possible, or use CF to serve images for you (which will slow things down a bit). I am not concerned about the performance at this point. I will look into suppressing the caching with IIS.

RE: Problems with CFMAIL

2003-11-06 Thread Eric Creese
Where do you put in the SMTP Sever address? -Original Message- From: Dave Jones [mailto:[EMAIL PROTECTED] Sent: Thursday, November 06, 2003 11:13 AM To: CF-Talk Subject: Re: Problems with CFMAIL Michael, Here you go: CFMAIL version: cfmail from=[EMAIL PROTECTED] to=[EMAIL PROTECTED]

OT: Arden Weiss - virus sending messages to the list?

2003-11-06 Thread Shawn Grover
Hi all.Don't know if I'm the only one, but I've been getting emails from an Arden Weiss.The messages seem to be CF related, and come with an attachment.The attachment is a .scr file.I myself have never had dealings with Arden Weiss (that I can remember), and know better to open .scr file

RE: Arden Weiss - virus sending messages to the list?

2003-11-06 Thread Eric Creese
I got it too. -Original Message- From: Shawn Grover [mailto:[EMAIL PROTECTED] Sent: Thursday, November 06, 2003 11:09 AM To: CF-Talk Subject: OT: Arden Weiss - virus sending messages to the list? Hi all.Don't know if I'm the only one, but I've been getting emails from an Arden Weiss.The

RE: Arden Weiss - virus sending messages to the list?

2003-11-06 Thread Haggerty, Mike
I've been getting them as well. Since I never knew Arden, I never open his attachments. M -Original Message- From: Shawn Grover [mailto:[EMAIL PROTECTED] Sent: Thursday, November 06, 2003 12:09 PM To: CF-Talk Subject: OT: Arden Weiss - virus sending messages to the list? Hi all.Don't

Re: OT: Arden Weiss - virus sending messages to the list?

2003-11-06 Thread Ubqtous
Shawn, On 11/6/2003 at 12:09, you wrote: SG Don't know if I'm the only one, but I've been getting emails from SG an Arden Weiss.The messages seem to be CF related, and come SG with an attachment.The attachment is a .scr file. Same here. It was driving me crazy first, because my email client

RE: Arden Weiss - virus sending messages to the list?

2003-11-06 Thread Ben Densmore
I had one from him this morning as well. Ben -Original Message- From: Shawn Grover [mailto:[EMAIL PROTECTED] Sent: Thursday, November 06, 2003 12:09 PM To: CF-Talk Subject: OT: Arden Weiss - virus sending messages to the list? Hi all.Don't know if I'm the only one, but I've been

Re: Arden Weiss - virus sending messages to the list?

2003-11-06 Thread Tom Kitta
Poor Arden, his reputation is burned now. I didn't get anything from him - maybe that server e-mail virus scanner program that I installed last month does do something? TK - Original Message - From: Haggerty, Mike To: CF-Talk Sent: Thursday, November 06, 2003 12:29 PM Subject: RE:

Re: Arden Weiss - virus sending messages to the list?

2003-11-06 Thread Michael Dinowitz
It's a more intelligent virus that has taken a piece of mail from someone's box and used it as a base to send out the virus. I haven't been able to trace the original email (actually, it's just a fragment) to a specific post to any HoF list. Be that as it may, it's being sent to individuals and if

RE: Arden Weiss - virus sending messages to the list?

2003-11-06 Thread Tony Weeg
I get them about 2 or 3 times a week! ...tony tony weeg senior web applications architect navtrak, inc. www.navtrak.net [EMAIL PROTECTED] 410.548.2337 -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED] Sent: Thursday, November 06, 2003 12:35 PM To: CF-Talk Subject:

Re: Arden Weiss - virus sending messages to the list?

2003-11-06 Thread Jim Campbell
I got one as well - Funny that this virus doesn't seem to want to hide the sender like the annoying glut of Check this out! emails from a couple of months ago. - Jim Tom Kitta wrote: Poor Arden, his reputation is burned now. I didn't get anything from him - maybe that server e-mail virus

Re: Arden Weiss - virus sending messages to the list?

2003-11-06 Thread Jim Campbell
There's an Arden Weiss on the SysCon CF mailing lists.There's also records of Arden Weiss in the HoF lists as well: http://www.houseoffusion.com/cf_lists/cache.cfm/4/4/4177.htm Maybe an old member, this one was from two years ago. - Jim Michael Dinowitz wrote: It's a more intelligent virus

RE: Arden Weiss - virus sending messages to the list?

2003-11-06 Thread Tony Weeg
yeah I remember him from the cfdj list ...tony tony weeg senior web applications architect navtrak, inc. www.navtrak.net [EMAIL PROTECTED] 410.548.2337 -Original Message- From: Jim Campbell [mailto:[EMAIL PROTECTED] Sent: Thursday, November 06, 2003 12:43 PM To: CF-Talk Subject:

Re: Arden Weiss - virus sending messages to the list?

2003-11-06 Thread Michael Dinowitz
That would do it. He's not currently in the system though. I'll hunt down his old address and email him about it. Remember that just because it uses his name as the sender doesn't mean it's actually him. Thanks for the additional research on the name. I knew it sounded familiar but when I couldn't

Screen Scraping

2003-11-06 Thread Bryan F. Hogan
Hi I have an idea about something, I can't go into specifics. Does anyone know if CF and/or another language can submit a Flash form without filling the values into a Flash form that uses remoting? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Screen Scraping

2003-11-06 Thread Mike Townend
Assuming that the Receiving function doesnt use the Flash scope, its just a webservice so you could call the .cfc?wsdl web service and pass the appropriate information into it ? -Original Message- From: Bryan F. Hogan [mailto:[EMAIL PROTECTED] Sent: Thursday, November 6, 2003 17:54 To:

RE: Screen Scraping

2003-11-06 Thread Bryan F. Hogan
Yes but they would have to guess at the URL of the CFC if it where in the webroot, but how I have the CFC setup now is that they sit outside of the webroot in a components directory. So I don't see this being a problem. Any other ways you can think of? Thanks for your reply Bryan -Original

RE: Cfmx 6.0 and the scheduler

2003-11-06 Thread Tom Jordahl
I strongly suggest upgrading to CFMX 6.1. Various bug fixes and enhancements were made to the MX scheduler code. Plus it's faster and has fewer bugs! -- Tom Jordahl Macromedia Server Development -Original Message- From: DURETTE, STEVEN J (AIT) [mailto:[EMAIL PROTECTED] Sent:

Alternate ways of uploading files.

2003-11-06 Thread Tangorre, Michael
Are there alternate ways of uploading files in Cold Fusion besides using cffile? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Alternate ways of uploading files.

2003-11-06 Thread Philip Arnold
Are there alternate ways of uploading files in Cold Fusion besides using cffile? Only using CF, then CFFILE is the only way to do it If you want to use external tools, then I'm sure there are quite a few methods [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User

RE: Screen Scraping

2003-11-06 Thread Mike Townend
In that case flash wouldnt be able to see it either, in my understanding the Flash getService(com.flash.foo); points to the URL ./com/flash/foo.cfc). To store the components outside of the webroot (which is how we do it too) you need to write the foo.cfc as a wrapper so that it then in tern

RE: Alternate ways of uploading files.

2003-11-06 Thread Matt Robertson
Michael wrote: Are there alternate ways of uploading files in Cold Fusion besides using cffile? There's always cfftp, I guess. Matt Robertson [EMAIL PROTECTED] MSB Designs, Inc.http://mysecretbase.com

RE: Alternate ways of uploading files.

2003-11-06 Thread Tangorre, Michael
I am basically trying to figure out the best way to incorporate file upload capability into this CFC I am working on... just passing the form field in or the form scope completely does not seem to do the trick. -Original Message- From: Matt Robertson [mailto:[EMAIL PROTECTED] Sent:

RE: Alternate ways of uploading files.

2003-11-06 Thread Dan Phillips \(CFXHosting.com\)
Is this because your host won't let you use CFFile? I think there is an alternative to CFFile out there in custom tag form. I seem to remember CFMresources.com used to offer it. It may be in the MM tag gallery. Dan Phillips www.CFXHosting.com 1-866-239-4678 x105 [EMAIL PROTECTED] -Original

RE: Hotfix problem

2003-11-06 Thread DeMarco, Alex
Here's what I see: Java Specification Vendor Sun Microsystems Inc. Java Specification Name Java Platform API Specification Java Class Version 48.0 Java Class Path D:\JRun4\servers\lib; D:\JRun4\servers\lib\enrollmentmgmt_common_collections.jar; D:\JRun4\servers\lib\log4j-1.2.8.jar;

Flash/CF Chat program

2003-11-06 Thread John Burns
Does anyone know of a free Flash/CF chat program.I would like something fairly simple that allows multiple users to enter and have real-time text chat capabilities without using just CF and doing refreshes every second to get the new text that has been added. I'm fairly new to Flash Remoting, but

Flash Component Directory WAS RE: Screen Scraping

2003-11-06 Thread Bryan F. Hogan
This is my setup. components website flashcfc wwwroot website flashfile Your saying that flashfile can't see flashcfc by using a mapping to components.website.flashcfc? I have people that I host and their files are in the components directory. [Todays Threads] [This Message]

RE: Flash/CF Chat program

2003-11-06 Thread Dan Phillips \(CFXHosting.com\)
I know one in Flash/ASP. www.pipey.com Not sure is ASP is a problem but it's free and has the features you described. Also take a look at www.cfchat.net. Another freebie but I can't remember if it uses flash or not. And last but not least, check out http://tutorial123.easycfm.com/ if you want

RE: Flash Component Directory WAS RE: Screen Scraping

2003-11-06 Thread Dave Watts
This is my setup. components website flashcfc wwwroot website flashfile Your saying that flashfile can't see flashcfc by using a mapping to components.website.flashcfc? I have people that I host and their files are in the components directory. If you have a web server

Re: Screen Scraping

2003-11-06 Thread cf
depends on what kind of text u need filled in if you already know then i'd assume you could just make a text field, fill in the info and give it the variable name. then it depends how u want to submit it either with a button or do it onload Hi I have an idea about something, I can't go into

RE: Flash Component Directory WAS RE: Screen Scraping

2003-11-06 Thread Bryan F. Hogan
Thanks, I still think that would be ok, because they would have to guess at the URL. Thanks for your reply Bryan If you have a web server mapping, your CFCs can be exposed as web services (which is necessary for Flash Remoting, I think) without being in the web root. If you have a CF mapping,

RE: Screen Scraping

2003-11-06 Thread Bryan F. Hogan
I'm talking about a Flash form. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, November 06, 2003 1:13 PM To: CF-Talk Subject: Re: Screen Scraping depends on what kind of text u need filled in if you already know then i'd assume you could just make a

RE: Flash/CF Chat program

2003-11-06 Thread John Burns
Ok, cool.ASP is a problem as my web host uses Linux.I'll see what I can find.Thanks. John -Original Message- From: Dan Phillips (CFXHosting.com) [mailto:[EMAIL PROTECTED] Sent: Thursday, November 06, 2003 2:00 PM To: CF-Talk Subject: RE: Flash/CF Chat program I know one in Flash/ASP.

RE: Flash Component Directory WAS RE: Screen Scraping

2003-11-06 Thread Mike Townend
yep, unless you have something like (in IIS) a virtual directory or equivelant then the flash components must be within the wwwroot, otherwise flash cant see the cfc's to call HTH -Original Message- From: Bryan F. Hogan [mailto:[EMAIL PROTECTED] Sent: Thursday, November 6, 2003 18:56

weather feed

2003-11-06 Thread cf
anyone know where I can get a weather feed similiar to the one at http://www.laszlosystems.com/demos/weather/ ty [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

OT: M$ flash killer

2003-11-06 Thread cf
http://www.eweek.com/article2/0,4149,1374753,00.asp once again M$ is going to launch something that u have to use their crap 4. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

OT: Re: weather feed

2003-11-06 Thread Tom Kitta
Check this guys site: http://www.singerscreations.com/ He created a small utility that grabs data from weather.com or something. I bet he can lead you to a solution you seek. TK - Original Message - From: [EMAIL PROTECTED] To: CF-Talk Sent: Thursday, November 06, 2003 1:18 PM

RE: M$ flash killer

2003-11-06 Thread Che Vilnonis
is this a desktop app or a web app? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, November 06, 2003 1:36 PM To: CF-Talk Subject: OT: M$ flash killer http://www.eweek.com/article2/0,4149,1374753,00.asp once again M$ is going to launch something that

Re: M$ flash killer

2003-11-06 Thread Michael Dinowitz
This is being discussed on CF-Community on this thread: http://www.houseoffusion.com/lists.cfm/link=m:5:10365:94723 Please post all discussion there. Thank you http://www.eweek.com/article2/0,4149,1374753,00.asp once again M$ is going to launch something that u have to use their crap 4.

Re: weather feed

2003-11-06 Thread Kevin Graeme
NOAA for one. If you want something that is in XML, then Google is your friend. 2 seconds, and I found this: http://weather.boygenius.com/ -Kevin - Original Message - From: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, November 06, 2003 12:18 PM Subject: weather feed

Re: M$ flash killer

2003-11-06 Thread Kevin Graeme
Desktop. Basically, it looks like MS's plan with Longhorn is to make the entire OS a host for RIAs built using their Avalon UI. Sparkle looks to be a designer's tool for the GUI elements, much like Flash is. I don't know yet how the actual code will work for the Sparkle/Avalon apps. Maybe VB.NET

RE: Arden Weiss - virus sending messages to the list?

2003-11-06 Thread Mark A. Kruger - CFG
Isn't Arden Weiss the uncle from the sound of Music? -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED] Sent: Thursday, November 06, 2003 11:51 AM To: CF-Talk Subject: Re: Arden Weiss - virus sending messages to the list? That would do it. He's not currently in the system

queries of queries help

2003-11-06 Thread Tim Do
Hello all, I'm trying to do QofQ's and not having luck with date comparisons...here is what I have: cfquery name=getIncident dbtype=query select count(*) as incidentCount from Get_Claims where incidentOnly = 1 and dateReported null and dateReported between cfqueryparam value =

RE: Hotfix problem

2003-11-06 Thread Debbie Dickerson
I just tried it on my system, and after extracting the jar file to my C:\JRun4\servers\lib\ directory and restarting my cfusion instance, the hot fix then appeared in the class path list in my Administrator. Since you're using JRun, is there a particular reason you used the steps under the J2EE

RE: queries of queries help

2003-11-06 Thread Tony Weeg
is not null instead of ...tony tony weeg senior web applications architect navtrak, inc. www.navtrak.net [EMAIL PROTECTED] 410.548.2337 -Original Message- From: Tim Do [mailto:[EMAIL PROTECTED] Sent: Thursday, November 06, 2003 3:01 PM To: CF-Talk Subject: queries of queries help

RE: M$ flash killer

2003-11-06 Thread Samuel Neff
It'll be 7-10 years before you can consider using this for any real application.It requires the avalon sub-system which means we're talking 2006, and will only work for longhorne users, which means a very limited user base for a long time (how many people still use windows 98?). Also, a lot can

RE: Screen Scraping

2003-11-06 Thread cf
ummm, yeah, so am i when u make a flash form u have to make input text fields correct? cause thats how u get the info in. well make your input text field and if its a predetermined variable, well just add it to the text input field. and onload have it submit. user never has to see it. thats what

RE: Hotfix problem

2003-11-06 Thread DeMarco, Alex
Stupid user your right I put them in the wrong place.. DOH! thanks! - Alex -Original Message- From: Debbie Dickerson [mailto:[EMAIL PROTECTED] Sent: Thursday, November 06, 2003 3:13 PM To: CF-Talk Subject: RE: Hotfix problem I just tried it on my system, and after

RE: Alternate ways of uploading files.

2003-11-06 Thread Nathan Strutz
I've had luck passing the cffile form field name as a variableName type (specified in cfargument type=variableName), then have the cffile in the function in the cfc. Then in my cffile, I just use formfield=#arguments.formfield#. should help -nathan -Original Message- From: Tangorre,

RE: Screen Scraping

2003-11-06 Thread Bryan F. Hogan
Say you go to a website contact us form. And this contact form is a flash form using remoting. Now you want a write a bot to automatically spam that contact form. How would you do it using the method you describe below? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]

Forcing a timeout of data from another site.

2003-11-06 Thread DURETTE, STEVEN J (AIT)
Hi all, I have a problem that just came up today. In the menu portion of our (internal) web site we have a stock status that is pulled from another (internal) website. We pull the data by adding the following to our page: script src="" http://theirsite.com/stockticker/close.js

RE: M$ flash killer

2003-11-06 Thread Haggerty, Mike
Microsoft's decision to promote this technology is great because it shows real innovation and creative thinking. For what it is worth, I expect this product will fail to persuade developers to use it similar to the way Microsoft Music Producer and Microsoft Direct Animation did. But 'Sparkle' is

Re: M$ flash killer

2003-11-06 Thread Tom Kitta
I think it takes more than just putting M$ name on some product to make it great and widely accepted especially in the developer community. I believe that developers will ultimately gravitate towards product easier to use rather than the one managers could be pushing for. TK - Original

SQL Challenge

2003-11-06 Thread Eric Creese
Ok here is the challenge. Surprise is at the end. I am trying to put together a report on our member's membership periods. This report needs to identify the entire member's membership history. Memberships are based on an annual subscription. However, there are sometime breaks in one's membership

Re: M$ flash killer

2003-11-06 Thread Kevin Graeme
Like M$ Windows instead of Apple Ma¢into$h? ;-) -Kevin - Original Message - From: Tom Kitta [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, November 06, 2003 2:55 PM Subject: Re: M$ flash killer I think it takes more than just putting M$ name on some product to make it

Re: M$ flash killer

2003-11-06 Thread Kevin Graeme
Ah hell. I thought I was replying in cf-community. Sorry if I ruffled feathers. All in jest, but far OT. -Kevin - Original Message - From: Kevin Graeme [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, November 06, 2003 3:05 PM Subject: Re: M$ flash killer Like M$

OT: Oracle Trigger

2003-11-06 Thread Tyler Clendenin
I am creating a trigger in oracle 8i does anyone see anything wrong with this?It causes this error whn i try to delete from the Circuits table Error: Error: ORA-04098: trigger mydb.CIRCUITS_BEF_DEL' is invalid and failed re-validation Trigger: /* Create TRIGGER for Circuits BEFORE DELETE */

CFGRID is a pain

2003-11-06 Thread Mickael
Hello I am experiencing difficulties with CFGRID with my clients in an app that I build sometime back.It worked fine before but now many of them have moved to XP and after download the java (which was enough of an annoyance)they complain that many times when they are updating my tables via CFGRID

RE: SQL Challenge

2003-11-06 Thread DURETTE, STEVEN J (AIT)
Eric, Your example for Member B doesn't make sense to me. According to the dates you gave, there was no lapse, he just got a few extra months. Can you clarify? Steve -Original Message- From: Eric Creese [mailto:[EMAIL PROTECTED] Sent: Thursday, November 06, 2003 3:41 PM To:

RE: Re: weather feed

2003-11-06 Thread Greg Luce
That one looks cool, but says my zipcode is invalid! :-( I did a goofy little thing a couple years ago here www.plateautel.net . Let me know if you want the source. -Original Message- From: Tom Kitta [mailto:[EMAIL PROTECTED] Sent: Thursday, November 06, 2003 2:35 PM To: CF-Talk Subject:

RE: CFGRID is a pain

2003-11-06 Thread Dan Phillips \(CFXHosting.com\)
Do you know if they have the MS version of Java installed or the Sun version? As a general quick fix for things like this, I uninstall the Java consoule from Add/Remove programs. Then either download a new version from Sun (or Windows update) or just hit the CFGRID page again and the Java app

RE: SQL Challenge

2003-11-06 Thread Eric Creese
Made a mistake for the report output MEMBER A07/1/200107/31/2004 MEMBER B08/1/200308/31/2004 MEMBER B07/1/200107/31/2003 [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: SQL Challenge

2003-11-06 Thread Tony Weeg
does this have to be solely in sql server code? or can it be cf/sql? ...tony tony weeg senior web applications architect navtrak, inc. www.navtrak.net [EMAIL PROTECTED] 410.548.2337 -Original Message- From: Eric Creese [mailto:[EMAIL PROTECTED] Sent: Thursday, November 06, 2003 4:12

Re: CFGRID is a pain

2003-11-06 Thread Bryan Stevenson
Personally I write custom code if CFGRID-like functionality is requiredlet's face it...that tag has always had issues ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED]

  1   2   >