... Guys, both didn't work, XStandard is a very cool editor but didn't do the trick. The place holder Jide suggested is fine on initial entry into the database...
I have a web application utilizing CF7 and within the Application.cfc file, I have a function called onError to handle the error trapping. This works find for...
Using application.cfc, you can use the OnError method, ie. <cffunction name="OnError" access="public" returntype="void" output="true" hint="Fires when an...
Excellent .. thanks Ryan, will let you know how I get on with that, looks straightforward! Jenny ... From: Ryan Letulle [mailto:bayousoft@...] Sent: 30...
Maybe I am missing something here, but why not just use the order that FCKEditor uses? Then once it is save from FCKEditor, it would be in the order that you...
I'm trying to consume a webservice that expects: <soap:Header> <ApiUserAuthHeader xmlns="namespace"> <UserName>xxxxx</UserName> <Password>xxxxx</Password> ...
Hi, I am getting the following error on the debugger tab in IE7 and Firefox when I use <cfform> in a page instead of just <form>. None of the debugging...
... That was the first thing that came to my mind but the source file displays attributes randomly depending on what browser is used by the editor, to add to...
Well this may sound goofy, and if it's a bad idea, say so... But why not use a RegEx to pull the <table> tag out of both bits of content, then scan over using...
Thanks Judah. Our DBAs want to eliminate the generic account that I have my datasources setup with. Like you mentioned, they want to control users access at...
I have a query which list all the Team members, their Area MANagers, Region Managers, Locations and so on . What i need to do is to display each managers(name)...
Having a brain cramp on this one guys... How would one approach locking when reading a value from the APPLICATION scope and subsequently writing it to the...
... It depends. What version of CF is this? Is there any likelihood of a race condition with Application.bar? If there is the likelihood of a race condition...
Assuming you're on CFMX 7 or 8, you no longer need to LOCK on READ, so if you're concerned about race conditions on the WRITE, just do: <cflock scope="session"...
... Is there any reason you can't simply lock the app scope, grab application variable and put it into a local variable, unlock, lock session, copy from local...
Hi! I have an ORACLE stored proc returning a query back to my CFC using CFProcResult. I pass this query up to Flex and some other places. Works fine but.... ...
You could do it better with aggregate functions, but this will work, too. Just make the completionDate lookup part of your base query (note the LEFT OUTER...
Come on dude, you've been told before, help us by asking better questions! What doesn't work? Format your code so it's easy for us to see what's going on, I...
Query of Queries would work really well, and would be very efficient ... why not do that? Query 'employees' has: firstName, lastName, title, email, phone, ext ...
What does your full <CFFORM tag look like? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Want to reach the ColdFusion community with...
I 2nd this. I looked through the java stuff and I don't see a way to remove a column. Just add and manipulate them. Jake Churchill CF Webtools 11204...
... Well, no, that's actually not correct. CF doesn't lock variables unless you use CFLOCK. It simply doesn't crash if you don't lock them, as it used to with...
Well, For two reasons 1) I really didn't want to incur the overhead of creating a new variable and running the query. I know it has to be much slower than...
... Because some evil person could put, for example: <table title="This <table> is really=cool"> And either make your regex extra complicated, if not...
On #2, I assume then that you know which column you would be removing, so how about: get the list of current columns, whatever they are: <cfset colList =...