RE: Web services

2006-12-26 Thread Rukmaj Chandavar
Hi James, I am sorry to say that I don't know how to implement both of your suggestions. I would be glad to see some detailed steps on implementing both suggestions. Thanks and regards, Rukmaj Chandavar GIS Professional Mobile: +91 98456 11668 Email: [EMAIL PROTECTED] IM - [EMAIL PROTECTED]

Re: Addendum to previous post about semi-colon

2006-12-26 Thread Jacob Munson
I'm still not sure what the rest of your code looks like, but maybe this comment on livedocs might help: pete_freitag: Note that the ParagraphFormat tag inserts P tags not p tags, note the case. This function is not XHTML safe. On 12/26/06, Bruce Sorge <[EMAIL PROTECTED]> wrote: > It is in a CFOU

RE: Addendum to previous post about semi-colon

2006-12-26 Thread Bruce Sorge
It is in a CFOUTPUT query. #ParagraphFormat(Boundaries)# The user form is a textarea field. -Original Message- From: Jacob Munson [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 26, 2006 5:37 PM To: CF-Talk Subject: Re: Addendum to previous post about semi-colon It would he

Re: clark valberg's interface driven arch ???

2006-12-26 Thread Judith Dinowitz
You bet in some form in the next issue of FAQ-U! I'm expecting that article from you, Clark. :) Judith > Correction: > 1. Slides are probably NOT very enlightening - but I'll ask Judith to > post them anyhow... > > For further reading a white-paper is also in production and will be > availa

Re: clark valberg's interface driven arch ???

2006-12-26 Thread Clark Valberg
Correction: 1. Slides are probably NOT very enlightening - but I'll ask Judith to post them anyhow... For further reading a white-paper is also in production and will be available shortly - Perhaps in some form, included in the next issue of FAQ-U. Feel free to drop me a line if you have any

Re: clark valberg's interface driven arch ???

2006-12-26 Thread Clark Valberg
Doug, This process has saved my butt many times to be sure. I think everyone who's in the business knows the story. (Manager) "hmm.. yah, can we change the e-mail address on the login screen to be a username instead", of course this request is naturally followed with "that won't take long ri

Re: clark valberg's interface driven arch ???

2006-12-26 Thread Douglas Knudsen
thanks for the reply! Any materials to post on http://www.nycfug.org/dispatch.cfm?a=home.homeconcerning your talk? Yeah, sounded like the idea covered in FliP, was just digging around and can't find much on the phrase "Interface Driven Architecture". Wondered if its a a new term, re-invented ter

Re: HTML focus

