To curtain unwanted replies from my standard reply form, I want to add a security code field such as in: http://kochfilter.com/contact.php Any CF version for...
Hi, I am needing to connect to a mapping sebservice however the same code being provided is only written in .NET Just wondering if someone could assist my...
Hi, I am needing to connect to a mapping sebservice however the same code being provided is only written in .NET Just wondering if someone could assist my...
What is the GeocoderService? There should be a URL to access the service. Or the URL to the WSDL would help. -hankcfman ________________________________ From:...
I thought the information provided which is the sample code for .net should be enough to simply have that code written in cf format ???? I did not want to make...
I assume you are consuming a webservice. And it is written different in CF than .NET. There are elements missing. One of them being the WSDL URL. I would like...
I've been using DeMoronizer to handle special characters that result from pasting textarea boxes from an MSWord Doc. Most characters are handled like this: ...
Save it to a text file and use a hex viewer to view it or read it in via CFFILE in binary and use the UDF "Get" from cflib.org to read the ASCII characters. ...
Thanks. I ran a hex reader on the file, only to find out what I already know...the number 13....which I presume is the ascii character number??? but the...
ASCII 13 is the Carriage Return character. If used in conjunction with ASCII 10 (new line) - ASCII 13 + ASCII 10 - Windows will properly handle it as a line...
Basically, you ran out of memory. Raise the memory allocated to the JVM in the CF Admin JVM page. I get this error frequently trying to convert large query...
It's a large database, and when I've gotten that error in the past, I have made an attempt to find ways to cut the processing down to a reasonable size. This...
What OS is your server running? Unless it is 64 bit, I don't believe your server can utilize the full 4 GB of ram (3 is the max for 32-bit, iirc) so setting...
I have a cfchart with two bars per date (x axis). I then added a line to complement the bars, with the line/point for each date represneting a percentage. I...
I had an issue this week with SQL Server Express 2008 -- a databse grew to 4GB, the limit and locked up. I installed a trial version of SQL Server 2008 until...
I am creating a java object in coldfusion which returns a string such as "blahèblah", but it when i dump this in coldfusion it becomes skewed. Does any one...
I need to join a master table to a detail table, there are one to many relationships. So it will give me duplicates. But if I only want everything in the...
All: Some people post some inappropriate content on my website, and I would like to block them. I know with ColdFusion, I can block the user by IP address...
All: In my index.cfm page, I use 3 cfincludes: index_calender.cfm, index_news.cfm, index_tops.cfm. When index.cfm is loaded, it will pull in those "Child"...
Mac addresses do not pass through most routers you will only see devices within your network Create a batch file Put in it arp -a Then cfexecute it to pull the...
All: How do I detect if the user has Flash installed? If Flash installed, I show a Flash animation. If Flash not installed, I show regular jpg picture. Thank...
You need to use swf object: http://code.google.com/p/swfobject/ you can read about it here: http://blog.deconcept.com/swfobject/ You can also download the AIR...
There's a way via JavaScript to detect which plugins are installed - try Googling it. -John ... [Non-text portions of this message have been removed]...
I don't know how to say what I want to do but here's a start (that doesn't work) <cfset var_time = TimeFormat(Now(), "HH:mm:SS") + 1/24> I want to schedule a...