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.

Messages

  Messages Help
Advanced
Messages 40764 - 40793 of 42948   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
40764
One of the most glaring reasons for doing this is to keep your query and its results (in query form) off the presentation layer. Second, you may want to place...
Mark R Bureau
bu9418
Offline Send Email
Mar 1, 2007
11:35 am
40765
Hi All, What is the function to display a phone# input from 8005551212 to (800) 555-1212? TIA...
basiljordan
Offline Send Email
Mar 1, 2007
8:09 pm
40766
There isn't one built into CF but you can use one created by Derrick Rapley at http://www.cflib.org/udf.cfm?ID=781 -John...
John Bartlett
wyntermoonwolf
Offline Send Email
Mar 1, 2007
9:33 pm
40767
Thanks, John, actually it turned that my issue is a bit more complicated than what meets the eyes. Basically, I have a column that stores strings like...
basiljordan
Offline Send Email
Mar 2, 2007
12:36 am
40768
Loop over the string and break it apart based on if the current character type is different from the previous character type. There's no easy way about it. ...
John Bartlett
wyntermoonwolf
Offline Send Email
Mar 2, 2007
2:31 am
40769
Use IsNumeric function would help On 01 Mar 2007 18:31:57 -0800, John Bartlett <jbartlett@...> ... -- ...
Ernest Breau
cf_ernie
Online Now Send Email
Mar 2, 2007
2:37 am
40770
I would probably try to use the Java String function split() and some regex to do this. Something like this should work <cfset inputStr="123adc34df34df" /> ...
Maximilian Nyman
max_nyman
Offline Send Email
Mar 2, 2007
3:12 am
40771
Are you splitting based on data type or string length? If String Length: <!--- if you need to store the values ---> <CFSET thisThing = ArrayNew(1)> <CFSET...
Mark R Bureau
bu9418
Offline Send Email
Mar 2, 2007
3:23 am
40772
is there any problem with using coldfusion to make a website that will need to be displayed in both english and chinese? I should be thinginking utf-8 for...
Andrew
andrewonebay
Offline Send Email
Mar 2, 2007
4:44 am
40773
Thanks for your responses! I managed to fix the problem by using lists instead of arrays. I wanted to do this because I wanted to make a clickable list of...
Carolina M. Lopez
karo12069
Offline Send Email
Mar 2, 2007
4:25 pm
40774
Thanks a lot, Mark, your suggestion works exactly right as I am actually splitting based on string length. Thanks to everyone else as well, greatly...
basiljordan
Offline Send Email
Mar 2, 2007
4:51 pm
40775
I'm trying to select the max ID record in a table using a query of another field, but this isn't working: <CFQUERY Name="getlastrecord" ...
Joe
raehm
Offline Send Email
Mar 2, 2007
10:05 pm
40776
I need to find the max (last) ID based on a selection of another field in the table, but this doesn't work. Help! <CFQUERY Name="getlastrecord" ...
Joe
raehm
Offline Send Email
Mar 3, 2007
12:17 am
40777
Hi, I am an aspiring college student who aspires to be in web design. I am still quite new to this space I just wanted your opinions. I was wondering which...
djdwij
Offline Send Email
Mar 3, 2007
12:48 am
40778
I'm getting the following error on this query: <CFQUERY Name="getemail" Datasource="voc.members" > SELECT * FROM agencyemail where curtime = <CFQUERYPARAM...
Joe
raehm
Offline Send Email
Mar 3, 2007
1:33 am
40779
Do you know how to code raw HTML? If not, start with that. -John ... From: "djdwij" <dwijdabomb@...>...
John Bartlett
wyntermoonwolf
Offline Send Email
Mar 3, 2007
1:37 am
40780
you didn't close quotes in your value attribute. _____ From: coldfusion-howto@yahoogroups.com [mailto:coldfusion-howto@yahoogroups.com] On Behalf Of Joe Sent:...
Mark R Bureau
bu9418
Offline Send Email
Mar 3, 2007
2:01 am
40781
Hey Gwen, Are you busy working? If not are you an html/css/js expert? I have a little project I'd pay ya for a couple our this afternoon. Greg [Non-text...
Greg Luce
cf_greg
Online Now Send Email
Mar 3, 2007
2:39 am
40782
Evening All I need to keep a popup window on top of the main page and can't for the life of me find an example either using javascript or meta??? Any ideas,...
Scott
urbandragon1964
Offline Send Email
Mar 3, 2007
5:09 am
40783
Window.focus() I believe.might be document.focus() From: coldfusion-howto@yahoogroups.com [mailto:coldfusion-howto@yahoogroups.com] On Behalf Of Scott Sent:...
Eric Roberts
woad
Online Now Send Email
Mar 3, 2007
5:15 am
40784
I managed to find this: http://www.javascriptkit.com/jsref/window.shtml window.focus() works in IE when placed directly on the body tag <body...
Scott S
urbandragon1964
Offline Send Email
Mar 3, 2007
5:31 am
40785
I managed to find this: http://www.javascriptkit.com/jsref/window.shtml window.focus() works in IE when placed directly on the body tag <body...
Scott S
urbandragon1964
Offline Send Email
Mar 3, 2007
5:32 am
40786
Try using onBlur -hankcfman ... From: Scott <urbandragon1964@...> To: coldfusion-howto@yahoogroups.com Sent: Friday, March 2, 2007 10:09:02 PM Subject:...
Hank Miller
hankcfman
Offline Send Email
Mar 3, 2007
6:11 am
40787
Hi Hank thanks It reacted the same as window.focus did in Firefox. :( I am still searching! scenario I am working on. click on thumbnail, larger image opens in...
Scott S
urbandragon1964
Offline Send Email
Mar 3, 2007
6:24 am
40788
In your popup window put: <body onload="self.focus()"> regards, Muzak ... From: "Scott S" <urbandragon1964@...> To: <coldfusion-howto@yahoogroups.com> ...
Muzak
muzakdeezign
Offline Send Email
Mar 3, 2007
6:55 am
40789
If you're trying to keep a window on top while another window under it has focus, I don't think it can be done. -John...
John Bartlett
wyntermoonwolf
Offline Send Email
Mar 3, 2007
6:57 am
40790
Try <body onload="self.focus()" onblur="self.focus"> -hankcfman ... From: John Bartlett <jbartlett@...> To: coldfusion-howto@yahoogroups.com ...
Hank Miller
hankcfman
Offline Send Email
Mar 3, 2007
7:03 am
40791
Hi John Yep it looks like it can't be done, unless you are willing to write approximately 100 lines of code. it's crazy, that it can't be done :( no problem in...
Scott S
urbandragon1964
Offline Send Email
Mar 3, 2007
7:13 am
40792
Hi, I actually do.....but i was wondering what software you think is good for web design, as i am looking into purchasing some new stuff. thanks Dwij...
djdwij
Offline Send Email
Mar 3, 2007
8:03 pm
40793
Hi all thumbnail gallery produces a link to which its original sized version appears in a popup. this works fine. in the popup though I want to paginate...
Scott
urbandragon1964
Offline Send Email
Mar 4, 2007
1:39 am
Messages 40764 - 40793 of 42948   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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