Search the web
Sign In
New User? Sign Up
coldfusion-howto · ColdFusion Tips Tutorial Help Questions
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 42626 - 42655 of 44530   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
42626
Hi Hankcfman - so they (my host) need to set it up for me right? Since they are hosting my site with cf. " The cferror in the application.cfm and the missing...
Mark Holloway
sapporomark
Offline Send Email
Apr 1, 2008
7:14 am
42627
If it's a shared server, they're not going to change it since it will affect all sites on the same server as your site is on. -John ... From: "Mark Holloway"...
John Bartlett
wyntermoonwolf
Offline Send Email
Apr 1, 2008
7:25 am
42628
I need to cut off online ticket ordering five days before an event date. what would be the datecompare statement for this? Thanks, Raehm...
raehm
Offline Send Email
Apr 2, 2008
12:11 am
42629
How are you using it? If it's in a SQL statement: datefield between #CreateODBCDate(start)# and #CreateODBCDate(end)# Note that if your range is from the 1st...
John Bartlett
wyntermoonwolf
Offline Send Email
Apr 2, 2008
1:05 am
42630
You might try something like this: <cfset EndSpecial = dateformat("05/01/2008", "mm/dd/yyyy")> <cfif #now()# LT #EndSpecial#> <!--- show the special...
Linda Burnside
ihatespam22222
Offline Send Email
Apr 2, 2008
12:29 pm
42631
I think this is what you need: <cfscript> eventDate="4/8/2008"; </cfscript> <cfif DateCompare(DateAdd("d", -5, eventDate), now()) neq -1> <cfoutput>Show...
Hank Miller
hankcfman
Online Now Send Email
Apr 2, 2008
1:03 pm
42632
I have the following table, using cfoutput, query, and group. The display is below : <center> <table border="1" width="760"> <cfoutput query="qry"...
Uraidiot
uraidiot2000xyz
Offline Send Email
Apr 3, 2008
6:10 pm
42633
<cfoutput query="foo" group="outermost_column"> ... ... <cfoutput group="inner_column"> ... ... <cfoutput>rows...</cfoutput> .. just use another group tag in...
Greg Morphis
omenchaos
Offline Send Email
Apr 3, 2008
6:18 pm
42634
Is this where I add the other group tag ? It does not seem to work, still giving me duplications <center> ... number"> ... /b></td> ... <cfoutput...
Uraidiot
uraidiot2000xyz
Offline Send Email
Apr 3, 2008
10:06 pm
42635
Hi guys: I`ve been googling about CF hosting. In the begining just )@!$%&/, but then I found efree2net.com and in price is absolutely different to others....
rigobertocorrales
rigobertocor...
Offline Send Email
Apr 5, 2008
1:09 am
42636
Greg, I tried this and it seems to work. It just give me everything in one row (no duplicates) which is fine. I guess it depends on the placement of the <tr> ...
Uraidiot
uraidiot2000xyz
Offline Send Email
Apr 5, 2008
5:25 pm
42637
Somebody posted their method on how to do mass deletes with checkboxes for each line. I copied their code and it works fine. The checkbox line is <cfinput...
Uraidiot
uraidiot2000xyz
Offline Send Email
Apr 5, 2008
6:54 pm
42638
Put your page headings/footers out of the loop. Set a variable to a value before the loop and set it inside the loop with the query. If the variable is still...
John Bartlett
wyntermoonwolf
Offline Send Email
Apr 5, 2008
7:52 pm
42639
Post : 5 POST CODE : "A1Brains-CFM- 070408" Experience : 1 + Years (AJAX+Cold Fusion+Cold Box+SQL+Transfer ORM+Cold Sipring+HTML) Location : Ahmedabad Pay...
satisnet3
Offline Send Email
Apr 7, 2008
11:10 am
42640
I have the following cfloop in my action page. It is not working so I put in cfouput to see what values are returned. <cfif isDefined("form.fieldnames") and ...
Uraidiot
uraidiot2000xyz
Offline Send Email
Apr 7, 2008
5:49 pm
42641
You have a loop with 5 fields , DEL_2178,DEL_2921,REGION,SITE,ACTIVITY_TYPE loop1 select_urdn_number is defined in the first loop at 2178 loop2...
Anthony Willenbring
awillenbring...
Offline Send Email
Apr 7, 2008
6:41 pm
42642
Hi, You may would like to see http://www.hostingatoz.com for your ColdFusion Hosting requirements :) Regards, Rajesh...
Rajesh Kumar
rkmails
Offline Send Email
Apr 8, 2008
6:04 am
42643
I host on http://www.hostingatoz.com, they don't have CF8 yet :( but support told me that it was planned, but no release date. There have been a few issues...
aliaspooryorik
Offline Send Email
Apr 8, 2008
9:56 am
42644
I am trying to Convert Text (tab delimited text file) to insert records into a table. but not sure how to do this, can anybody throw some light on this here is...
scorpionn_king
Offline Send Email
Apr 8, 2008
6:57 pm
42645
Thanks guys: I`ll take a look at hostingatoz. But again, efree2net prices are a temptation ... Rigo aliaspooryorik <john_forum@...> wrote:...
Rigoberto Corrales
rigobertocor...
Offline Send Email
Apr 8, 2008
7:51 pm
42646
<CFLOOP index="Line" list="#DataFile#" delimiters="#Chr(10)#"> <CFSET CurrLine=StripCR(Line)> <CFLOOP index="Element" list="#CurrLine#" delimiters="#Chr(9)#"> ...
John Bartlett
wyntermoonwolf
Offline Send Email
Apr 8, 2008
8:13 pm
42647
I want to dynamically generate checkboxes from a query ... <cfloop query="qryGet_Error"> <cfoutput> <cfinput type="checkbox" name="error_id" ...
Uraidiot
uraidiot2000xyz
Offline Send Email
Apr 9, 2008
3:10 pm
42648
What information does the table you're inserting need? If you're just inserting the error id, you'd loop over form.fieldnames and insert into your DB.. Give us...
Greg Morphis
omenchaos
Offline Send Email
Apr 9, 2008
3:19 pm
42649
If not checkboxes were ticked then the variable: form.error_id will not be defined so you can test for it using IsDefined("form.error_id") OR...
aliaspooryorik
Offline Send Email
Apr 9, 2008
3:21 pm
42650
Sorry, misread your post: Think what you're trying to do is... <cfif isDefined("form.error_id")> <cfloop list="#form.error_id#" index="error_id_value"> ...
aliaspooryorik
Offline Send Email
Apr 9, 2008
3:33 pm
42651
efree2net seems very cheap. What's the catch? Does anyone have any experience with them? Thanks, Rizal ... [Non-text portions of this message have been...
Rizal Firmansyah
masswork
Online Now Send Email
Apr 9, 2008
4:01 pm
42652
Looks like it's all shared hosting. I'd be interested to hear if anyone has any experience with their service though.... From: coldfusion-howto@yahoogroups.com...
Ball, Steve
steve.ball99
Offline Send Email
Apr 9, 2008
4:08 pm
42653
I am not inserting, I need a select query. The checkboxes have corresponding numbered values, so the query (hardcoded) would be something like this ... where...
Uraidiot
uraidiot2000xyz
Offline Send Email
Apr 9, 2008
4:47 pm
42654
loop over form.fieldnames, get their value and insert it into a list. Then do something like select * from foo where 1 = 1 and error_id in (<cfqueryparam...
Greg Morphis
omenchaos
Offline Send Email
Apr 9, 2008
4:58 pm
42655
Hi All, I have a client website that wants to do two main tasks. 1) Update an access database with the fields collected in a form before moving to PayPal....
arthans
new_dreamer2004
Offline Send Email
Apr 9, 2008
6:28 pm
Messages 42626 - 42655 of 44530   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help