2006-12-26 Thread Jacob Munson
Try this: var activeElement = null; function blurHandler(evt) { activeElement = null; } function focusHandler(evt) { var e = evt ? evt : window.event; if (!e) { return; } if (e.target) { activeElement = e.target; } el

Re: Addendum to previous post about semi-colon

2006-12-26 Thread Jacob Munson
It would help if you showed us some code. I don't know what you mean by "formatting goes away". How is this data getting to the screen? On 12/26/06, Bruce Sorge <[EMAIL PROTECTED]> wrote: > OK, > It appears I was mistaken. What I have in the database is this: A user > enters free-form text. Say

RE: MySQL Connection Fails

2006-12-26 Thread Coldfusion
Rick, I had to use the Other setting within CFADMIN Using the following: JDBC URL: jdbc:mysql://localhost:3306/databasename Driver Class: com.mysql.jdbc.Driver Username: Password: -Original Message- From: Richard Colman [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 26, 2006 7:5

dmoz

2006-12-26 Thread Al Everett
I am a volunteer editor at the Open Directory Project ( http://dmoz.org ). The category for ColdFusion ( http://dmoz.org/Computers/Programming/Internet/ColdFusion/ ) hasn't had any serious work done on it since the CF 5.0 days. I've decided to see if I can get it up to snuff. There was recently a

MySQL Connection Fails

2006-12-26 Thread Richard Colman
I am trying to connect to a MySQL database running on a remote linux server from CFMX7. When I setup the connection using the Microsoft ODBC utility, everything works great. When I attempt to setup the connection with the CFMX Data Sources utility, using the exact same settings, it fails with the

RE: HTML focus

2006-12-26 Thread Brad Wood
I have downloaded and played around with Prototype before. I'm not sure it will help me though with this. All the observe functionality does is let me attach event listeners. My problem is that I have no way to programmatically determine whether a given element has focus while possessing the eve

Re: CFGoogleBot

2006-12-26 Thread James Holmes
http://www.forta.com/blog/index.cfm?mode=e&entry=1722 On 12/27/06, David Gardner <[EMAIL PROTECTED]> wrote: > Googling was no help. Can I have the link for info on the > CFGoogleBot? Por favor? > > Neil: > > The CFGoogleBot is great as well, just type in the tag you want and it will > > google t

CFGoogleBot

2006-12-26 Thread David Gardner
Googling was no help. Can I have the link for info on the CFGoogleBot? Por favor? Neil: > The CFGoogleBot is great as well, just type in the tag you want and it will > google talk you back with the syntax and the link to LiveDocs. > ~~

Re: clark valberg's interface driven arch ???

2006-12-26 Thread Clark Valberg
Doug, Thanks for your interest Doug. I have wee bit about it on my blog ( http://www.clarkvalberg.com ), but probably only enough to whet ones appetite. Interface Driven Architecture is born from the FLiP methodology and involves developing a click-able "prototype" of the application which w

Re: HTML focus

2006-12-26 Thread Robertson-Ravo, Neil (RX)
Have a look at prototype etc for Observers if you want to use a JS framework, if not you can just roll your own, not too hard, basic field validation really. "This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed B

RE: Web services

2006-12-26 Thread Dave Watts
> Also, make sure that webservices are enabled in the web > server. IIS I believe defaults to disabled for webservices. There is nothing special you need to do in IIS to publish CF web services. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest ca

OSCache and CFMX 7

2006-12-26 Thread Dov Katz
I didn't know CFMX 7 used OSCache. (open symphony's cache product - www.opensymphony.com) Last night I was playing around with it (I'm releasing a CFC shortly...) and found that the latest version of their JAR I added to the classpath via the CFAdmin JVM settings wasn't recognized by CF...

clark valberg's interface driven arch ???

2006-12-26 Thread Douglas Knudsen
Can anyone point me to more info on this topic? Digging around Google all I get usually is a link to Clark's site, temporarily down ATM. Does Interface Driven Architecture Methodology have a AKA that lives in the O'reilly world somewhere? -- Douglas Knudsen http://www.cubicleman.com this is

Re: Creating text files w/ 1mil + lines

2006-12-26 Thread Chris Ditty
Thanks man. I'll pass this on to the person doing the coding. It looks interesting. On 12/26/06, Ben Nadel <[EMAIL PROTECTED]> wrote: > Chris, > > I threw together a well-commented example of something that might > accomplish what you are talking about. It uses smaller record sets and > buffered

Addendum to previous post about semi-colon

2006-12-26 Thread Bruce Sorge
OK, It appears I was mistaken. What I have in the database is this: A user enters free-form text. Say they type in this: * North: (going east) Beverly Hills border/Whitworth Drive, when west of Robertson Blvd.; Beverly Hills border/Gregory Way when east of Robertson Blvd. South: (going east) 10

escaping Semi Colons

2006-12-26 Thread Bruce Sorge
Hello list, I have a form that contains some free text fields, and users sometimes put semi-colons in the field. I am outputting the information using the ParagraphFormat function. What is happening though is that the output fields formatting ( Tag) ends at the semi-colon rather than retain the for

RE: Creating text files w/ 1mil + lines

2006-12-26 Thread Ben Nadel
Chris, I threw together a well-commented example of something that might accomplish what you are talking about. It uses smaller record sets and buffered output via the Java buffered output object. I am no Java coder, so I am not always 100% sure what I am doing, but this might help point you in a

RE: HTML focus

2006-12-26 Thread Brad Wood
Yes, that would require me to have an onFocus attribute on every element. Basically, I have a form field, and on blur of that field, I want to check and see where the user clicked. If they clicked the input I wanted them to, then fine, otherwise I want to give focus to the input I wanted them to

Re: HTML focus

2006-12-26 Thread Robertson-Ravo, Neil (RX)
You mean apart from onFocus? "This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is confidential and may also be privileged. It is

HTML focus

2006-12-26 Thread Brad Wood
Does and HTML element have an attribute which will tell you if it has focus? Ex: If(document.getElementById('test1').focus == true) { ... } Also, does the document object have a method which will tell you the current focused element? Ex: var elem = Document.getFocusedElement(); a

Re: Creating text files w/ 1mil + lines

2006-12-26 Thread Jochem van Dieten
Chris Ditty wrote: > WOW. All I can say is du. This is way over my little CF head. :) Doesn't matter. Just try writing the csv from ColdFusion. CF may surprise you :) Jochem ~| Create robust enterprise, web RIAs. Upgrade

RE: Creating text files w/ 1mil + lines

2006-12-26 Thread Katz, Dov B \(IT\)
Jochem, I was just talking about the actual file writing. I 100% agree re: the DB query overhead in that case. To avoid needing this much juice for the query, assuming you don't have the resources you'd need to proceed, you could try making your own "row buffer" by writing your CFQueries with a M

Re: anyone using the DirectoryWatcher eventgateway?

2006-12-26 Thread Phill B
I was trying to find a way to go back and get the missing files but I hadn't had much luck. I think I will use your method and see how that works out for me. On 12/26/06, Michael Dinowitz <[EMAIL PROTECTED]> wrote: > The developer edition is restricted in the amount of threads it'll allow for > g

Re: Creating text files w/ 1mil + lines

2006-12-26 Thread Chris Ditty
WOW. All I can say is du. This is way over my little CF head. :) On 12/26/06, Jochem van Dieten <[EMAIL PROTECTED]> wrote: > Katz, Dov B \(IT\) wrote: > > You shouldn't need to take memory into consideration if you use a > > java.io.BufferedOutputStream and java.io.PrintWriter etc... > > Y

Re: anyone using the DirectoryWatcher eventgateway?

2006-12-26 Thread Michael Dinowitz
The developer edition is restricted in the amount of threads it'll allow for gateways and probably has a limit on the queue that stores gateway jobs. The queue size on enterprise is 25000, but the stack size for development might be less than 10. If so, 'extra' items/events will be ignored. Fil

Re: anyone using the DirectoryWatcher eventgateway?

2006-12-26 Thread Phill B
Well that helps. I'm using the developer edition and the Processing Threads form box is greyed out. So I guess I'll have to test on a remote dev server. I've made some tweaks to it and it looks to be working better with the enterprise edition. It looks like it doesn't like it when it has a files p

Re: Creating text files w/ 1mil + lines

2006-12-26 Thread Jochem van Dieten
Katz, Dov B \(IT\) wrote: > You shouldn't need to take memory into consideration if you use a > java.io.BufferedOutputStream and java.io.PrintWriter etc... Yes you should. Let's say we are writing 1.3 million, 20 character records from the database to a .csv. First CF queries the database and bu

Re: Flash progress bar in coldfusion

2006-12-26 Thread chr chr
Thanks for all the help, finally i figuered it out, i just made of couple of changes like http:// instead of file: and make sure file was in same directory or not? Finally progress bar is displaying now. Thanks for getting me on right direction. Actually what i am trying to do is, on the fly ma

Re: CFC structure - queries returned from gateway objects

2006-12-26 Thread Janet MacKay
Hi Tom, Sorry for the delay. What you have said makes a lot of sense. I will look into the cfc group and some of the frameworks you have mentioned. Thanks for all of the sound advice. I appreciate it. Janet ~| Create robust

Re: Interfacing Cold Fusion with MS Exchange, Lotus Notes

2006-12-26 Thread Elena Aminova
Hey Marc, I was wondering if you ever got around to answering your questions. I am looking into the same issue now, with integration into the Lotus Notes. Anyone has any help on the topic? > Hi guys, > > has anyone out there got experience with plugging their Cold Fusion > applications into

Re: Flash progress bar in coldfusion

2006-12-26 Thread Jake Churchill
I would recommend a relative path to the movie. Using c:\ is looking on the client machine and it's very very likely that the security settings are blocking that. Stick proggybar.swf in a location accessible to the web server. chr chr wrote: > This is the simple coldfusion code i'm trying t

CF Web Calendars Integration with Domino Lotus Notes

2006-12-26 Thread Elena Aminova
Does anyone know if there is a way to integrate my Web Calendar Applications with the Domino Lotus Notes (by IBM) using ColdFusion? I have several calendar web applications that I want to integrate with the Lotus Notes calendar, such that when I see an event on a Web Calendar, and I want to add

Re: anyone using the DirectoryWatcher eventgateway?

2006-12-26 Thread Michael Dinowitz
In the event gateway settings is an option for Event Gateway Processing Threads. What is yours set at? Also, what is your page timeout set at? My mail machine has it set to 4 threads (1 processor) and a requesttimeout of 300 (set in the application.cfc for the directory watcher template. I know

RE: UPS API

2006-12-26 Thread Ciliotta, Mario
We are using the WorldShip program here and I have implemented a simple CF application that sort of interfaces with it. Here is a brief overview of what I do: 1) Basically staff in our building fill out my (our) online Courier request form - generic no mention of shipper. 2) All data relating

