I need to be able to list the Cfquery CurrentRow results from highest to lowest. So that when I do a cfoutput it puts 5, 4, 3, 2, 1 not 1, 2, 3, 4, 5. Can this...
Use a cfloop instead of an output.... Ie <CFOUTPUT> <CFLOOP FROM="#myQuery.RecordCount#" TO="1" INDEX="idxRow"> #myQuery.Column[idxRow]#<br> </CFLOOP> ...
Untitled Document ColdFusion Hosting Providers' List brought to you by *** ColdFusion-HowTo: Yahoo's No. 1 and the biggest group for ColdFusion Discussion *** ...
coldfusion-howto@yaho...
Feb 1, 2002 2:07 pm
5273
Untitled DocumentWWW.CRYSTALTECH.COM is my favorite Ergün KOÇAK ... From: coldfusion-howto@yahoogroups.com To: coldfusion-howto@yahoogroups.com Sent:...
glad to see that California is still a country! ;-) Have a good day all and a good weekend. Kathryn Butterly Web Developer Washington Mutual Finance 813...
Hi All, I have run into a need to take an uploaded image file and resize it. Does anyone know any custom tags that do this like ASPIMAGE from software...
ASPIMAGE is all I know of! ... From: tlmalexgro [mailto:tlmalexgro@...] Sent: Friday, February 01, 2002 9:26 AM To: coldfusion-howto@yahoogroups.com ...
Try CFX-GIFGD or CFX_Image - in the CF developers exchange. larry -- Larry C. Lyons ColdFusion/Web Developer Certified Advanced ColdFusion 5 Developer ...
Untitled DocumentI didn't see it on the list but hey it's Friday. CFDynamics.com looks to have some good packages and levels that would suit just about anyone....
Alex, cfx_image is available for download at the devXchange. It works beautifully, is free, and performs many functions on images. I've also had occasion to...
Valerie L. Criswell
valerie@...
Feb 1, 2002 3:44 pm
5280
Dear All I need to be able to display text in upper case only. Would i use replace, if so, any ideas? Jason Rain Sodden England...
Hi all, Currently I'm having problems to access the web, so I will ask about some doubts I'm having all in one email 1) I have a query that returns to me the...
Hi Marcelo, ... say your first query is named "myQuery" and it returns at least 1 record. Then the following would work for the second query to retrieve all...
Running into a problem again whereby the events being submitted are automatically being 'approved' when they should be defaulting to 'no'. what have i missed?...
I think that in your insert query, <cfif IsDefined("Form.Approve")>Yes, </cfif> should be <cfif IsDefined("Form.Approve")>'#form.approve#', </cfif> Kathryn...
I see what you mean. I changed to this <CFSET Approve = ""> and <input type="Hidden" name="approve" value=""> cuz it said there was a data type mismatch....
OK, in your original post I noticed that you had the line <cfif #approve# is 1> so, do you want the Approve field to be numeric or data? What is it in the SQL...
It's got to be those date fields. ,d '2002-02-01'}, That can't be and acceptable format on the insert Mark Calveric Senior Developer ... From: sprimrose...
Ahhhh, the approve field is a "Yes/No" field. so does that cfif need to change to read something like <cfif #approve# is yes>? but the other thing is that...
actually the date entries are working out just fine. the error messge only came in to play after changes in the 'approve' field were made to ensure that they...
I realized after I sent the last email that you are using Acess, not SQL Server. In Access, a Yes/No field can be set to various values and still work...
K, Yup,I'm in Access for now. I dont think the </cfif> was a typo since i start out the code with two cfif's. The purpose of the form is to show nonSysAdmin...
Yep, I see what you mean about the <cfif>. Here is your action page <cfquery name="InsertEvents" datasource="#dataXX#"> Insert into tblEvent (EvTitle,...
I'm looking to change language / currency / time, date internationally with my CF app. I understand I should be using the GetLocale or SetLocale tags. That's...
ok, getting a different error now. doesnt look like the "approve" field is getting picked up, but the value is. ODBC Error Code = 21S01 (Insert value list...