File Attachment

2003-07-03 Thread Jessica Fay
so if i were to retrieve from the database, it'll be like a href=/upload/#getAttach.FILE# traget=_blankFile/a ??? ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: File Attachment

2003-07-03 Thread Matthew Walker
What do you have in the database? The entire document or just the file name? -Original Message- From: Jessica Fay [mailto:[EMAIL PROTECTED] Sent: Thursday, 3 July 2003 6:19 p.m. To: CF-Talk Subject: File Attachment so if i were to retrieve from the database, it'll be like a

File Attachment

2003-07-03 Thread Jessica Fay
in the database, is the file name and in the server, there a folder for the attached files. ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

Re: File Attachment

2003-07-03 Thread Matthew Walker
Yes! ;-) I like to add the file type, size and download time as well. Matthew Walker Electric Sheep Web http://www.electricsheep.co.nz/ - Original Message - From: Jessica Fay [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, July 03, 2003 6:19 PM Subject: File Attachment

RE: Re: Content Management System

2003-07-03 Thread Robertson-Ravo, Neil (RX)
Personally, I would choose FarCry or Spectra in that order : FarCry requires CFMX while Spectra requires CF4.5 and up (though 1.5.2 may need 5 and up I cant remember its been a while since I looked as we are on 5 with most our apps!) You can get them at: farcry.daemon.com.au

RE: CFEXECUTE PROB

2003-07-03 Thread Robertson-Ravo, Neil (RX)
Hi Dave, yes I agree and I know thats no the problem as CF is not an admin account on production and it works aok - I have uninstalled java sdk and reinstalling it... It could be that the webserver is looking to the local d: drive to get the exe but when I add the path to the network path I get

RE: Changing query value

