RE: form.cfid ignored. Why?

2004-03-29 Thread Bert Dawson
thats true, but there's nothing to stop you copying form.cfid and form.token into into the URL scope, and this will do the trick as long as its before the the CFapplication tag. HTH Bert -Original Message- From: Jim Davis [mailto:[EMAIL PROTECTED] Sent: 29 March 2004 05:27 To:

Currency Conversion web service

2004-03-29 Thread Michael Kear
Has anyonemanaged to consume a Currency Conversion web service under CFMX yet? Before you all send me listings of xmethods currency converters,I've looked at them all and none of them work under CF without a lot of stuffing about. Other people have apparently got a currency conversion working

help with string manipulation (Find,Replace)

2004-03-29 Thread cf coder
I've tried hard to find a solution to my problem but have had no luck. I am pulling the data from the 'comments' column in a database table. The data in the comments column looks like this. TEST - CLOSE CALL *** 10/28/2003 2:53:52 *** THIS IS A TEST- PLEASE CLOSE CALL *** 04/06/200312:33:5 I

Re: help with string manipulation (Find,Replace)

2004-03-29 Thread Yalta Classen
OK, just do something like cfset sTmp=REReplaceNoCase(qResults.Slug,'^[^a-z0-9_]*([a-z0-9_])','\1' to get rid of all leading characters you do not want, and then use sTmp for you Find. Just a few remarks: '^[^a-z0-9_]*([a-z0-9_])' means First ^- Start at the start of the string only [] one of

Re: help with string manipulation (Find,Replace)

2004-03-29 Thread cf coder
Many Thanks Yalta for your help. Your code is good but there it does handle the comments column properly if the comments column has the following data: *** 09/05/200218:46:21 *** Closing as no point to this log Hot Swap *** 17/04/200213:08:15*** OK can ayone tell me where the Request for the

RE: Driving a local scanner with CFMX

2004-03-29 Thread Eric Hoffman
I use a package from, I think, CFDEV.Works great. _ From: Arden Weiss [mailto:[EMAIL PROTECTED] Sent: Friday, March 26, 2004 11:04 PM To: CF-Talk Subject: Driving a local scanner with CFMX Seeking advice on how to seamlessly drive a twain scanner attache to User's local PC from within a

HTTPS on my local machine

2004-03-29 Thread Mickael
Hello All, I have a few projects that I keep running on my local machine which I develop on (Win XP, IIS).What I usually do is set up the home directory in IIS to be the folder under wwwroot that pertains to the particular client that I am working.I also edit my host file so that I can use the

RE: HTTPS on my local machine

2004-03-29 Thread Dave Watts
I have a few sites were there is code the run under https:// but when I run it on my machine it gives me a server error. I do not want to go as far as installing the certificates on my machine.Is there a way to allow calls to https to work on a local machine?And have this generic setting

Re: SQL grouped query help

2004-03-29 Thread Deanna Schneider
- Original Message - From: Ryan Sabir Now, I want to select only the latest article from each issue in a single query. Any ideas how I would do this? Try something like this: cfquery... SELECTarticleTitle, articleDate, articleIssueID FROMmyArticles WHERE articleID IN (SELECT TOP 1

RE: Currency Conversion web service

2004-03-29 Thread Tim Blair
Has anyonemanaged to consume a Currency Conversion web service under CFMX yet? Don't know if it'll help, but... We don't need totally up to date currency information so I have a scheduled task to run twice a day and, using an xMethods web service, update our local copy of the rates we

RE: help with string manipulation (Find,Replace)

2004-03-29 Thread Pascal Peters
On CFMX only // replaces whitespace and date/time before first comment str = REReplace(str,^\s*([*]{3}.*?[*]{3})?\s*,); // Replaces everything starting from next *** str = REReplace(str,^(.*?)\s*[*]{3}.*$,\1); NOT tested, I don't have CFMX running at the moment Pascal -Original

Re: HTTPS on my local machine

2004-03-29 Thread Mickael
Thanks Dave, That was exactly what I was looking for. Mike - Original Message - From: Dave Watts To: CF-Talk Sent: Monday, March 29, 2004 8:41 AM Subject: RE: HTTPS on my local machine I have a few sites were there is code the run under https:// but when I run it on my machine it

RE: SQL grouped query help

2004-03-29 Thread Pascal Peters
Won't work. You can't have a column in the order by that is not in the group by and TOP 1 only returns the first record, not the first record for each articlIssueID. I started by replying to this mail this morning thinking this should be easy, but I didn't find a solution. I discussed it with my

Monitor if newsletter is opened

2004-03-29 Thread Kristopher Pilles
Hi Guys. Anyone have a code sample that will allow us to track what % of our newsletter is actually opened by the recipiant? Any help you can offer would be appreciated. Thanks Kristopher Pilles Website Manager Western Suffolk BOCES 507 Deer Park Rd., Building C Phone: 631-549-4900 x 267

RE: Max id

2004-03-29 Thread Burns, John D
Well, I'm confused.It sounds like your want the max(id) whether or not it's the latest modified.Or are you saying they have the exact same time?Sounds like your database isn't quite what it should be unless I'm missing something here. John -Original Message- From: Robert Orlini

RE: Monitor if newsletter is opened

2004-03-29 Thread Katz, Dov B (IT)
Most people send an image embedded in the HTML newsletter, whose src is http://somesite/somepage.cfm?mailerid=xrecipid=y[EMAIL PROTECTED] com or similar to that That way each mail app will download the image and as it displays the message. Unless of course you're running a mail client (such as

RE: Monitor if newsletter is opened

2004-03-29 Thread C. Hatton Humphrey
Send an HTML message and have at least one of the images pull from your webserver, then check your web logs. That's the first thing that comes to my mind ;) Hatton Anyone have a code sample that will allow us to track what % of our newsletter is actually opened by the recipiant? Any help

Re: SQL grouped query help

2004-03-29 Thread Nick de Voil
Now, I want to select only the latest article from each issue in a single query. Any ideas how I would do this? Kind of sneaky, but something like this will do it (substitute the relevant type conversion string concatenation functions for your DBMS) SELECTarticleIssueId, articleTitle,

RE: Monitor if newsletter is opened

2004-03-29 Thread cfhelp
That's actually quite brilliant and simple. I would setup a website that is just for this so there are no other visits logged. Use ODBC Logging and then run an SELECT DISTINCT IP against it. But if the recipient is using preview it will be in accurate. Rick -Original Message- From:

RE: Max id

2004-03-29 Thread Robert Orlini
Sorry John. I figured it out. Friday's are tough days to get the brain work oriented. Thanks again for the advice. Robert O. -Original Message- From: Burns, John D [mailto:[EMAIL PROTECTED] Sent: Monday, March 29, 2004 9:13 AM To: CF-Talk Subject: RE: Max id Well, I'm confused.It

RE: Monitor if newsletter is opened

2004-03-29 Thread Burns, John D
The other thing you can do is reference the image as: img src=""> [EMAIL PROTECTED] Then your dspImage.cfm page could do the following: Insert into a database the emailAddress that is passed to the script and then return the imageSRC using CFCONTENT.That's what I've done in the past.It gives

Re: SQL grouped query help

2004-03-29 Thread Terry Troxel
CFQUERY name=blah SELECT articleTitle, articleDate, articleIssueID FROM myArticles ORDER BYarticleIssueID DESC /CFQUERY cfoutput query=getarticle group=articleissueID I think this might work for you. /cfoutput Terry OR do a select max(articleissueID) query and then run a query for ONLY that

Re: SQL grouped query help

2004-03-29 Thread Deanna Schneider
Hm...I was guessing, since I don't have SQL server/not familiar with top. My gut instinct was this should be easy too. But, obviously I didn't test it. If the article id's are incremented in a parrallel relationship with date (ie, the higher the articleid the newer the article), though, there

RE: SQL grouped query help

2004-03-29 Thread Pascal Peters
This is also what we came up with, but it means that if you have 10 issues and 1000 articles, you have to retreive 1000 records to show 10 articles. The Order by clause would have to be WHERE articleIssueID, articleDate DESC I can't see how the second solution would help. Pascal

RE: Monitor if newsletter is opened

2004-03-29 Thread Raymond Camden
Just to chime in on this - this method works great - but don't most mail clients now block these web bugs? I wouldn't count on it being too effective. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: why I love coldfusion...

2004-03-29 Thread Bruce Sorge
I only wish my company thought that way. We were a 100% CF shop here until recently and now I am being forced to learn .NET or lose my job. I will always use CF for my personal project and for my clients, and I only plan on using .NET here at my day job. _ From: Dan Farmer [mailto:[EMAIL

DateDiff Function

2004-03-29 Thread Justin Jefferson
I'm trying to get the difference between two times, currently they are in the format of i.e. 11:00 AM. What format do they need to be for the function to work? I currently have it as #DateDiff(h,11:00 PM, 1:00 AM)# . If anyone can help, that would be great. [Todays Threads] [This Message]

SOT: Flex is out

2004-03-29 Thread Dave Carabetta
Just in case anybody's interested, it went live today: http://www.macromedia.com/software/flex/ If you want to get it to work with MX, it's a bit of a process, but there's a good TechNote on how to do it: http://www.macromedia.com/support/flex/ts/documents/samples_cfmx.htm Regards, Dave.

RE: SQL grouped query help

2004-03-29 Thread Mark A. Kruger - CFG
You know... I love this idea - very cool I had not thought of that. -Mark Mark A. Kruger, MCSE, CFG www.cfwebtools.com www.necfug.com http://blog.mxconsulting.com ...what the web can be! -Original Message- From: Nick de Voil [mailto:[EMAIL PROTECTED] Sent: Monday, March 29, 2004

RE: why I love coldfusion...

2004-03-29 Thread Jim Davis
Welcome to my world!Well - to the MS side.;^) My large, 100% CF company was bought by a behemoth that's decided the only approved enterprise standard will be WebSphere.I'm in a learn it or lose it position myself. Frustrating isn't. at least with .NET you may not be in the position of seeing

Macromedia is Flex-ing some muscle

2004-03-29 Thread Marius Milosav
It seems that Flex has been released: http://www.macromedia.com/devnet/flex/?promoid=home_dev_flex_032904 [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Flex is out

2004-03-29 Thread Tyler Silcox
And it's incredibly awesome, but way too expensive for now... Tyler _ From: Dave Carabetta [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 28, 2001 11:04 PM To: CF-Talk Subject: SOT: Flex is out Just in case anybody's interested, it went live today:

Upgrading to CF MX

2004-03-29 Thread Jim Louis
I am Running a Online registration system on CF 5.0 and am looking to see if it is worth while to upgrade to MX 6.1.I did not upgrade in the past because I was told I would have to rewrite a lot of code and MX originally had problems with a lot of the query coding.I use Access 2000 as my

Re: Flex is out

2004-03-29 Thread Thomas Chiverton
On Monday 29 Mar 2004 16:21 pm, Tyler Silcox wrote: And it's incredibly awesome, but way too expensive for now... Flex presentation server pricing starts at $12,000 for two CPUs This compares to about a tenth of that for CFMX. I don't think I should post my inital reaction - a bit 'unclean'.

RE: Upgrading to CF MX

2004-03-29 Thread Bruce Sorge
1. MX is very stable in my opinion. I have been using it since 6.0 and have not had any problems. 2. That depends on what you have done. I only had to redo a couple of lines of code when I upgraded. The only issue that I ran into that I can recall is using the query of query feature. For some

RE: Flex is out

2004-03-29 Thread Haggerty, Mike
Has anyone looked at the example application page? There are a bunch of broken links, and presentations instead of working applications. http://www.macromedia.com/devnet/flex/example_apps.html# M -Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED] Sent: Monday, March

OT: Anyone know of a good Contribute resource?

2004-03-29 Thread Ryan Kime
I know it's not CF, but it's related to a CF site and this is the best place for answers... I'm looking for either someone on the Contribute team that is blogging - something like Mike Chambers, Christian C and others at MM, or a good technical resource related to Contribute. I have some

RE: Monitor if newsletter is opened

2004-03-29 Thread Burns, John D
Mine have worked pretty well. The only problem I've had is with Outlook and the blocking of images.Obviously, this method is a great tool to measure effectiveness and it's been used in the past by some irreputable people (SPAMers) to find valid email addresses so we can all find out that we can

Re: Flex is out

2004-03-29 Thread Rob
On Mon, 2004-03-29 at 07:51, Thomas Chiverton wrote: On Monday 29 Mar 2004 16:21 pm, Tyler Silcox wrote: And it's incredibly awesome, but way too expensive for now... Flex presentation server pricing starts at $12,000 for two CPUs This compares to about a tenth of that for CFMX. Can you

Re: Flex is out

2004-03-29 Thread Thomas Chiverton
On Monday 29 Mar 2004 17:03 pm, Haggerty, Mike wrote: There are a bunch of broken links, and presentations instead of working applications. Yup. Very sucky. And of course it doesn't help they are all about 100 pixels tall, so you can't actualy read anything in them. Great. -- Tom Chiverton

Re: Upgrading to CF MX

2004-03-29 Thread Thomas Chiverton
On Monday 29 Mar 2004 15:44 pm, Jim Louis wrote: 1. is MX stable enough for Upgrading. Aye. 2. Will I have to rewrite a lot of my current code for MX 6.1? Download the trial and run your code through the code analyiser in the administrator :-) -- Tom Chiverton Advanced ColdFusion

RE: Flex is out

2004-03-29 Thread Stacy Young
Flex is it's own product. You do not need CFMX...but on that same note you'll need something to power the backend of an application. So if you *do* have CFMX you can write web services to power the Flex front end. Cheers, Stace _ From: Rob [mailto:[EMAIL PROTECTED] Sent: Monday, March 29,

Re: Flex is out

2004-03-29 Thread Dave Carabetta
On Mon, 2004-03-29 at 07:51, Thomas Chiverton wrote: On Monday 29 Mar 2004 16:21 pm, Tyler Silcox wrote: And it's incredibly awesome, but way too expensive for now... Flex presentation server pricing starts at $12,000 for two CPUs This compares to about a tenth of that for CFMX. Can

Re: Flex is out

2004-03-29 Thread Michael Dinowitz
As a side note, there's been a Flex mailing list on the House of Fusion mailing list page for the last few months. A little traffic in the beginning but it's slated to move now that Flex is out. http://www.houseoffusion.com/cf_lists/threads.cfm/37 [Todays Threads] [This Message]

On Vacation

2004-03-29 Thread [EMAIL PROTECTED]
Ketan Patel is on vacation. He will return to work on March 25. Please forward all requests for assistance to[EMAIL PROTECTED] [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Flex is out

2004-03-29 Thread Rob
On Mon, 2004-03-29 at 08:28, Stacy Young wrote: Flex is it's own product. You do not need CFMX...but on that same note you'll need something to power the backend of an application. So if you *do* have CFMX you can write web services to power the Flex front end. So you can use Flex, for

RE: Flex is out

2004-03-29 Thread Stacy Young
Flex supports both SOAP web services and Remoting so take ur pic! As for php etc...yep, you can use it...actually you don't even need to use web services if you don't want to. Traditional HTTP calls would also work... Stace _ From: Rob [mailto:[EMAIL PROTECTED] Sent: Monday, March 29,

Long startup times CFMX and random long running template

2004-03-29 Thread Brook Davies
I have this very strange problem that popped up a few days ago. When I restart the CFMX server, and then hit my application, the first execution is really slow, between 30-50 seconds. I've tracked down the templates that run long and then removed them by adding a cfexit at the top of each for

RE: Anyone know of a good Contribute resource?

2004-03-29 Thread Dave Watts
I know it's not CF, but it's related to a CF site and this is the best place for answers... I'm looking for either someone on the Contribute team that is blogging - something like Mike Chambers, Christian C and others at MM, or a good technical resource related to Contribute. I have

Parsing MSDN RSS feeds

2004-03-29 Thread Rich Ziade
I was trying to pull in an MSDN RSS feed and xmlparse() it and it just kept breaking. Then I noticed that MS (in their infinite wisdom) doesn't bother putting in the XML declaration at the top of their feeds (e.g. ?xml version=1.0?). View the source here:

RE: why I love coldfusion...

2004-03-29 Thread Dave Watts
My large, 100% CF company was bought by a behemoth that's decided the only approved enterprise standard will be WebSphere.I'm in a learn it or lose it position myself. Some people in similar positions are able to continue using CFMX, since it can be considered part of the enterprise standard

RE: Parsing MSDN RSS feeds

2004-03-29 Thread Dave Watts
I was trying to pull in an MSDN RSS feed and xmlparse() it and it just kept breaking. Then I noticed that MS (in their infinite wisdom) doesn't bother putting in the XML declaration at the top of their feeds (e.g. ?xml version=1.0?). View the source here:

Re: Parsing MSDN RSS feeds

2004-03-29 Thread Bryan F. Hogan
cfhttp ... cfsavecontent variable=fixedXML ?xml version=1.0 encoding=utf-8? #cfhttp.fileContent# /cfsavecontent cfset objXML=xmlParse(variables.fixedXML) Rich Ziade wrote: I was trying to pull in an MSDN RSS feed and xmlparse() it and it just kept breaking. Then I noticed that MS (in their

RE: Flex is out

2004-03-29 Thread Mark Leder
I saw Ben Forta demo this last week.I was very impressed with the overall concept.However the price as advertised by MM simply is way out of reach for most smaller shops (like me).Its obviously being targeted at the enterprise level.I would think that MM would at some point want to make Flash the

RDS Security Question

2004-03-29 Thread Burns, John D
Ok, I'm working on a dev server with the following structure: D:\ is the partition with the data on it.Under D:\ there are the SQL database files as well as other miscellaneous stuff that the average person doesn't need to deal with.Then there's a websites directory. Basically, management wants

RE: RDS Security Question

2004-03-29 Thread Dave Watts
Ok, I'm working on a dev server with the following structure: D:\ is the partition with the data on it. Under D:\ there are the SQL database files as well as other miscellaneous stuff that the average person doesn't need to deal with. Then there's a websites directory. Basically,

OT: Sneaky Virus

2004-03-29 Thread Brook Davies
I just got this sneaky ass virus. The link in the email looked like a URL and it had my domain in it so I thought I would click on it just to see. We do not have webmail so I knew it was bull, but did not realize the apparent URL was actually a link to an attachment! This email did not have an

RE: Sneaky Virus

2004-03-29 Thread Mark A. Kruger - CFG
That is sneaky... -Original Message- From: Brook Davies [mailto:[EMAIL PROTECTED] Sent: Monday, March 29, 2004 12:11 PM To: CF-Talk Subject: OT: Sneaky Virus I just got this sneaky ass virus. The link in the email looked like a URL and it had my domain in it so I thought I would click on

CF Curriculum

2004-03-29 Thread Westin, Ken
Hello all, I work for a university and have been asked by an instructor to come in for two days and provide a ColdFusion boot camp for a web design class. I was wondering if anyone knew of any good resources for curriculum, teaching CF etc. I started putting some things together, but am quickly

Re: Flex is out

2004-03-29 Thread Pete Freitag
Thomas Chiverton wrote: On Monday 29 Mar 2004 16:21 pm, Tyler Silcox wrote: And it's incredibly awesome, but way too expensive for now... Flex presentation server pricing starts at $12,000 for two CPUs I think it will be beyond the reach of just about everyone, which is a shame because

Slow query on CF5 why?

2004-03-29 Thread Frank Mamone
WHat are the possible reasons for a query taking 2.3 seconds thru CF(CF5) but a few milliseconds in Query Analyzer? Same DB server. Thanks, Frank [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: OT: Sneaky Virus

2004-03-29 Thread Brook Davies
FYI, when this email came through it converted the HTML link. The email 'looked' like a text only email that had the url highlighted by the client. Like this: www.maracasmedia.com/inbox/blists/read.php?sessionid-22898 Brook If the message will not displayed automatically, follow the link to

RE: Flex is out

2004-03-29 Thread Matt Robertson
Mark Leder wrote: However the price as advertised by MM simply is way out of reach for most smaller shops (like me).Its obviously being targeted at the enterprise level. Yes, so much for MM leveraging their mass of developers, and I guess we can forget about seeing a market stampede to their

RE: Monitor if newsletter is opened

2004-03-29 Thread Arden Weiss
All of my CF5 code ran without problems in CFMX 6.1 (didn't buy into 6.0) -- in fact, I still have CF5 installed on one machine and I test some code I write under both 5 and 6.1 to make sure it runs in both environments. The only anoyance in 6.1 vs 5 is that when a CFQUERY fails on a called

RE: Flex is out

2004-03-29 Thread Mark Leder
The really sad thing is I have clients that own CF and love it now.I was hoping to use Flex as the entre into revamping their older in-office systems so that both web and desktop ran off the same system. I can forget that idea, at least for now. Ditto. As I watched the demo, I was

RE: why I love coldfusion...and not .net

2004-03-29 Thread Dan Farmer
Ughhh. the day I have to learn asp.net and stop using coldfusion is the day web development would cease to be enjoyable and thus I would be looking for a new job. From: Dave Watts [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: RE: why I love coldfusion...

RE: Flex is out

2004-03-29 Thread Rob
On Mon, 2004-03-29 at 11:07, Mark Leder wrote: The really sad thing is I have clients that own CF and love it now.I was hoping to use Flex as the entre into revamping their older in-office systems so that both web and desktop ran off the same system. I can forget that idea, at least for now.

RE: Slow query on CF5 why?

2004-03-29 Thread Steve Nelson
Does it return a huge amount of data? That could tie up the odbc driver. Is your CF server's CPU peaked at 100% for some reason? If you're running on two servers, the DB server could be fine, but the CF server could be overloaded. Does it do it every time or just the first time? Steve Nelson

RE: Flex is out

2004-03-29 Thread Phillip Beazley
At 02:09 PM 3/29/2004, you wrote: Why does it cost so much? Crack abuse? -- Phillip Beazley Onvix -- Website Hosting, Development E-commerce Visit http://www.onvix.com/ or call 727-578-9600. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Need 4 related selects code...

2004-03-29 Thread kevin
Anyone have decent 4 related selects code I can swipe? I downloaded the one tage from the gallery which purports to support 2-n related selects, but for the life of me I couldn't get it to work.I can get 3 working just fine using cf_threeRelatedSelects (great tag), but I need 4. Any help

RE: Flex is out

2004-03-29 Thread Barney Boisvert
Why does it cost so much? Their sales dept accidentally typed an extra zero back a few months ago, and no one caught it until last week, but by then it was way to late to remake everything with the right price. -Original Message- From: Rob [mailto:[EMAIL PROTECTED] Sent: Monday,

Re: CF Curriculum

2004-03-29 Thread brobborb
grab a ben forta book.use that!heehe - Original Message - From: Westin, Ken To: CF-Talk Sent: Monday, March 29, 2004 12:10 PM Subject: CF Curriculum Hello all, I work for a university and have been asked by an instructor to come in for two days and provide a ColdFusion boot camp for a

RE: Need 4 related selects code...

2004-03-29 Thread Tangorre, Michael
www.happyhacker.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, March 29, 2004 2:25 PM To: CF-Talk Subject: Need 4 related selects code... Anyone have decent 4 related selects code I can swipe? I downloaded the one tage from the gallery

Re: Slow query on CF5 why?

2004-03-29 Thread Frank Mamone
Hi Steve, This particular one returns one record but there are others with the same symptom which return around 30 or so rows. Granted they are lengthy queries. It's a shared server so there are several applications accessing the same DB server and CF server. It is consistently slow. -Frank

RE: why I love coldfusion...and not .net

2004-03-29 Thread Raymond Camden
Actually, I am _very_ impressed by .Net and c#. It is certainly not as RAD as CF - but don't knock it especially if your only experience is the older ASP stuff. .Net has some _very_ nice features and does somethings very well. As just a random example - .Net has a built-in caching system that

Benchmarks of different JVM's

2004-03-29 Thread Katz, Dov B (IT)
Has anyone done benchmarks using different JVM's with CF 6.1? I'm wondering what measurable performance gains there are with switching in a different JVM than that which ships with CF 6.1 If you've switched in a different one, is there any advice you'd give to one considering such a move?

Re: Flex is out

2004-03-29 Thread Jochem van Dieten
Rob wrote: On Mon, 2004-03-29 at 11:07, Mark Leder wrote: Ditto. As I watched the demo, I was brainstorming about all new products, apps, etc. using Flex.So my bubble is burst. Why does it cost so much? Because Macromedia knows enterprises will pay up. There really is no competition in

RE: Flex is out

2004-03-29 Thread Rob
On Mon, 2004-03-29 at 11:21, Barney Boisvert wrote: Why does it cost so much? Their sales dept accidentally typed an extra zero back a few months ago, and no one caught it until last week, but by then it was way to late to remake everything with the right price. Hehehe, but I mean really.

RE: Flex is out

2004-03-29 Thread Rob
How about a Flex light (like maybe Warm up) that has less features? Maybe? -- Rob [EMAIL PROTECTED] [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Opposite of JSStringFormat()

2004-03-29 Thread Tangorre, Michael
Here's the deal... encVal = Encrypt(someVar,someKey) safeVal = JSStringFormat(encVal) I need to use JSStringFormat to make the encrypted value JS safe, but when trying to decrypt it, it obviosuly is thrown off since there are escape slashes in the string nw... is there anyway to reverse

RE: Opposite of JSStringFormat()

2004-03-29 Thread Barney Boisvert
Use cfusion_encrypt, which will yield a string (just hex digits, I believe) that won't need to be JSStringFormat()ed. Cheers, barneyb -Original Message- From: Tangorre, Michael [mailto:[EMAIL PROTECTED] Sent: Monday, March 29, 2004 11:38 AM To: CF-Talk Subject: Opposite of

RE: Flex is out

2004-03-29 Thread Matt Robertson
Barney Boisvert wrote: Their sales dept accidentally typed an extra zero I could sell $1,200.$12,000 is enough to get me laughed out the door. They are charging that much because someone made the decision that the loss of volume and alienation of their grass roots will be made up for by cash

RE: why I love coldfusion...and not .net

2004-03-29 Thread Gaulin, Mark
I always thought learning something new was fun... but I guess if you want to make it a drag, that's your business. (I have no opinion of asp.net at this point since I haven't had the opportunity to play with it... yet.) Mark -Original Message- From: Dan Farmer [mailto:[EMAIL

Re: Flex is out

2004-03-29 Thread Adrocknaphobia
What does Lazlo price at? -adam -Original Message- From: Matt Robertson [mailto:[EMAIL PROTECTED] Sent: Monday, March 29, 2004 07:49 PM To: 'CF-Talk' Subject: RE: Flex is out Barney Boisvert wrote: Their sales dept accidentally typed an extra zero I could sell $1,200.$12,000

Test If Object is...

2004-03-29 Thread Troy Simpson
All, I have created an object like this from a *.cfc (personbean.cfc): cfset session.bean = createObject(component, personbean).init() / Now I want to test that session.bean is actually a personbean and not something else.How would I do this. I see that there is a CFXM function call

RE: Test If Object is...

2004-03-29 Thread Raymond Camden
Use getMetaData() on the object. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: why I love ColdFusion...and not .net

2004-03-29 Thread Bruce Sorge
I agree that learning something new is fun and I am sort of enjoying .NET. My chief complaint would be that M$ makes you go around the block when all you need to do is just go down to the end of the street in regards to coding.I also realize that as a pure CF developer I am not nearly as

Migrating CF 4.5 to MX 6.1

2004-03-29 Thread Barbara Langston
We will soon migrate from CF 4.5 to CFMX 6.1.The release notes talk about using the Code Analyzer for CF 5.Has anyone used it for 4.5 and if so, does it work the same, or are there issues with it. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Migrating CF 4.5 to MX 6.1

2004-03-29 Thread Dave Carabetta
We will soon migrate from CF 4.5 to CFMX 6.1.The release notes talk about using the Code Analyzer for CF 5.Has anyone used it for 4.5 and if so, does it work the same, or are there issues with it. It works the same. We used it without issue. Regards, Dave. [Todays Threads] [This Message]

RE: Migrating CF 4.5 to MX 6.1

2004-03-29 Thread Barney Boisvert
We moved from 4.5 to 6.0 (and then to 6.1 after it was released) a while back and the code analyzer worked fine for us.I don't recall having any issues with the code that it didn't alert us to.Had more problems with 6.0-6.1 than 4.5-6.0, particularly regarding the CFMAILPARAM tag, because we had

conferences

2004-03-29 Thread Bosky, Dave
Has anyone ever attended the JavaOne conference? I was curious if it's worth attending. Regards, Dave Bosky HTC Disclaimer:The information contained in this message may be privileged and confidential and protected from disclosure. If the reader of this message is not the intended recipient, or

RE: Long startup times CFMX and random long running template

2004-03-29 Thread Dave Carabetta
I have this very strange problem that popped up a few days ago. When I restart the CFMX server, and then hit my application, the first execution is really slow, between 30-50 seconds. I've tracked down the templates that run long and then removed them by adding a cfexit at the top of each for

Re: why I love coldfusion...and not .net

2004-03-29 Thread Morgan Senkal
VB6 was where I came from...I loved the language and the IDE.However when I first encountered CF, i realized I could do everything I wanted to do as far as web development faster, easier and have a lot more fun with CF than I ever could with VB.I have not had a chance to take a close look at

RE: Long startup times CFMX and random long running template

2004-03-29 Thread Brook Davies
So, this could possibly be attributed to a lack of memory slowing down the startup process? Brook At 12:47 PM 3/29/2004, you wrote: I have this very strange problem that popped up a few days ago. When I restart the CFMX server, and then hit my application, the first execution is really

RE: why I love coldfusion...and not .net

2004-03-29 Thread Tony Weeg
hey I love cf too, but I think this is cfcommunity material? one vote here... tw -Original Message- From: Morgan Senkal [mailto:[EMAIL PROTECTED] Sent: Monday, March 29, 2004 2:57 PM To: CF-Talk Subject: Re: why I love coldfusion...and not .net VB6 was where I came from...I loved the

RDS Timed out

2004-03-29 Thread Stan Winchester
RDS server is timing out within HS+ CF-Studio 5 when I try to connect my development box (CF-Studio 5 is on this box). I've restarted the CFMX server, but I still don't have RDS within HS+ CF-Studio 5. I can see my RDS drives just fine, but when I try to connect to the data sources, it times

Re: Flex is out

2004-03-29 Thread Matt Robertson
Adam wrote What does Lazlo price at? $1999 for a single-processor system.Free for approved non-commercial deployments. Something I would never have looked twice at until today. -- --- Matt Robertson,[EMAIL PROTECTED] MSB Designs, Inc.

OT: COunt Characters with Javascript on a CFMX page

2004-03-29 Thread Ciliotta, Mario
Hi, I am having a problem on a page where I have a text area that user can only type in 8000.I provide a count of each character used as they type so they know were they are up to.The problem is that all of a sudden the code is counting a space as 3 characters and a new line as 6 characters.The

RE: Flex is out

2004-03-29 Thread Christine Lawson
Hi, I just thought I'd jump in here. The pricing of Flex is a reflection of its value in its target market. Flex is designed to meet the needs of organizations who want to put the power of rich Internet applications to work for strategic business systems. We definitely have our ears open on this

RE: Flex is out

2004-03-29 Thread Christine Lawson
Hi, To my knowledge, Laszlo doesn't publish their pricing for the full featured version of their software. Christine -Original Message- From: Adrocknaphobia [mailto:[EMAIL PROTECTED] Sent: Monday, March 29, 2004 2:54 PM To: CF-Talk Subject: Re: Flex is out What does Lazlo price at?

  1   2   >