Forum: ColdFusion May 6th, 2008 |
| Replies: 1 Views: 1,098 |
Forum: ColdFusion May 1st, 2008 |
| Replies: 6 Views: 2,190 Re: insert loop At first glance - looks like you have a typo:
<input type="hidden" name="strag_goal" value="1"> <input type="hidden" name="strat_ob" value="1.1">
name="strat_obj" ?? |
Forum: ColdFusion Apr 30th, 2008 |
| Replies: 2 Views: 1,559 Re: Automate undisabled a “submit button”? cmhamton has provided the solution - but just to expand:
So as to open the function to any form and any form objects:
function toggleObj(frmFld,frmBtn)
{
//frmFld = the Form Field to check for... |
Forum: ColdFusion Apr 30th, 2008 |
| Replies: 1 Views: 1,098 ANSI to UNICODE encoding Hello Experts
I have a CF app (MX 6.1) that creates a text file, inserts some data (mainly numerical values along with a text header and footer), zip/encrypt/password protect with Winzip command line... |
Forum: ColdFusion Oct 17th, 2005 |
| Replies: 1 Views: 7,142 Re: update oracle column but bot replace OK - I figured it out. You cannot perform a where/like query on an ORACLE long datatype as it expects an integer. I changed the datatype to a CLOB and then retrieved the field into a temp var. I then... |
Forum: ColdFusion Oct 7th, 2005 |
| Replies: 2 Views: 2,300 Re: dynamic td's not tr's ok - if i'm hearing you right:
First thing is to request the actual cols you want - good practice in case the schema changes in the future.
Next - I can't see where you are getting the value '1'... |
Forum: ColdFusion Oct 7th, 2005 |
| Replies: 2 Views: 3,800 Re: Java Virtual Machine Problem Torch7 is correct - You most definitely don't have JVM installed. It's bundled with the ltaes JREs from SUN.
Get it here: http://java.com/en/download/manual.jsp
Unfortunately MS dont bundle their... |
Forum: ColdFusion Oct 7th, 2005 |
| Replies: 1 Views: 7,142 update oracle column but bot replace Hi Folks!
Wonder if you can help??
I need to know a way of updating a column in Oracle (datatype: long) but keep the existing data so like an append. Am using Coldfusion to write to Oracle and I know... |