2003-07-03 Thread Kola Oyedeji
Cedric Did that solve your problem? If not check that there is actually a max value in the? Kola -Original Message- From: [EMAIL PROTECTED] [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 02 July 2003 18:05 To: CF-Talk Subject: Changing query value Steve, Thanks. I had

RE: Re: Content Management System

2003-07-03 Thread Steve Drucker
Well, there's a total cost of ownership issue here...Spectra would take far more time (and money) to implement than a more out of the box solution like Ektron or LayerIT. So the big question that remains unanswered is what is the total budget for the project? If the software acquisition is

xml file/structure parsing problem

2003-07-03 Thread Boldacious Web Design
Hi I have an xml file which I parse with soxml tag (which changes it to a structure) I then have to update a database with this. The updating is fine - apart from an images tag within each record eg IMAGES IMAGE MAINimage01.jpg/MAIN TNimage02.jpg/TN /IMAGE IMAGE MAINimage03.jpg/MAIN

JSP to CFML variables and back

2003-07-03 Thread cf_man
In a multi server environment, J2ee and CFMX Is there a way transfer CFML vars ( session, application , request) variable to a different Server (j2ee) and then back again. I know that one way is to do it through XML, is there something else that is available ? I also want to take JSP/Java

re: CF FTP web interface

2003-07-03 Thread Bushy
Hi, Has anyone seen a CF FTP interface. Let's say similar to WS-FTP or Flash-FXP? ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

can someone validate this bug? (repost)

2003-07-03 Thread Tony Weeg
ok...this may be hard to explain but ill try. 1. user inputs a date/time in a form field 2. I take that date/time and figure out the number of seconds since jan 1 1970 at midnight to get the epoch time. 3. this is all well and fine, unless the date falls inside daylight savings time (any time

Parse formated list

2003-07-03 Thread jeremy
I have a list of days in a month being returned from a query. Example record set would be 2,19,19,21,27 Number between 1 and 31. I then loop through this query with the code below which generates a list var that looks like 19,19,21,27 when outputted. CFLOCK Scope=Session Type=Exclusive

Conditional SQL Query Not Working

2003-07-03 Thread Jillian Carroll
I have a form, that asks for a number of 'conditions' in order to find an attendee for a course. The problem is, I've put together a query that returns too many results / not the correct results. Every row returned is returned multiple times. I'm wondering if I'm needing a join somewhere... or

RE: Content Management System

2003-07-03 Thread Raymond Camden
The final release _runs_ on MX, it does not require MX. === Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc (www.mindseye.com) Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia) Email:

RE: Parse formated list

2003-07-03 Thread A.Little
You could use listfind() instead in your cfif query - this then won't find the incorrect matches that you're getting at the moment. Alex -Original Message- From: jeremy [mailto:[EMAIL PROTECTED] Sent: 03 July 2003 14:16 To: CF-Talk Subject: Parse formated list I have a list of

RE: Parse formated list

2003-07-03 Thread webguy
This ??? ListContains(list, substring [, delimiters ]) Description Determines the index of the first list element that contains a specified substring. Return value Index of the first list element that contains substring. If not found, returns zero. Category List functions Syntax

Capturing signature input from PDA

2003-07-03 Thread Thane Sherrington
Is it possible to write a web component (perhaps ActiveX) that would allow a signature to be entered from a WinCE PDA onto a webpage and saved as a bmp/jpg on the server? T Tired of your bookmarks/favourites being limited to one computer? Move them to the Net!

Re: Conditional SQL Query Not Working

2003-07-03 Thread Jochem van Dieten
Jillian Carroll wrote: I have a form, that asks for a number of 'conditions' in order to find an attendee for a course. The problem is, I've put together a query that returns too many results / not the correct results. Every row returned is returned multiple times. I'm wondering if I'm

RE: Parse formated list

2003-07-03 Thread Andre Mohamed
You would use ListFind not ListContains because ListContains looks at elements to see if they contain the specified substring. -Original Message- From: webguy [mailto:[EMAIL PROTECTED] Sent: 03 July 2003 14:29 To: CF-Talk Subject: RE: Parse formated list This ??? ListContains(list,

Re: Capturing signature input from PDA

2003-07-03 Thread Jochem van Dieten
Thane Sherrington wrote: Is it possible to write a web component (perhaps ActiveX) that would allow a signature to be entered from a WinCE PDA onto a webpage and saved as a bmp/jpg on the server? Can't you do that with a Flash whiteboard application? http://products.figleaf.com/ Jochem

RE: can someone validate this bug? (repost)

2003-07-03 Thread webguy
Any chance you could add the following. Show the code used. Display the server details to see timezone etc that the server is using Here is a nice way to show the code Save the two sections below as showcode.cfm coloredcode.cfm and the stick cf_showcode in to your template !--- save this

RE: Capturing signature input from PDA

2003-07-03 Thread Andre Mohamed
Providing it was the PDA that was browsing the page then yes, this is possible. You could use an ActiveX component or a Java applet amongst other possibilities to achieve this. The component would need to be able to run on the PDA naturally and would be embedded in the particular web page the PDA

Re: Capturing signature input from PDA

2003-07-03 Thread Thane Sherrington
At 03:31 PM 07/03/03 +0200, Jochem van Dieten wrote: Can't you do that with a Flash whiteboard application? http://products.figleaf.com/ It was my understanding that you couldn't save graphical data like that with flash. T Tired of your bookmarks/favourites being limited to one computer?

RE: can someone validate this bug? (repost)

2003-07-03 Thread Tony Weeg
http://tony.navtrak.net/cfmxBug.cfm check out the error in the code you sent me? trying to make this work, and I get that error tony weeg uncertified advanced cold fusion developer tony at navtrak dot net www.navtrak.net office 410.548.2337 fax 410.860.2337 -Original Message-

Re: Capturing signature input from PDA

2003-07-03 Thread Thane Sherrington
At 10:43 AM 07/03/03 -0300, Thane Sherrington wrote: At 03:31 PM 07/03/03 +0200, Jochem van Dieten wrote: Can't you do that with a Flash whiteboard application? http://products.figleaf.com/ It was my understanding that you couldn't save graphical data like that with flash. Nevermind - it's

RE: Parse formated list

2003-07-03 Thread jeremy
Yes I tried listcontains and it did the exact same thing as my cfif using contains did. I'll give listfind() a try. -Original Message- From: Andre Mohamed [mailto:[EMAIL PROTECTED] Sent: Thursday, July 03, 2003 9:30 AM To: CF-Talk Subject: RE: Parse formated list You would use ListFind

test

2003-07-03 Thread Michael T. Tangorre
please ignore. ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

RE: can someone validate this bug? (repost)

2003-07-03 Thread Tony Weeg
ok its up there now... I went to that site and dl'ed the new version of coloredCode anyway here it is.. http://tony.navtrak.net/cfmxBug.cfm ideas? anyone? tony weeg uncertified advanced cold fusion developer tony at navtrak dot net www.navtrak.net office 410.548.2337 fax 410.860.2337

RE: Re: Content Management System

2003-07-03 Thread Mike Brunt
Neil, I am just curious why would you personally go for Far Cry before Spectra? Kind Regards - Mike Brunt Webapper Services LLC Web Site http://www.webapper.com Blog http://www.webapper.net Webapper Web Application Specialists -Original Message- From: Robertson-Ravo, Neil (RX)

Returning value from a stored procedure?

2003-07-03 Thread Bosky, Dave
Are there any SQL guru's that can help me with this stored procedure? I'm trying to return '@AffiliateName' but it always returns ''. I know the query matches one record but the value is never saved to the Out variable '@AffiliateName'.

Re: can someone validate this bug? (repost)

2003-07-03 Thread Jochem van Dieten
Tony Weeg wrote: http://tony.navtrak.net/cfmxBug.cfm ideas? anyone? It would help if you kicked alter.net: H:\tracert tony.navtrak.net Tracing route to tony.navtrak.net [63.100.64.186] over a maximum of 30 hops: 1 10 ms10 ms 10 ms depoort.tudelft.nl [145.94.129.0] 2

Dreamweaver Problem

2003-07-03 Thread Shahzad.Butt
Hi I have just installed Dreamweaver MX on my machine. Text for Insert Panel (Common, Layout, Tables, Forms, Templates, Characters) is quite weird and I cant see anything at all. How can I change and increase fontsize? Shahzad Butt (Development Engineer) JJ FastFood Distribution Ltd.

RE: Returning value from a stored procedure?

2003-07-03 Thread Janine Jakim
Get rid of the null=yes. That is setting it to ''. -Original Message- From: Bosky, Dave [mailto:[EMAIL PROTECTED] Sent: Thursday, July 03, 2003 10:06 AM To: CF-Talk Subject: Returning value from a stored procedure? Are there any SQL guru's that can help me with this stored procedure?

RE: can someone validate this bug? (repost)

2003-07-03 Thread Tony Weeg
ok, how about http://www.navtrak.net/cfmxBug.cfm :) my router, blocking tony.navtrak.net, I think...sorry! its now on our live machine! tony weeg uncertified advanced cold fusion developer tony at navtrak dot net www.navtrak.net office 410.548.2337 fax 410.860.2337 -Original

RE: Returning value from a stored procedure?

2003-07-03 Thread Bosky, Dave
There's still a problem with the sp because when I execute it in query analyzer it prints a empty string. Some reason the query value is not getting put in the variable. -Original Message- From: Janine Jakim [mailto:[EMAIL PROTECTED] Sent: Thursday, July 03, 2003 10:08 AM To: CF-Talk

RE: Re: Content Management System

2003-07-03 Thread Robertson-Ravo, Neil (RX)
Normally I wouldnt but FarCry I have found to be far more extendible that Spectra in many fronts... Here is a short list of why... 1. Its Free 2. CFC's 3. Automated DB Scripting 4. Excellent Userbase and I would say already larger and more active that Spectra ever was (outside of Macromedia).

RE: Returning value from a stored procedure?

2003-07-03 Thread Janine Jakim
Ps. Guess I should have rewritten this for you for an out variable this is all you need- no dbvarname either- that goes with the in type. for type=in you need dbvarname, value, cfsqltype. for type=out use cfsqltype, variable. Also don't use the null=yes unless you KNOW for a fact that it will be

RE: Returning value from a stored procedure?

2003-07-03 Thread Janine Jakim
Would help if I start reading the whole email before responding. I'm having a rough day here SET @AffiliateName = '' Why did you do this in your stored proc?? Won't this automatically always set it to ''? -Original Message- From: Bosky, Dave [mailto:[EMAIL PROTECTED] Sent:

RE: Returning value from a stored procedure?

2003-07-03 Thread Robertson-Ravo, Neil (RX)
there is is no real overhead and wont effect anything... -Original Message- From: Janine Jakim [mailto:[EMAIL PROTECTED] Sent: 03 July 2003 15:35 To: CF-Talk Subject: RE: Returning value from a stored procedure? Would help if I start reading the whole email before responding. I'm

Content Management System

2003-07-03 Thread Rachel Maxim
Speaking of low-cost CMS'...has anyone used 13amp's SparkPlug? http://www.13amp.net/index.html Seems to have good features at a very low price, which makes me thing the sacrifice is in usability (it always seems to be on inexpensive products!). I would love to hear about anyone's past experience

Fairly Difficult SQL problem

2003-07-03 Thread Ian Skinner
Trying this on the more active CF-Talk list. ... I have tables something like the following data structures. Sponsor IDSponsor ... 1 Foo 2 Bar 3 Clyde 4 New Sponsor Drives IDSponsorID Date ... 1 1 4/15/03 2 2

Dreamweaver Problem

2003-07-03 Thread Rachel Maxim
Hi I have just installed Dreamweaver MX on my machine. Text for Insert Panel (Common, Layout, Tables, Forms, Templates, Characters) is quite weird and I cant see anything at all. How can I change and increase fontsize? Shahzad Butt (Development Engineer) JJ FastFood Distribution Ltd.

RE: Content Management System

2003-07-03 Thread Robertson-Ravo, Neil (RX)
cant really get much lower cost that free... i.e. Spectra FarCry -Original Message- From: Rachel Maxim [mailto:[EMAIL PROTECTED] Sent: 03 July 2003 15:49 To: CF-Talk Subject: Content Management System Speaking of low-cost CMS'...has anyone used 13amp's SparkPlug?

Re: can someone validate this bug? (repost)

2003-07-03 Thread Calvin Ward
coloredCode? - Original Message - From: Tony Weeg [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, July 03, 2003 9:58 AM Subject: RE: can someone validate this bug? (repost) ok its up there now... I went to that site and dl'ed the new version of coloredCode anyway

CF Flash (crazy idea?)

2003-07-03 Thread Michael T. Tangorre
Hi everyone. I have an idea and need to know if it is within the capabilities of Flash and CF. What I would like to do is provide an interface for users to come to, where they can create forms and position the form elements and element labels wherever they wish (within a maximum area). How I

RE: CF Flash (crazy idea?)

2003-07-03 Thread Robertson-Ravo, Neil (RX)
Dude, I have thought of the same and if you or anycan come up with an idea solution...please post it. -Original Message- From: Michael T. Tangorre [mailto:[EMAIL PROTECTED] Sent: 03 July 2003 15:59 To: CF-Talk Subject: CF Flash (crazy idea?) Hi everyone. I have an idea and need to

RE: can someone validate this bug? (repost)

2003-07-03 Thread Tony Weeg
www.cfcomet.com --- utlities pretty cool custom tag tony weeg uncertified advanced cold fusion developer tony at navtrak dot net www.navtrak.net office 410.548.2337 fax 410.860.2337 -Original Message- From: Calvin Ward [mailto:[EMAIL PROTECTED] Sent: Thursday, July 03, 2003 10:55 AM

Re: CF Flash (crazy idea?)

2003-07-03 Thread Michael T. Tangorre
Yeah, if someone could develop this, they could help alot of people out and make a good deal of $ at the same time :-) - Original Message - From: Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, July 03, 2003 11:03 AM Subject: RE: CF Flash

Re: CF Flash (crazy idea?)

2003-07-03 Thread Bryan Stevenson
I'd say part one is definately possible, but part 2 is pushing it. Here's a questionWhy does it have to be an HTML form? If you're sending it via e-mail can't you just send the HTML that embeds the SWFthat way the user can fill the form out in Flash?? It just sounds like mabye you've

Re: CF Flash (crazy idea?)

2003-07-03 Thread Bryan Stevenson
Show me the money!! ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED] - Macromedia Associate Partner www.macromedia.com

RE: Fairly Difficult SQL problem

2003-07-03 Thread Cantrell, Adam
What I need to retreive is all the drives for a given month (June for example) plus the number of days it has been since any previous drive for a given Sponsor. Does it need to be in the same query - I might treat that as two separate queries - one to retrieve all drives for the given

Re: CF Flash (crazy idea?)

2003-07-03 Thread Michael T. Tangorre
I did think of that... however, I came across some discussions in my research about email clients blocking embedded flash and such.. I have not confirmed this yet, but the downside is that you would have to ensure your recipient had the flash plugin, etc Mike - Original Message -

Re: CF Flash (crazy idea?)

2003-07-03 Thread CF Dude
This most likely won't work because of the client's security settings. Sometimes, in outlook express I'll send web pages to coworkers for proofs. The pages that contain any sort of flash content doesn't work because of security. If somebody could get around that, then it'd probably work just

RE: CF Flash (crazy idea?)

2003-07-03 Thread Benoit Hediard
It shoud be possible to do that with FlashMX/FlashRemotingMX/ColdFusionMX. You have all the required features in FlashMX : dragdrop, pixel coordinates, remoting to generate the HTML form with ColdFusionMX... But you'll need a really good ActionScript developer to do the Flash UI... It might be

cf_location custom tag and CFMX (not working)

2003-07-03 Thread Jamie Jackson
It appears that CF_Location v2.0.1, V1.0 (Jordan Clark). Doesn't work under CFMX. I could hack it to get it working, but if anyone has the fixes at their fingertips, would you let me know? The first thing MX balks at is: CFSET equals = / ^^ So I changed it to: CFSET myEquals = / (and

RE: CF Flash (crazy idea?)

2003-07-03 Thread Andre Mohamed
Is there a particular reason why Flash is being mandated or needs to be used? If not, it would be just as possible to build using DHTML though that doesn't mean Flash shouldn't be used after all you'll have to deal with cross browser issues with the DHTML approach - however I believe the

Re: CF Flash (crazy idea?)

2003-07-03 Thread Jim Campbell
Vincent: You know what they call a programming methodology at Macromedia? Jules: They don't call it a programming methodology? Vincent: No, they got a marketing department, they don't know what the @$! a programming methodology is. Jules: Then what do they call it? Vincent: A Royale Initiative

CFX_IMAGE

2003-07-03 Thread Benjamin Rosenthal
Here is the author's home page. You can download it here and get the docs too. http://www.kolumbus.fi/jukka.manner/ Benjamin Gap Up LLC ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

Jrun memory usage out of hand

2003-07-03 Thread Rich Z
I noticed when running certain pages that - sometimes - Jrun's memory usage goes out of hand. Even stopping and restaring the CFMX service reduced usage somewhat - but not a whole lot. And when I go back in to test again, the memory usage shoots back up. Anyone have any idea what is causing

Caching cfc objects in the application scope

2003-07-03 Thread Rich Z
Is this worth doing? Does it improve performance at all? ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4 FAQ:

RE: Fairly Difficult SQL problem

2003-07-03 Thread Ian Skinner
Thanks, but I am not sure that quite meets my needs. Correct me if I'm wrong. This is for a calendar that displays all the drives for a month. One piece of information needed for the display is how many days has it been since a previous drive (if it exists) for each sponsor. So, I can't just

RE: CFX_IMAGE

2003-07-03 Thread Stephenie Hamilton
That only lists Latest version is 1.4.8. and there is a newer better version. Use Dan Phillips link for the newest version. ~~ Stephenie Hamilton Macromedia Certified ColdFusion Professional CFXHosting -Original Message- From: Benjamin Rosenthal [mailto:[EMAIL PROTECTED] Sent:

RE: CF Flash (crazy idea?)

2003-07-03 Thread Cantrell, Adam
When you subscribed to this list did you see a sign on the front of it that said stupid ***%% jokes email list? You know why you didn't see that sign? Cause it ain't there, cause stupid **%%# jokes ain't this lists %$#%$% business, that's why. ;) Adam. -Original Message- From:

RE: Caching cfc objects in the application scope

2003-07-03 Thread Raymond Camden
It does improve performance. However, I (and others) have found issues with CFCs that are cached and under load. (And I don't mean big honkin amazon.com load, just medium level load.) Issues like: 1) Methods not working anymore - in other words, you call foo() and the CFC forgets it has foo()

Re: Fairly Difficult SQL problem

2003-07-03 Thread Jochem van Dieten
Ian Skinner wrote: I have tables something like the following data structures. Sponsor IDSponsor ... 1 Foo 2 Bar 3 Clyde 4 New Sponsor Drives IDSponsorID Date ... Date is a reserved word. 1 1 4/15/03 2 2 4/18/03 3 3

Re: CF Flash (crazy idea?)

2003-07-03 Thread Jim Campbell
Bring out the GIMP. - Jim Cantrell, Adam wrote: When you subscribed to this list did you see a sign on the front of it that said stupid ***%% jokes email list? You know why you didn't see that sign? Cause it ain't there, cause stupid **%%# jokes ain't this lists %$#%$% business, that's why.

RE: CF Flash (crazy idea?)

2003-07-03 Thread John Wilker
One of the best lines from that movie. Have a sound byte of it at home. -Original Message- From: Cantrell, Adam [mailto:[EMAIL PROTECTED] Sent: Thursday, July 03, 2003 8:51 AM To: CF-Talk Subject: RE: CF Flash (crazy idea?) When you subscribed to this list did you see a sign on the

Re: CF Flash (crazy idea?)

2003-07-03 Thread Michael T. Tangorre
Stop trashing this thread! I am trying to get some feedback, not any BS. Thanks! - Original Message - From: John Wilker [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, July 03, 2003 12:04 PM Subject: RE: CF Flash (crazy idea?) One of the best lines from that movie.

RE: Fairly Difficult SQL problem

2003-07-03 Thread Ian Skinner
Thanks, of course my real table uses a different field name for date. It's going to take a bit of trial and error to understand every thing you are doing in your example and translate it to my real world code where I also have 4 other tables to join in for other information. Is there any problem

RE: Conditional SQL Query Not Working

2003-07-03 Thread Costas Piliotis
Wow... join conditions in the where clause... Haven't seen those for years :) Looks like you have a cartesian join between organizations and the rest of your dataset... Need to join organizations to something. -Original Message- From: Jillian Carroll [mailto:[EMAIL PROTECTED] Sent:

CrystalTech says ALL variables must be locked

2003-07-03 Thread Dave Jones
Hi, I'm trying to resolve a problem for an application hosted at CrystalTech which sporadically starts sending out corrupted email when using CFMAIL. CrystalTech is saying that the problem is because I'm not CFLOCKing my variables, even though a) my application is not using session or

RE: CF Flash (crazy idea?)

2003-07-03 Thread Haggerty, Mike
Michael - All of the things you mentioned are possible, and a lot more. I am currently hard at work on a product that features this capability. If you are interested in taking a look at (what will be) the beta version, please feel free to contact me off list to receive an NDA. M

Re: Re: Content Management System

2003-07-03 Thread Paul Hastings
1. Its Free 2. CFC's 3. Automated DB Scripting 4. Excellent Userbase and I would say already larger and more active that Spectra ever was (outside of Macromedia). 5. Easier Extendabillity. 6. Written for CFMX and not a CF5/MX bodge which 1.5.2 is. 7. Its Free 8. its i18n ready (well for

Re: CF Flash (crazy idea?)

2003-07-03 Thread Jason Miller
http://www.macromedia.com/software/dataconnection/demo/ fire fly components May be of some help.. however more of a tool for you the developer than the end user. I'm currently looking for a link that had some form building type features on a flash list.. I'll be sure to forward if I can find

RE: CrystalTech says ALL variables must be locked

2003-07-03 Thread Raymond Camden
It's bunk. They are saying you need to lock local variables? I'd worry about their support staff if they thought that. === Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc (www.mindseye.com) Member of Team Macromedia

Re: CF Flash (crazy idea?)

2003-07-03 Thread Michael T. Tangorre
Thanks Jay! Much appreciated. Mike - Original Message - From: Jason Miller [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, July 03, 2003 12:23 PM Subject: Re: CF Flash (crazy idea?) http://www.macromedia.com/software/dataconnection/demo/ fire fly components May

RE: CrystalTech says ALL variables must be locked

2003-07-03 Thread Dan Phillips
We prefer that clients use them but do not force the issue. Is the application sending email when it's not supposed to or just sending garbage when a message is supposed to go out? Dan Phillips www.CFXHosting.com 1-866-239-4678 [EMAIL PROTECTED] -Original Message- From: Raymond Camden

CFUnit

2003-07-03 Thread Robertson-Ravo, Neil (RX)
Anyone got any ideas who came up with the CFUnit stuff on the DRK3? ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4

RE: CrystalTech says ALL variables must be locked

2003-07-03 Thread Ben Doom
And I'm wondering what kind of performance their shared servers are going to get if they have their clients locking every variable. Ugh. -- Ben Doom Programmer General Lackey Moonbow Software, Inc : -Original Message- : From: Raymond Camden [mailto:[EMAIL PROTECTED] : Sent:

RE: CFUnit

2003-07-03 Thread Raymond Camden
Christian Cantrall. And it rocks. I _love_ the unit tester (and even added some more stuff to it). === Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc (www.mindseye.com) Member of Team Macromedia

RE: CrystalTech says ALL variables must be locked

2003-07-03 Thread Raymond Camden
We prefer that clients use them but do not force the issue. Yea but you mean for shared variables, right? I assume you aren't agreeing with CT and their statement that _local_ vars be locked (IF that is what they meant - this all could be miscommunication).

RE: CFUnit

2003-07-03 Thread Robertson-Ravo, Neil (RX)
Did he do it though? Is it a total new development by MM or is it a redevelopment of someone elses work -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: 03 July 2003 17:33 To: CF-Talk Subject: RE: CFUnit Christian Cantrall. And it rocks. I _love_ the unit

RE: CFUnit

2003-07-03 Thread Robertson-Ravo, Neil (RX)
not a dig...just curious on how the MM thought process is done. -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: 03 July 2003 17:36 To: CF-Talk Subject: RE: CFUnit Did he do it though? Is it a total new development by MM or is it a redevelopment of

Limit to how much form data can be submitted?

2003-07-03 Thread Matt Robertson
What is the limit of data (quantity) that can be submitted in an html form? I've got a client that wants to be submitting 150k+ in an ActivEdit window. Its old FrontPage-generated code, so you can guess why its so big. Matt Robertson [EMAIL

About Security Scenario...

2003-07-03 Thread Hassan_Arteaga_Rodríguez
Hi all: I'm trying to implement an application authentication security scenario with cfLogin tag. Somebody can provide me a simple example? Regards, -- M. Sc. Hassan Arteaga Rodríguez Microsoft Certified System Engineer WEB Programmer. Network Admin [EMAIL PROTECTED]

RE: CFUnit

2003-07-03 Thread webguy
Anyway to get this without the drk ? -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: 03 July 2003 17:33 To: CF-Talk Subject: RE: CFUnit Christian Cantrall. And it rocks. I _love_ the unit tester (and even added some more stuff to it).

RE: CFUnit

2003-07-03 Thread Andre Mohamed
It is based on the XUnit testing framework originally developed by Kent Beck along with Extreme Programming. http://www.xprogramming.com/software.htm I see no reason why Macromedia should charge for this though - it should be submitted along with all the other XUnit tools for public use. A

RE: CrystalTech says ALL variables must be locked

2003-07-03 Thread Dan Phillips
Yes shared variables. If not, other sites can steal them and it makes for a very fun possible server crash. However, we have only had to tell people to use CFLOCK if their site was not well coeded and they are generating lots of traffic. I always take a look at server logs anyway before I ask a

RE: CFUnit

2003-07-03 Thread Andre Mohamed
I'm hoping it will be released separatelyor continue writing my own version. It's not hard to do and have already developed a version for unit testing custom tags. See the links I just posted to see how you could implement your own (even more comprehensive) version. Unfortunately, there are

RE: CrystalTech says ALL variables must be locked

2003-07-03 Thread Dave Jones
Dan, The emails are going out when supposed to, but occasionally are scrambled with junk data, in both the header and body. Mail going out with CDONTS does not exhibit the problem. At some point, CFMAIL stopped working altogether, and when the service was restarted, the problem was gone.

RE: CrystalTech says ALL variables must be locked

2003-07-03 Thread Scott Brady
-- Original Message -- From: Raymond Camden [EMAIL PROTECTED] It's bunk. They are saying you need to lock local variables? I'd worry about their support staff if they thought that. I've had an experience with CT support recently where I could tell that some

RE: CFUnit

2003-07-03 Thread webguy
It can quite easily be transferred to CFC. I started down this road but found several barriers to replicating junit in CFMX for testing cfcs. when is object a equal to object b for example. If anyone has replicated the example in the Junit example (called test infected I think? ) in cf I'd love

RE: CrystalTech says ALL variables must be locked

2003-07-03 Thread Stephenie Hamilton
Let me elaborate. We ask all customers to lock their shared scope vars,(ie: session, application). But we do not in any way tell them to lock non shared scope vars (ie: local, client etc). ~~ Stephenie Hamilton Macromedia Certified ColdFusion Professional CFXHosting -Original

RE: CrystalTech says ALL variables must be locked

2003-07-03 Thread Dan Phillips
What happends when you make a generic CFMAIL script? Does it send normally? Dan Phillips www.CFXHosting.com 1-866-239-4678 [EMAIL PROTECTED] -Original Message- From: Dave Jones [mailto:[EMAIL PROTECTED] Sent: Thursday, July 03, 2003 1:20 PM To: CF-Talk Subject: RE: CrystalTech says ALL

RE: CFUnit

2003-07-03 Thread Dave Jones
I have not yet looked at CFUnit, but it sounds like it is at least conceptually derived from JUnit (which I find invaluable) and its offspring. If so, I think it's unfortunate that MM does not see fit to contribute CFUnit back to the community from which they derived their inspiration for

Re: Fairly Difficult SQL problem

2003-07-03 Thread Dina Hess
Just in case your database doesn't support some of that cool stuff Jochem uses, try this. It works in SQL 2000: SELECTs.id, s.sponsor, d.date, MIN(datediff(day, dp.date, d.date)) as daysSince FROM drive d left outer join sponsor s on d.sponsor_id = s.id left outer JOIN drive dp ON

Pagination issues

2003-07-03 Thread Rodrigo Cohen
Hi all ! I have a simple question about pagination for queries with big resultsets... :o) I have a query that retuns about 1000 rows. But i show only 10 rows per page. I read at many articles, to use startrow and endrow in CFOUTPUT QUERY tag to make paginations but i dont like that way... So i

RE: CrystalTech says ALL variables must be locked

2003-07-03 Thread Dave Jones
Dan, During the time the problem was occurring, I created a test script that contained nothing but a CFMAIL tag and CDONTS script. No variables were used. The emal sent with the CFMAIL tag was corrupted, the email sent with CDONTS was fine. Dave Jones NetEffect At 01:11 PM 7/3/03 -0400, you

RE: TagCFMail::sendMessage

2003-07-03 Thread Ihrig Paul E Cont 88 ABW/EM
ok still having the problem. did a test on the mail server and it is fine. ran the patch on the server still having problerms... cf server 5 win 2000 iis ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4

  1   2   >