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...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

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 44497 - 44527 of 44527   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
44497
I'm either overpaid or underpaid depending on perspective or location. Wow. Linda _____ From: coldfusion-howto@yahoogroups.com ...
Linda Burnside
ihatespam22222
Offline Send Email
Oct 21, 2009
2:55 pm
44498
Most people are IMHO. For example, I used to live in South Jersey. The average job for CF was around 10 to 15 an hour. Of course, I didn't know as much as I ...
Phillip Vector
lance_lake
Online Now Send Email
Oct 21, 2009
3:04 pm
44499
It depends on your skill level. I work for the University of Hawaii, I am paid $20.00/hour. I am a junior developer. It might be a low pay for somebody you...
John Barrett
barrjohnm
Offline Send Email
Oct 22, 2009
5:04 am
44500
Hi: I've written really complicated bunch of queries that makes reloading the page very slow, and added a voting app that works OK, but the page is too slow to...
grampian386
Offline Send Email
Oct 22, 2009
4:56 pm
44501
How do I parse a pipe delimitted file in coldfusion...
techtransferportal
techtransfer...
Offline Send Email
Oct 26, 2009
3:35 pm
44502
It really depends on what you want to do with it. listToArray(yourList, "|") is one way  -hankcfman ________________________________ From: techtransferportal...
Hank Miller
hankcfman
Online Now Send Email
Oct 26, 2009
3:39 pm
44503
Assuming you're looping over pipe-delimited lines in a file. <cffile action="read" file="somefile.txt" variable="Data"> <cfset Data=StripCR(Data)> <cfloop...
John
wyntermoonwolf
Offline Send Email
Oct 26, 2009
3:41 pm
44504
What are you trying to accomplish with ajax. An example will be fine.  -hankcfman ________________________________ From: grampian386 <john@...> ...
Hank Miller
hankcfman
Online Now Send Email
Oct 26, 2009
4:17 pm
44505
What am I missing????? <CFQUERY Name="getnewsic" Datasource="#sales.dsn#" > SELECT * FROM #form.sic# order by sicid </CFQUERY> where form.sic is the same name...
raehm
Offline Send Email
Oct 26, 2009
5:35 pm
44506
That looks good to me. ... [Non-text portions of this message have been removed]...
John Bartlett
wyntermoonwolf
Offline Send Email
Oct 26, 2009
5:47 pm
44507
You need to put "" around your #form.sic# as in... SELECT * FROM "#FORM.SIC#" ORDER BY SICID ________________________________ From:...
LACKEY, DARYL (ATTSI)
daryllackey
Offline Send Email
Oct 26, 2009
6:23 pm
44508
60% hands on, 40% project lead CF with SQL 2005 Web applications 90-110K plus benefits No paid relocation No telecommuting Send resume and contact if...
Ken Rosenfield
Kenarose
Offline Send Email
Oct 26, 2009
10:38 pm
44509
Try dumping the variables and see if they are what you are expecting.  -hankcfman ________________________________ From: raehm <raehm@...> To:...
Hank Miller
hankcfman
Online Now Send Email
Oct 27, 2009
4:05 pm
44510
What db are you using?  -hankcfman ________________________________ From: raehm <raehm@...> To: coldfusion-howto@yahoogroups.com Sent: Mon, October 26,...
Hank Miller
hankcfman
Online Now Send Email
Oct 27, 2009
4:06 pm
44511
It even easier than that John, if you are using CF8 <cfoutput> <cfloop file="c:\someFile.txt" index="i"> #i# <br /> <!---- do whatever processing here (cfloop...
Larry C. Lyons
larryclyons
Offline Send Email
Oct 28, 2009
1:42 am
44512
I have an application that will send out a cfmail (3 or 4 lines of content only). If is formatted in a table. I also have a history log table where every...
Uraidiot
uraidiot2000xyz
Offline Send Email
Oct 28, 2009
2:37 pm
44513
check out the type attribute of cfmail <cfmail to="" from="" subject="" type="HTML">  -hankcfman ________________________________ From: Uraidiot...
Hank Miller
hankcfman
Online Now Send Email
Oct 28, 2009
4:35 pm
44515
This code worked fine, at least until Nov 1 arrived. Error: DAY_OF_MONTH 11 : 12 : <cfset dtstart = createdate(Year(Now()), Month(Now()), Day(Now()) - My Code:...
joseph l
raehm
Offline Send Email
Nov 3, 2009
7:18 pm
44516
What's form.asearch set to? As a FYI, you do not need the # symbols in this line: <cfset astartdate = "#dateformat(dtmonth/dtday/dtyear,"mm/dd/yy")#"> You can...
John
wyntermoonwolf
Offline Send Email
Nov 3, 2009
8:08 pm
44517
asearch can be 7, 14, 30, 60, or 90...
joseph l
raehm
Offline Send Email
Nov 3, 2009
9:14 pm
44518
try replacing the  <cfset dtstart = createdate(Year(Now()), Month(Now()), Day(Now()) - form.asearch)> with <cfset newDate = dateAdd("d", form.asearch,...
Hank Miller
hankcfman
Online Now Send Email
Nov 4, 2009
1:16 am
44519
Success! Thanks!...
joseph l
raehm
Offline Send Email
Nov 4, 2009
1:18 pm
44520
One correction... <cfset newDate = dateAdd("d", -1*(form.asearch), now())> you wanted to go backwards 30, 60, 90  -hankcfman ________________________________ ...
Hank Miller
hankcfman
Online Now Send Email
Nov 4, 2009
1:44 pm
44521
I (and my clients )would love to incorporate a html text capability to my textareas. Problem is, I've never been able to get FCKeditor or TinyMCE or NicEdit...
joseph l
raehm
Offline Send Email
Nov 4, 2009
10:42 pm
44522
What version of cf are you running?  -hankcfman ________________________________ From: joseph l <raehm@...> To: coldfusion-howto@yahoogroups.com Sent:...
Hank Miller
hankcfman
Online Now Send Email
Nov 5, 2009
6:07 am
44523
I found FCKEditor to be extremely easy to integrate. How were you using it? My code: <cfmodule template="/fckeditor/fckeditor.cfm" basePath="/fckeditor/" ...
John Bartlett
wyntermoonwolf
Offline Send Email
Nov 5, 2009
6:25 am
44524
I found one that I use all the time and it works very well for me. http://www.dynamicdrive.com/dynamicindex16/richtexteditor/index.htm Linda Burnside _____ ...
Linda Burnside
ihatespam22222
Offline Send Email
Nov 5, 2009
1:24 pm
44525
The reason I was asking what version you are using... if you are using cf8 or above... fckeditor is now built in. You can use it in the following way. ...
Hank Miller
hankcfman
Online Now Send Email
Nov 5, 2009
1:55 pm
44526
When you implement these editors, how do you check the character length of the textarea so that you aren't sending data that is larger than the field length in...
LACKEY, DARYL (ATTSI)
daryllackey
Offline Send Email
Nov 5, 2009
2:27 pm
44527
I'm looking for some general guidance - the answers may be Coldfusion related or might be more server/software related (i.e. might be off topic a bit). I have...
Linda Burnside
ihatespam22222
Offline Send Email
Nov 9, 2009
10:32 pm
Messages 44497 - 44527 of 44527   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