Re: How can I use a .Net DLL with CFMX?

2005-12-14 Thread Simon Smith
were looking for a similar solution, however cannot risk moving to BD (lots of existing code needing to be re-tested etc) Is there no neat way of using a dll without resorting to web services ? Seems the extra overhead of TX/RX in a web service is redundant for using a piece of code that may

RE: Javascript question

2005-12-14 Thread Andrew Scott
Very easy actually. script language=javascript Function showSubmit(element) { Element.style.visibility = show; } /script input style=visibility:hidden; TYPE=submit VALUE=Submit Order Another way you could do this is have the button disabled, and then enable the button once the required

RE: How can I use a .Net DLL with CFMX?

2005-12-14 Thread Mark Fuqua
Hey, I don't know much about Blue Dragon, but I think your frustration is one of the reasons why they decided to develope a CFML compiler for .NET. I am sure there are lots of others, but surely close ties with the Windows OS was one. Mark -Original Message- From: Simon Smith

Re: How can I use a .Net DLL with CFMX?

2005-12-14 Thread Joe Rinehart
Hey Charlie, I didn't mean to infer compatibility issues. I think BD is an amazingly compatible product; when I've switched to it, I've barely noticed a difference. What I was referring to is that if they've already payed a few grand for their ColdFusion licenses, it may not go so well with

Calling a CF webservice VB6

2005-12-14 Thread Snake
Got a web service running CFMX7. It works fine when called via .NET using SOAP, but we need to call it via a VB6 application, which gives the following error. Anyone got any ideas? SoapMapper:The schema definition with a targetnamespace of http://schemas.xmlsoap.org/soap/encoding/ for SoapMapper

RE: Javascript question

2005-12-14 Thread Bobby Hartsfield
Give the button in question a style like... Style=visibility:hidden; to hide it At the end of your 'calculate total' function or onclick of the total button or wherever you wan it... put document.myformname.mybuttonname.style.visibility='visible'; to show it ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.

Re: Javascript question

2005-12-14 Thread eric.creese
That is what I want to do, show the button only after the total button is clicked, so wouldn't have to do the visbility function pieces in the onclick function? Here is what I have, should have included the other function. So when I click SubtotalItem button the OrderTotal button will appear.

Re: Javascript question - SOLVED

2005-12-14 Thread eric.creese
thanks that was exactly what I was trying to do. ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware

CF mySQL date search query question

2005-12-14 Thread Andy Matthews
I've got a form which submits 3 fields, year, month and day. In the db, I'm storing a standard date/time field (-mm-dd hh:mm:ss). The time portion of this is irrelevant for this form. What I'd like to accomplish is allowing the user to submit values for one or more of these fields and search

Re: more of my SQL issues :)

2005-12-14 Thread John Wilker
MS SQL On 12/13/05, James Holmes [EMAIL PROTECTED] wrote: For the ideal, you will need to write a custom DB function to pull out the choices as a list. What's your target DB? On 12/14/05, John Wilker [EMAIL PROTECTED] wrote: ideally I'd like 27, 'shiny,matte', 'blue,green' But could

Re: CF mySQL date search query question

2005-12-14 Thread Ryan Guill
I have to say that its sort of funny that you surrounded your cf tags with [php] but i suppose you probably cross posted this to a forum. Either way, try something like this : cfif FORM.year IS NOT AND YEAR(n.due_datetime) = '#FORM.year#' /cfif cfif FORM.month IS NOT AND

RE: CF mySQL date search query question

2005-12-14 Thread Andy Matthews
Thanks ryan...it was actually posted to Sitepoint. :P mySQL does have the year/month/day functions and that should work great, thanks! And yeah...it is stored as a date/time field and not a string. !//-- andy matthews web developer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530

Are arrays really passed by value? Practice shows otherwise.

2005-12-14 Thread James Reily
CF documentation states the following: When you pass a variable to a CFML custom tag as an attribute, or to a user-defined function as an argument, the following rules determine whether the custom tag or function receives its own private copy of the variable or only gets a

RE: CF mySQL date search query question