RE: Flash progress bar in coldfusion

2006-12-26 Thread Brad Wood
Interesting. Do you see the "hello" line? if you view the source of the page after it loads, do you see the entire object tag etc. What if you compare the html source of the working version to the non-working version. Also, confirm the existence of the swf file on your PC. ~Brad -Origi

anyone using the DirectoryWatcher eventgateway?

2006-12-26 Thread Phill B
I'm writing an app that watches a directory for new files. When a new one comes in, it will read it, process it, move it where it belongs, and finally write to a log file. The problem I'm having is that it can't handle more than ten or so files at a time. So, I'm guessing that I'm getting a deadlo

RE: Creating text files w/ 1mil + lines

2006-12-26 Thread Katz, Dov B \(IT\)
You shouldn't need to take memory into consideration if you use a java.io.BufferedOutputStream and java.io.PrintWriter etc... Dov -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 26, 2006 12:05 PM To: CF-Talk Subject: Re: Creating text files w

Re: Creating text files w/ 1mil + lines

2006-12-26 Thread Jochem van Dieten
Chris Ditty wrote: > Does anyone have any suggestions as to how one could effiecently > create text files with each file having more than 1 million records in > them? > > We are creating download files for our customers and several files > have easily over 1 million lines each. I think I read bef

RE: Flash progress bar in coldfusion

