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 to share photos of your group with the world? 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 43907 - 43936 of 44527   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
43907
Are you still needing help with this? ________________________________ From: coldfusion-howto@yahoogroups.com [mailto:coldfusion-howto@yahoogroups.com] On...
LACKEY, DARYL (ATTSI)
daryllackey
Offline Send Email
Dec 1, 2008
2:17 pm
43908
I have a column named unitValue, datatype float, lenght 8, in a table on sql server. The user has to enter numeric value and 2 place decimal to pass...
Uraidiot
uraidiot2000xyz
Offline Send Email
Dec 1, 2008
6:56 pm
43909
What you are looking for is this, I believe: numberformat(number,00) e.g. <cfoutput> <cfset thisValue = 99.90> #numberformat(thisValue,0.00)# </cfoutput> ...
LACKEY, DARYL (ATTSI)
daryllackey
Offline Send Email
Dec 1, 2008
7:51 pm
43910
YES, exactly what I was looking for. Already found it.   thanks ... From: LACKEY, DARYL (ATTSI) <dl8453@...> Subject: RE: [coldfusion-howto] Dollar...
Uraidiot
uraidiot2000xyz
Offline Send Email
Dec 1, 2008
9:15 pm
43911
If someone can send me a link to how this is done and whether I use CF or AJAX that would be helpful. Thanks, Blake...
blakesouthwood
Offline Send Email
Dec 1, 2008
10:37 pm
43912
What you are asking for is commonly referred to as Chained Selects. http://bytes.com/answers/javascript/663394-dynamic-drop-down-menu#post26 38357 You may want...
LACKEY, DARYL (ATTSI)
daryllackey
Offline Send Email
Dec 1, 2008
10:45 pm
43913
I just wondered if CF has some function for doing it so that if I have a car make like honda and then the models in the second menu beneath it the contentsof...
blakesouthwood
Offline Send Email
Dec 2, 2008
1:08 am
43914
Hi Blake, Yes you can do it with CF by using the <cfwddx> tag with its action set to "CFML2JS". HTH David R ... have ... beneath it ... small sample of the...
cfx_david
Offline Send Email
Dec 2, 2008
6:35 am
43915
Anybody know how can I implement Onsessionend into application.cfm? thanks Shaj [Non-text portions of this message have been removed]...
Shajahan Hameed
shajahanhameed2001@...
Send Email
Dec 2, 2008
8:35 am
43916
Thanks for the tips all. It seems like these texts are the only books out there for learning ColdFusion 8. There was only one other text on ColdFusion 8 and...
brucewhealton
Offline Send Email
Dec 2, 2008
10:27 am
43917
Hi everyone. I just have a question about creating some search options with a first, middle, and last name. I have the code working to search for a name in any...
gassmann56560
Offline Send Email
Dec 2, 2008
7:40 pm
43918
Hello, I have a question maybe someone can help with. I want to assign a Coldfusion Session variable (i.e. username) to a Flex Actionscript variable that can...
Matt Durlin
dln170
Offline Send Email
Dec 2, 2008
7:46 pm
43919
I haven't gotten any responses on this yet. Can someone help me out. Thanks, Sherry...
Sherry
szeiss
Offline Send Email
Dec 2, 2008
8:32 pm
43920
While the overwhelming majority of users are not having trouble with this application, I get 2-3 reports like this a week and can't find anything about it that...
joann_apta
Offline Send Email
Dec 3, 2008
3:45 pm
43921
Do you have any includes on the page? Maybe one of those could have the call to the SP that is having the problem. -hankcfman ________________________________ ...
Hank Miller
hankcfman
Online Now Send Email
Dec 3, 2008
3:52 pm
43922
Looks like driver problem to me. May be it corrupted, also you can try increasing the connection pool.   Regards, Jay ... From: Hank Miller...
Jay Ghelani
ghelanijay
Offline Send Email
Dec 3, 2008
4:00 pm
43923
Nope, it has several calls to one SP and one to another one directly in it, but not on line 52. Most people are able to use it without error and I added code...
joann_apta
Offline Send Email
Dec 3, 2008
5:21 pm
43924
I am thinking maybe the connection pool might be the problem, too. Not sure that a corrupt driver wouldn't affect more than just these two applications and...
joann_apta
Offline Send Email
Dec 3, 2008
5:23 pm
43925
Go through your code and count the number of unique stored procedure calls and query tags utilizing cfqueryparam and then add a number to account for any you...
John Bartlett
wyntermoonwolf
Offline Send Email
Dec 3, 2008
5:38 pm
43926
Here is something else, though, regarding the connection pool - I know that the page is executing some of the SPs just fine and the whole page is CFLOCKed....
joann_apta
Offline Send Email
Dec 3, 2008
5:43 pm
43927
Sorry, John, that went right over my head. What do I need to tell my CFServer caretaker? Thanks for jumping in here. JoAnn ... procedure calls and query tags...
joann_apta
Offline Send Email
Dec 3, 2008
6:26 pm
43928
What was the question? -hankcfman ________________________________ From: Sherry <Sherry.Zeiss@...> To: coldfusion-howto@yahoogroups.com Sent:...
Hank Miller
hankcfman
Online Now Send Email
Dec 4, 2008
2:11 pm
43929
I have not used flex in a while, but you can use remoting to connect to a cfc, and so you CF logic in there. That is all I have done with flex(or flash) is use...
John Barrett
barrjohnm
Offline Send Email
Dec 4, 2008
11:39 pm
43930
Does Fusebox have a setting or method that forces an application to run under SSL / https? I don't see a setting in the various XML files and my normal...
Al Bundy
cdecinko
Offline Send Email
Dec 5, 2008
3:51 am
43931
What are your normal methods? Could you not just add the following to onRequestStart...? <cfif cgi.SERVER_PORT is not 443> <cflocation...
houston_blue_texas
houston_blue...
Offline Send Email
Dec 5, 2008
10:22 am
43932
More accurate would be: <cfif cgi.server_port neq 443> <cfset newURL = "https://" & trim(cgi.server_name) & trim(cgi.script_name)> <cfif...
Hank Miller
hankcfman
Online Now Send Email
Dec 5, 2008
1:50 pm
43933
I am looking for a method to show the first 200 words (or some other arbitrary number) in a memo field. After displaying the first 200 words, the user would...
Linda Burnside
ihatespam22222
Offline Send Email
Dec 5, 2008
10:37 pm
43934
Something like this...? <cfset wordcount = 0> <cfset shortmemo = ""> <cfloop index="thisword" list="#memo#" delimiters=" "> <cfset wordcount = wordcount + 1> ...
houston_blue_texas
houston_blue...
Offline Send Email
Dec 6, 2008
12:17 am
43935
Check out the ListLeft UDF at cflib.org - use the space as a delimiter. http://www.cflib.org/index.cfm?event=page.udfbyid&udfid=410 -John...
John Bartlett
wyntermoonwolf
Offline Send Email
Dec 6, 2008
12:41 am
43936
I actually tried that last night and it failed. Tried again this morning, and now it works. Go figure. _____ From: coldfusion-howto@yahoogroups.com ...
Al Bundy
cdecinko
Offline Send Email
Dec 6, 2008
4:34 am
Messages 43907 - 43936 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