2005-12-14 Thread Bobby Hartsfield
MySQL has quite a few other handy date/time functions as well Good place to bookmark http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Andy Matthews [mailto:[EMAIL

RE: WebService worked in 6.1 but fails with CFMX 7.0

2005-12-14 Thread blists
Thanks for the email Andrew. The CFML code IS identical. I have one of my developers reviewing how the client app uses the WSDL, and I guess its likely that it was written to specifically handle the previous format. ~| Logware

Re: Are arrays really passed by value? Practice shows otherwise.

2005-12-14 Thread Nathan Strutz
Sounds like a bug in the documentation, a leftover from the olden days. An array in CF is now a java.util.Vector, definately a complex object! These should be pass-by-reference, aka, sharing a pointer. -nathan strutz http://www.dopefly.com/ On 12/14/05, James Reily [EMAIL PROTECTED] wrote: CF

RE: Are arrays really passed by value? Practice shows otherwise.

2005-12-14 Thread Ben Nadel
Nathan, That's good to know, thanks! I was also under the impression that Arrays were simple values. Its nice to know they aren't. -ben ... Ben Nadel Web Developer Nylon Technology 6 West 14th Street New York, NY 10011 212.691.1134 212.691.3477 fax www.nylontechnology.com

Sharepoint

2005-12-14 Thread Richard Colman
Does anyone know if it is possible/practical to run CF pages within a Microsoft Sharepoint Server environment? Rick Colman ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking

Re: Are arrays really passed by value? Practice shows otherwise.

2005-12-14 Thread Joe Rinehart
Wild, it looks like it's going to custom tags by reference, but UDFs by value. Here's a test I wrote: !--- Index.cfm --- cfset myArray = arrayNew(1) / cfset myArray[1] = unchanged / cffunction name=arrayTest returntype=array cfargument name=array type=array required=true /

Incomplete XML causes problems

2005-12-14 Thread Mark Warrick
Hello, I've written a simple Yahoo RSS XML parser which you can see here: http://www.warrick.net/yahoo_rss_reader.cfm If you enter a search term that matches current news, the script works fine. However, if there are no matching stories, the XML returned is incomplete and an error is returned

CFC for Image Manipulation

2005-12-14 Thread Adrian Showater
Sorry, I know this thread is a few days old but... I've done some image manipulateion with CFCs with mixed results. I used the Alagad Component and loved being able to do native calls in CF for image manipulation, but I was dissapointed by the final file sizes of the images, especially in the

Re: Incomplete XML causes problems

2005-12-14 Thread Mark Warrick
Ok guys - rookie move on my part. Using the conditional IsDefined works perfectly in stopping the XML from parsing when no news results are returned. Here's the complete working code: cfoutput form action=#script_name# method=post input type=text name=search_term size=30 / input type=submit

Re: Calling a CF webservice VB6

2005-12-14 Thread Anthony Prato
Can't help but I am interested in what you find. I want to have my VB guys rewrite a few batch programs to post to web services rather than the database directly. Got any good links? On 12/14/05, Snake [EMAIL PROTECTED] wrote: Got a web service running CFMX7. It works fine when called via .NET

Re: Sharepoint

2005-12-14 Thread Aaron Rouse
That is a good question, I have been messing(messing=trying to get it to install correctly) with Sharepoint some this week and asking around on it. A few warnings I have recieved on it is that it will essentially take over a machine because it is such a resource hawg. One of them was: but be

RE: Sharepoint

2005-12-14 Thread Munson, Jacob
Been led to believe that Sharepoint could just do it all... Sounds like propaganda (er, I mean marketing) talk to me. I'd be wary of opinions from people that say ANYTHING can do it all, regardless of the company/product. :) --- This transmission may contain information

Re: Sharepoint

2005-12-14 Thread Aaron Rouse
I meant to do all that I had very roughly outlined in my question. I was led to believe that by another CFM developer who just so happens to have experience with Sharepoint as well. I can not seem to find many people who even know what Sharepoint is let alone who have used it which also makes me

RE: Sharepoint

2005-12-14 Thread Dawson, Michael
I will say that SP is pretty cool for quick dirty intranets and posting documents. It really benefits those that are not to be bothered with using FrontPage or Contribute. It does have a cool survey system built-in. It's not perfect, but it keeps us from having to write custom surveys in CF.

.NET Variables wiithin ColdFusion HELP!!!

2005-12-14 Thread Ken Ketsdever
We have a project that was poorly planned. One piece of the project was built by a very experienced CF developer. Another piece was built by a good programmer fairly new to CF, with the help of a senior CF developer. The third piece was built in .NET by a good developer with lots of GUI

Re: Sharepoint

2005-12-14 Thread Aaron Rouse
That is interesting, the first time I tried to install SP it posted an error at the end about how my IIS had FP Server extensions installed and how it would not work with them there. I have been debating of using SP for the quick and dirty for the document repository needs but probably going to

RE: .NET Variables wiithin ColdFusion HELP!!!

2005-12-14 Thread Steve Brownlee
Can you determine if the sessions are simply timing out? It may be as simple as increasing the IIS session timeout value. -Original Message- From: Ken Ketsdever [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 14, 2005 1:27 PM To: CF-Talk Subject: .NET Variables wiithin

RE: .NET Variables wiithin ColdFusion HELP!!!

2005-12-14 Thread Kevin Aebig
Hi Ken, Is there a reason that the entry point is in .NET while everything else is CF? It seems logical that it might be wise to encompass the complete app within one platform... Cheers, Kevin -Original Message- From: Ken Ketsdever [mailto:[EMAIL PROTECTED] Sent: December 14, 2005

RE: .NET Variables within ColdFusion HELP!!!

2005-12-14 Thread Ian Skinner
Can you determine if the sessions are simply timing out? It may be as simple as increasing the IIS session timeout value. Not unless the default timeout is less then a minute. It happens immediately. Click on a link from an aspx page to a cfm page, click a link back and suddenly no .NET

RE: .NET Variables wiithin ColdFusion HELP!!!

2005-12-14 Thread Ken Ketsdever
It does not appear to be a timeout issue. We can stay within .NET without an issue. As soon as we leave .NET there are no Session variables upon return, even if we click out then right back in. -Original Message- From: Steve Brownlee [mailto:[EMAIL PROTECTED] Sent: Wednesday, December

RE: .NET Variables wiithin ColdFusion HELP!!!

2005-12-14 Thread Ken Ketsdever
Couple of answers to your question. The .NET portion is more than just an entry point. It contains additional functionality. We are doing what we can to continue as a CF house. There has been a push for .NET by non-IS related management (read all you want between the lines). One of the

RE: .NET Variables wiithin ColdFusion HELP!!!

2005-12-14 Thread Mehdi, Agha
Ken, Can you find out if the .NET session is set to be killed once the app gets out of .NET environment? Looks like the session is killed once you navigate to different web site or a different section in a web site. Agha Mehdi IDT - eBusiness Program Manager -Original Message- From:

RE: .NET Variables within ColdFusion HELP!!!

2005-12-14 Thread Ian Skinner
Can you find out if the .NET session is set to be killed once the app gets out of .NET environment? Looks like the session is killed once you navigate to different web site or a different section in a web site. We can determine that the .NET session is not killed, but it may be being cleared.

Snippets

2005-12-14 Thread Lee
I just got back from the big Visual Studio and SQL Server 2005 rollout and during the keynote they introduced this really cool new thing called snippets. A place where you can store code and easily get to it in the development environment. Why didn't the ColdFusion guys think of this. ;-)

RE: Snippets

2005-12-14 Thread Munson, Jacob
Not sure about Dreamweaver, but this is something that is available in both CFEclipse and HomeSite+. I use them every day. -Original Message- From: Lee [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 14, 2005 1:36 PM To: CF-Talk Subject: Snippets I just got back from the

Re: .NET Variables wiithin ColdFusion HELP!!!

2005-12-14 Thread Bryan Stevenson
Just wated to chimne in and say BlueDragon would have possibly ben a good fit for this combined technology projectalthough I know that doesn't help with you current dilema. I do know I've seen this session lost issue posted many times on this list...but I've never read them...so I don't

Re: Snippets

2005-12-14 Thread Ben Doom
Jacob-- Reread the origninal message, note the smiley, and feel the overwhelming sarcasm wash over you. Then laugh a bit. :-) --Ben Munson, Jacob wrote: Not sure about Dreamweaver, but this is something that is available in both CFEclipse and HomeSite+. I use them every day.

RE: Snippets

2005-12-14 Thread Tim Heald
I'm pretty sure he was being sarcastic. -Original Message- From: Munson, Jacob [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 14, 2005 3:39 PM To: CF-Talk Subject: RE: Snippets Not sure about Dreamweaver, but this is something that is available in both CFEclipse and

RE: Snippets

2005-12-14 Thread Ben Nadel
Yeah, I actually JUST discovered the Code Templates in homesite from listening to a Hal Helms podcast. That is one of the coolest things I liked about Eclipse, but it rocks that HS has it also. CTRL+J launches the snippet in homesite. ... Ben Nadel Web Developer Nylon

RE: Snippets

2005-12-14 Thread Munson, Jacob
I was wondering if you were being sarcastic, but I missed it. :) So Microsoft is just now putting this into VS? That's just sad. -Original Message- From: Ben Doom [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 14, 2005 1:42 PM To: CF-Talk Subject: Re: Snippets Jacob--

Re: Snippets

2005-12-14 Thread Ryan Guill
Jacob I believe he was being facetious... On 12/14/05, Munson, Jacob [EMAIL PROTECTED] wrote: Not sure about Dreamweaver, but this is something that is available in both CFEclipse and HomeSite+. I use them every day. -Original Message- From: Lee [mailto:[EMAIL PROTECTED] Sent:

RE: .NET Variables within ColdFusion HELP!!!

2005-12-14 Thread Ian Skinner
Current testing is leading to something in the .NET coding. I created a simple set of pages in ASP.NET (VB) and ColdFusion, each setting session values and displaying them on following pages. I can bounce between the two application servers with no trouble. -- Ian Skinner Web

RSS looks ok but not ok

2005-12-14 Thread Matthew Walker
Any ideas why the feed validator would be seeing something different from what I see (and rejecting the feed)? Here's the feed: http://www.tramper.co.nz/tracks/index.cfm?view=browselayout=rss Here's what the validator sees at the end: /item /channel /rss headtitleJRun Servlet

Re: Snippets

2005-12-14 Thread Bryan Stevenson
Jacob-- Reread the origninal message, note the smiley, and feel the overwhelming sarcasm wash over you. Then laugh a bit. :-) --Ben I'm laughing for both of ya..while I clean the Coke off my desk that came out my nose ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development

Re: Snippets

2005-12-14 Thread Lee
Can you beleive that crap? I remember snippets way back in CF Studio in the previous century. Don't you think they could have come up with another name or something? Maybe balmerets or billets or codetts. I've heard storys about Mirosoft stealing ideas. This takes the cake. Lee

RE: RSS looks ok but not ok

2005-12-14 Thread Katz, Dov B \(IT\)
This looks a bit like a session or client variable storage How are youi storing client/session variables? dov -Original Message- From: Matthew Walker [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 14, 2005 4:19 PM To: CF-Talk Subject: RSS looks ok but not ok Any ideas why the

Re: RSS looks ok but not ok

2005-12-14 Thread Barney Boisvert
I see the JRun error at the end, so it's not just the validator. Perhaps you're hitting it on a different vhost (because you're not outside your network) or something? cheers, barneyb On 12/14/05, Matthew Walker [EMAIL PROTECTED] wrote: Any ideas why the feed validator would be seeing

Cannot get CFMX6 to come back after reboot

2005-12-14 Thread Joe Tseng
I hope someone here can help me in a hurry... I just rebooted my W2k web server w/IIS and now CFMX won't run. I can access ...html files which means IIS is running fine. I was also able to directly access my MSSQL instance. However when I tried to access CFM files in the same directory as

RE: Snippets

2005-12-14 Thread Munson, Jacob
Yeah, they usually love to change names, like bookmarks=favorites. They even do it with their own products, DTS became SSIS, 'Network Neighborhood' became 'My Network Places', etc. -Original Message- From: Lee [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 14, 2005 2:22 PM To:

RE: RSS looks ok but not ok

2005-12-14 Thread Matthew Walker
Interesting point -- I'm storing them in that datasource. I'll experiment with that, thanks! Still not clear what's actually happening though. -Original Message- From: Katz, Dov B (IT) [mailto:[EMAIL PROTECTED] Sent: Thursday, 15 December 2005 10:31 a.m. To: CF-Talk Subject: RE: RSS

RE: Calling a CF webservice VB6

2005-12-14 Thread Snake
Alas no, we had to resort to a http wrapper for VB6 purposes. -Original Message- From: Anthony Prato [mailto:[EMAIL PROTECTED] Sent: 14 December 2005 17:45 To: CF-Talk Subject: Re: Calling a CF webservice VB6 Can't help but I am interested in what you find. I want to have my VB guys

RE: Snippets

2005-12-14 Thread Snake
Well u do know that homesite was originally created by the same guy who makes topstyle. Allaire bought it off him. -Original Message- From: Lee [mailto:[EMAIL PROTECTED] Sent: 14 December 2005 21:22 To: CF-Talk Subject: Re: Snippets Can you beleive that crap? I remember snippets way

RE: .NET Variables wiithin ColdFusion HELP!!!

2005-12-14 Thread Snake
This is another plug for Blue Dragin I'm afraid. With Blue Dragon.net you can mix and match CFML and asp.net, and session variables will be available to both. I.E session vars create din the .net code are available to CFML and vice versa. You can also include asp.net cod einto a .cfm file and

Re: Cannot get CFMX6 to come back after reboot

2005-12-14 Thread Michael Traher
I think this might point to the fact that IIS has lost its association with ..cfm files. You can check this in the web site properties under IIS, Home Directory Tab, click Configuration button in application section. This should show .cfm, .cfml, .cfc files are all associated with jrun.dll Hope

Re: Cannot get CFMX6 to come back after reboot

2005-12-14 Thread Joe Tseng
I found something that may relate to my current problem... I found the JRun used for CFMX and I saw these lines: JRun 4.0 ISAPI Extension 47304 - May 2 2002 initProxy failed to fetch server properties could not initialize Server_1:127.0.0.1:51010 couldn't initialize from remote server,

RE: RSS looks ok but not ok

2005-12-14 Thread Matthew Walker
Interestingly, getting the same thing with anonymizer: http://anon.free.anonymizer.com/http://www.tramper.co.nz/tracks/index.cf m?view=browselayout=rss And getting it on regular HTML pages too. I'll have to follow up the client variables connection (have to do it later though as I'm at work and

Re: Cannot get CFMX6 to come back after reboot

2005-12-14 Thread Joe Tseng
I think your original assertion was right... It was suggested by someone else that I run C:\CFusionMX\bin\connectors\IIS_connector.bat and it worked!!! *woohoo* ~| Logware (www.logware.us): a new and convenient web-based time

Love flash in CFCHART but hate...

2005-12-14 Thread Steve Brownlee
It's been reported from some of my users that they find it distracting when - using CFCHART and the Flash type - the bar chart has the animation every time it's drawn. I can't see any attributes to stop this annoying behavior. Am I missing it, or is this simply something that we are forced to

Re: WebService worked in 6.1 but fails with CFMX 7.0

2005-12-14 Thread Brad Haas
Are you using the DevNet version of CF 7? That meta tag that it throws in can really screw up a lot of things. --Brad Thanks for the email Andrew. The CFML code IS identical. I have one of my developers reviewing how the client app uses the WSDL, and I guess its likely that it was

Re: Love flash in CFCHART but hate...

2005-12-14 Thread Raymond Camden
You can configure a _lot_ of stuff via the cfcharts command line designer program. It is in your cfusion/bin folder I believe. If you search Tim Buntel's blog, he wrote an entry about it a few months back. On 12/14/05, Steve Brownlee [EMAIL PROTECTED] wrote: It's been reported from some of my

Re: Extending cftransaction

2005-12-14 Thread Chris Velevitch
On 12/14/05, Sean Corfield [EMAIL PROTECTED] wrote: On 12/13/05, Chris Velevitch [EMAIL PROTECTED] wrote: I agree, so why doesn't cf support this natively? One should be able to say:- cftransaction retrycount=5 !-- my transaction, however complex, goes here --

Re: more of my SQL issues :)

2005-12-14 Thread James Holmes
Doh! I'm an Oracle person - maybe someone else can help. On 12/14/05, John Wilker [EMAIL PROTECTED] wrote: MS SQL On 12/13/05, James Holmes [EMAIL PROTECTED] wrote: For the ideal, you will need to write a custom DB function to pull out the choices as a list. What's your target DB? --

Re: .NET Variables wiithin ColdFusion HELP!!!

2005-12-14 Thread charles arehart
Bryan says BD would have possibly been a good fit but doesn't help with the current dillema. Perhaps it still can. :-) Ken, if you're interested in hearing more, contact me off-list, at [EMAIL PROTECTED], or feel free to call me at 678 256 5395. /charlie Just wated to chimne in and say

Re: Extending cftransaction

2005-12-14 Thread Sean Corfield
On 12/14/05, Chris Velevitch [EMAIL PROTECTED] wrote: I'm curious as to why you don't like custom tags? There's a couple of situations where I find them natural but mostly I lean toward CFCs and UDFs because that's what's in my programming background. Custom tags are just a bit weird to me...

Re: more of my SQL issues :)

2005-12-14 Thread John Wilker
ha ha, hopefully. Anyone? Anyone? Beuller? On 12/14/05, James Holmes [EMAIL PROTECTED] wrote: Doh! I'm an Oracle person - maybe someone else can help. ~| Logware (www.logware.us): a new and convenient web-based time

Re: GIF Pipes/AJAX/async gateway

2005-12-14 Thread Bryan Stevenson
Hey James, I've had a chance to checkout your CFAJAX examples and have a quick question on a specific technical issue I was hoping you could answer before I climb on the AJAX wagon ;-) THE SCENARIO: I use this in my data driven select box options: option value=#recID# cfif recID eq

Re: .NET Variables wiithin ColdFusion HELP!!!

2005-12-14 Thread Bryan Stevenson
Bryan says BD would have possibly been a good fit but doesn't help with the current dillema. Perhaps it still can. Well yes CharlieI assumed he didn't want a whole new dev environment and to rip the app apart ;-) but Ken...I'd call Charlie if I were you ;-) Bryan Stevenson

RE: Love flash in CFCHART but hate...

2005-12-14 Thread Richard Colman
Set it as a jpg... In cfchart -Original Message- From: Steve Brownlee [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 14, 2005 2:20 PM To: CF-Talk Subject: Love flash in CFCHART but hate... It's been reported from some of my users that they find it distracting when - using CFCHART

Re: Snippets

2005-12-14 Thread dave
Yeah actually I can, same crap over and over from them. My personal fav was last year their vp said their users didn't want things like tabbed browsing and the such and now they are gunna revolutionize the web with tabbed browsing. gimme a fuckin break I got $100 that says their snippets

Re: Snippets

2005-12-14 Thread dave
and we got it on film http://www.geocities.com/conkey2k/cocaine.jpeg and hell, I thought you meant coke as in the one you drink ~Dave the disruptor~ good sites - make money getting rid of ie :) http://explorerdestroyer.com/ http://www.killbillsbrowser.com/

backslash-digit interpreted in strings

2005-12-14 Thread Jonathan Gingerich
I'm using REReplace and the replacement string contains a \5. The string came from a FORM, it was never a literal on a page. Nonetheless, ColdFusion appears to process it out and it disappears. Can anyone explain that this is not a straight out bug?

Re: How can I use a .Net DLL with CFMX?

2005-12-14 Thread dave
Charlie, First off all I am not trying to attack your product, actually I have a project coming up where it might interest me so I watch myspace very carefully to see how it performs. Now, sorry but I don't by that explaination. 6-7 montha ago myspace was supposed to be running bd and then

RE: backslash-digit interpreted in strings

2005-12-14 Thread Matthew Walker
That's a back reference. It refers to the fifth parenthesised section in your regex. Of course you probably don't have a fifth parenthesised section, so it's replaced with an empty string. You should be able to just replace all \ in your replacement string with \\ first to fix this.

Re: How can I use a .Net DLL with CFMX?

2005-12-14 Thread dave
god I gotta learn to type some day! ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware today. Try it

Re: backslash-digit interpreted in strings

2005-12-14 Thread Jonathan Gingerich
Ah, sure enough. I even read through the RE stuff earlier this year... Now if they would just get it on the man page... ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and

Re: GIF Pipes/AJAX/async gateway

2005-12-14 Thread James Holmes
The CF will perform its job when the page is created, thus providing the initial state of the page. The JS will take over from that point. I've blended the two as per your example in the past with no problems. On 12/15/05, Bryan Stevenson [EMAIL PROTECTED] wrote: Hey James, I've had a chance

Group Query help.

2005-12-14 Thread Nomad
Hello! How do I limit the number of rows returned per group in a grouped query. My query: Select pid, Details, Brand from Products group by brand order by price This query returns: pid Details Brand 1abcdMacromedia

Re: .NET Variables wiithin ColdFusion HELP!!!

2005-12-14 Thread James Holmes
How are you maintaining the session in .NET? With cookies or with URL variables? On 12/15/05, Ken Ketsdever [EMAIL PROTECTED] wrote: We have a project that was poorly planned. [snip] The issue we are running into is that the .NET session variables exist in .NET. There are no problems with