2006-12-26 Thread Mark A Kruger
The first observation is that you can only run this through the file system not through a web browser ... For that you would need "http://"; not "file://" Secondly, running it through the file system will likely cause the content to be blocked based on security settings so you will have to ove

Re: Flash progress bar in coldfusion

2006-12-26 Thread chr chr
It never displays even after the entire page has finished loading. For now i'm trying this in my local CF server, once it is working fine then i need to move it to my production server. Thanks! >1) Are you using a framework like Fusebox 3 in which cfflush doesn't >work? >2) Does your web ser

RE: Flash progress bar in coldfusion

2006-12-26 Thread Brad Wood
1) Are you using a framework like Fusebox 3 in which cfflush doesn't work? 2) Does your web server have compression enabled (like gzip on apache) Either one will make your entire request finish on the server, before anything gets shoveled out to the browser. Also when you say "bar is not displa

Re: Flash progress bar in coldfusion

2006-12-26 Thread chr chr
This is the simple coldfusion code i'm trying to do http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"; WIDTH="221" HEIGHT="70" id="proggybar.swf" ALIGN=""> http://www.macromedia.com/go/getflashplayer";> Helooo... Any ide

Re: Web services

2006-12-26 Thread Chuck Weidler
Make sure you are invoking or creating the object as a web service and not a component. Example: ws = CreateObject("webservice", "http://#wshost#/#wspath#/#wserv#?wsdl";); ~| Create robust enterprise, web RIAs. Upgrade & integ

Re: CF Gets Slammed at Christmas Breakfast

2006-12-26 Thread Matt Osbun
> > LOL! Even at Christmas breakfast??? Sheeesh! > > I do think I remember telling her, you don't know what the hell you're > talkin about! It's like a blur, like a car accident or somethin. My > adrenaline kicked in when she opened her mouth. > > :) > Will And yet it's a common occurrence.

Re: Flash progress bar in coldfusion

2006-12-26 Thread chr chr
I tried both ways(cfflush and #) still its not working. Thanks! >You may need to escape the # > >chr chr wrote: >> ~| Create robust enterprise, web RIAs. Upgrade & integrate Adobe Coldfusion MX7 with Flex 2 http://ad.doubleclick

Re: UPS API

2006-12-26 Thread Will Tomlinson
No, sure haven't. Just using worldship's desktop application. It sucks because I can't even find where you can COPY the tracking number! Maybe I'm just missing it? I looked around tho. Will ~| Create robust enterprise, web RIA

Re: CF Gets Slammed at Christmas Breakfast

2006-12-26 Thread Matt Osbun
> >LOL, > > > >I would have just laughed and laughed at her and said "only people > who don't > >understand it don't like it, so I guess its you that sucks, at > programming". > > > > LOL! Even at Christmas breakfast??? Sheeesh! > > I do think I remember telling her, you don't know what the he

Re: Flash progress bar in coldfusion

2006-12-26 Thread Jake Churchill
You may need to escape the # chr chr wrote: > Hi Everybody, > > I got one simple problem with flash progress bar, if i run the below code > in html file it is working fine and displaying the flash progress bar. If i > include the same code in coldfusion file the flash progress bar is not

RE: Creating text files w/ 1mil + lines

2006-12-26 Thread Ian Skinner
I think I read before that CF has a issue handling large files. Any thoughts? Tap Java file handling code. I've done this for allowing CF to read large files, so I would suspect it would help in writing them. Some random samples of java random access file code. variables.randomAccessFile = cr

Re: Flash progress bar in coldfusion

2006-12-26 Thread Bruce Sorge
I think that you have to use the CFFLUSH tag. Maybe something like this? http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0 " WIDTH="221" HEIGHT="70" id="proggybar.swf" ALIGN=""> http://www.macromedia.com/go/getflashplayer";> HTH, Bruce On 12/26/06

Creating text files w/ 1mil + lines

2006-12-26 Thread Chris Ditty
Does anyone have any suggestions as to how one could effiecently create text files with each file having more than 1 million records in them? We are creating download files for our customers and several files have easily over 1 million lines each. I think I read before that CF has a issue handlin

Flash progress bar in coldfusion

2006-12-26 Thread chr chr
Hi Everybody, I got one simple problem with flash progress bar, if i run the below code in html file it is working fine and displaying the flash progress bar. If i include the same code in coldfusion file the flash progress bar is not displaying, did i miss anything? http://down

RE: CF Gets Slammed at Christmas Breakfast

2006-12-26 Thread Snake
Hey she started it, it would only have been fair :-) -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: 26 December 2006 13:21 To: CF-Talk Subject: Re: CF Gets Slammed at Christmas Breakfast >LOL, > >I would have just laughed and laughed at her and said "only people

RE: UPS API

2006-12-26 Thread Andy
Will, Have you integrated a CF application with Worldship? Andy -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 26, 2006 7:29 AM To: CF-Talk Subject: Re: UPS API Ok thanks! We're currently using the UPS Worldship program to process UPS shipme

Re: Web services

2006-12-26 Thread James Mc
Is your .cfc mapped in your web server confguration ? Also, make sure that webservices are enabled in the web server. IIS I believe defaults to disabled for webservices. >Hi All, > >I am quite new to CF webservices, I am trying an example and when I try to >create a WSDL file I don't get any XML

Re: CF Gets Slammed at Christmas Breakfast

2006-12-26 Thread C. Hatton Humphrey
> It's hard to type every little thing that happened, but I > did laugh at her when she first started. I said C'mon > Aunt Laura, you know better than anyone that ANYBODY > can write a *hitty program with ANY language. What she probably has is a program written by someone trying to impress her for

Re: CF Gets Slammed at Christmas Breakfast

2006-12-26 Thread Will Tomlinson
>Maybe you are not related? :-) > >But ultimately, who cares, her opinion is only going to be her burden. Well what REALLY irritates me is I can picture her spreading this crap around! She's surrounded by programmers day in day out. Will

Re: UPS API

2006-12-26 Thread Will Tomlinson
Ok thanks! We're currently using the UPS Worldship program to process UPS shipments, and printing from it. Will ~| Create robust enterprise, web RIAs. Upgrade & integrate Adobe Coldfusion MX7 with Flex 2 http://ad.doubleclick

RE: UPS API

2006-12-26 Thread Ciliotta, Mario
Will, Basically we finally finished getting the required information (accounts, access and passwords) from UPS just last week. Basically what I am doing for my firm is I have an internally developed form for all shipping request. The plan is that the end-users will complete the form and we wi

Re: CF Gets Slammed at Christmas Breakfast

2006-12-26 Thread Robertson-Ravo, Neil (RX)
Maybe you are not related? :-) But ultimately, who cares, her opinion is only going to be her burden. "This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It c

Re: CF Gets Slammed at Christmas Breakfast

2006-12-26 Thread Will Tomlinson
I forgot one part -- when she was launching about how bad it sucked, I said, well, maybe you should go tell Bank Of America it sucks! That was right in the beginning of the argument. She just shook her head like she'd have none of it. Will ~

Re: CF Gets Slammed at Christmas Breakfast

2006-12-26 Thread Will Tomlinson
>LOL, > >I would have just laughed and laughed at her and said "only people who don't >understand it don't like it, so I guess its you that sucks, at programming". > LOL! Even at Christmas breakfast??? Sheeesh! I do think I remember telling her, you don't know what the hell you're talkin about!

RE: CF Gets Slammed at Christmas Breakfast

2006-12-26 Thread Snake
LOL, I would have just laughed and laughed at her and said "only people who don't understand it don't like it, so I guess its you that sucks, at programming". Rus -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: 26 December 2006 12:35 To: CF-Talk Subject: CF Get

Re: CF Gets Slammed at Christmas Breakfast

2006-12-26 Thread Will Tomlinson
Well she IS irrational when it comes to this. lol! Good points. It's hard to type every little thing that happened, but I did laugh at her when she first started. I said C'mon Aunt Laura, you know better than anyone that ANYBODY can write a *hitty program with ANY language. When she wouldn't

Re: CF Gets Slammed at Christmas Breakfast

2006-12-26 Thread Greg Luce
I didn't mean to say your aunt was irrational. Just that I learned these techniques when debating irrational ideas from friends like "911 was orchestrated by the Bush administration..." and stuff like that. Greg On 12/26/06, Will Tomlinson <[EMAIL PROTECTED]> wrote: > > So I'm gettin' ready for C

Re: CF Gets Slammed at Christmas Breakfast

2006-12-26 Thread Greg Luce
Will, one thing I learned about debating irrational people is that you really don't stand much of a chance of changing their mind so you have to come to terms with that first. Now if there are onlookers, you stand a chance of influencing them by looking like the most rational one in the debate. A g

RE: Web services

2006-12-26 Thread Rukmaj Chandavar
Could anyone out there help me please Thanks and regards, Rukmaj Chandavar GIS Professional Mobile: +91 98456 11668 Email: [EMAIL PROTECTED] IM - [EMAIL PROTECTED] (MSN) [EMAIL PROTECTED] (Yahoo) This e-mail transmission is intended only for the

CF Gets Slammed at Christmas Breakfast

2006-12-26 Thread Will Tomlinson
So I'm gettin' ready for Christmas breakfast with my family, when my Aunt, who works as a section chief managing programs for the travel division at the IRS, launches at me about how bad CF sucks. She knows how much I love CF and is aware of the things I build with it. I'm kinda shocked, didn'

Re: Trouble validating field

2006-12-26 Thread Doug Brown
Never mind...I was having a moment. I have 2 different error templates and was calling the wrong darn one. Musta been too much turkey yesterday. Thanks again Doug B. ~| Create robust enterprise, web RIAs. Upgrade & integrate A

Trouble validating field

2006-12-26 Thread Doug Brown
I have a select box that I am having some troubles with and cannot seem to validate it. Can anyone see what I might be doing wrong? When I submit, it simply inserts the value "" into the database. I am building the select option here. And then building the select