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.

Messages

  Messages Help
Advanced
Messages 7699 - 7728 of 42948   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
7699
Hi, ... if "var" is not defined the query will result in SELECT * FROM tbl WHERE AND .... which can not work. You need to insert a dummy clause to get a...
C. Schmitz
procept2000
Offline Send Email
Jun 1, 2002
8:07 am
7700
... From: C. Schmitz [mailto:chris@...] Sent: Saturday, June 01, 2002 3:10 AM To: coldfusion-howto@yahoogroups.com Subject: AW: [coldfusion-howto]...
Brad Comer
bcomer_fusio...
Offline Send Email
Jun 1, 2002
7:13 pm
7701
Hi, I have a form that lets the user sign up and choose their own user name and password. I have set the user name as the primary key in my db. The problem i...
ed_slopes
Offline Send Email
Jun 1, 2002
7:26 pm
7702
<cfquery name="CheckForDups" ...> Select Username From Table Where Username = '#Form.Username#' </cfquery> <cfif CheckForDups.RecordCount> <!--- THIS USERNAME...
Brad Comer
bcomer_fusio...
Offline Send Email
Jun 1, 2002
7:57 pm
7703
I am using CFX_Image to create 130x100 thumbnails of larger images. Works greate but it leaves a large grey border around the thumb, reducing the ablity to...
phil28340000
Offline Send Email
Jun 1, 2002
11:25 pm
7704
Hi All, I am new to Cold Fusion and was wondering if someone could help me out with the following: - 1. Is there a site where I can download the Cold Fusion...
abhijitm00
Offline Send Email
Jun 3, 2002
12:24 am
7705
1. You can download the CF Server from Macromedia at: macromedia.com 2. There are many great sites. Start with: fusionauthority.com, halhelms,com,...
Jillian Carroll
citrixprodigy
Offline Send Email
Jun 3, 2002
2:18 am
7706
ColdFusion Hosting Providers ColdFusion Hosting Providers' List brought to you by *** ColdFusion-HowTo: Yahoo's No. 1 and the biggest group for ColdFusion...
coldfusion-howto@yaho...
Send Email
Jun 3, 2002
4:01 am
7707
If u buy the actual software it can cost up to 4 grand i believe depending on the version and upgrade packages. if u want to do practice for urself i got one...
Scott Kuo
Tink54
Offline Send Email
Jun 3, 2002
5:28 am
7708
Hello, how can I read the value off the SessionTimeout before the value is reseted or from all sessions. not from clientvars I want know how long is no new...
Frank Ressel
ftrodat
Offline Send Email
Jun 3, 2002
12:45 pm
7709
I'm really racking my brain here... and I'm sure I'm missing something obvious. I have a form, that is being generated dynamically: <FORM method="post"...
Jillian Carroll
citrixprodigy
Offline Send Email
Jun 3, 2002
1:07 pm
7710
What you do is put a query LOOP in between the <cfmail> and </cfmail> tags: <cfloop query="supplies"> #name# #quantity# </cfloop>...
George Farnsworth
georgefarnsw...
Offline Send Email
Jun 3, 2002
1:19 pm
7711
That doesn't work. ... From: George Farnsworth [mailto:GeorgeF@...] Sent: Monday, June 03, 2002 7:19 AM To: coldfusion-howto@yahoogroups.com;...
Jillian Carroll
citrixprodigy
Offline Send Email
Jun 3, 2002
1:21 pm
7712
I need to display two distinct datasets on a graph. The data is gathered from two queries. Everything I have read has only had one line on the chart but said...
SouthernGuy578
Offline Send Email
Jun 3, 2002
2:49 pm
7713
I have a numeric value whose 15th digit I need to multiply by 2 (yes, Mod 10 - going a bit Luhn-ey here) #MID(NUMBERFORMAT(MCNUM),15,1)# When I try to multiply...
jschlosser@...
jojo_super77
Offline Send Email
Jun 3, 2002
3:28 pm
7714
Try this #Evaluate(2 * NumberFormat(Mid(MCNUM, 15, 1)))# That may work for you Remy ... From: <jschlosser@...> To: <coldfusion-howto@yahoogroups.com> Sent:...
Remy
rune.song@...
Send Email
Jun 3, 2002
3:39 pm
7715
This works for me: <cfset mcNum = "1234567890123456"> <cfset num15 = MID(MCNUM,15,1)> <cfset newNum = num15*2> <cfoutput>#num15# * 2 = #newNum#</cfoutput> Not...
Duane Boudreau
duane@...
Send Email
Jun 3, 2002
3:40 pm
7716
Close - got it with this: #Evaluate(MID(NUMBERFORMAT(MCNUM),15,1)*2)# JoAnn A. Schlosser Senior Consultant National Package Implementation Group Grant Thornton...
jschlosser@...
jojo_super77
Offline Send Email
Jun 3, 2002
3:42 pm
7717
Are you trying to do your multiplication inside a CFoutPut or quoted assignment? Duane ... From: jschlosser@... [mailto:jschlosser@...] Sent: Monday,...
Duane Boudreau
duane@...
Send Email
Jun 3, 2002
3:48 pm
7718
The number is 16 digits long and without using numberformat, the 15th digit is the + in scientific notation. Using numberformat, I got a 16 digit number....
jschlosser@...
jojo_super77
Offline Send Email
Jun 3, 2002
4:09 pm
7719
inside cfoutput - no quotes, these are numbers. JoAnn A. Schlosser Senior Consultant National Package Implementation Group Grant Thornton LLP Alexandria, Va....
jschlosser@...
jojo_super77
Offline Send Email
Jun 3, 2002
4:16 pm
7720
lemme see the code. ... __________________________________________________ Do You Yahoo!? Yahoo! - Official partner of 2002 FIFA World Cup ...
cisco delcarmen
ciscodelcarmen
Offline Send Email
Jun 3, 2002
7:24 pm
7721
My apologies! This was a simple case of misspelling! It works fine now!...
abramadams
Offline Send Email
Jun 3, 2002
7:45 pm
7722
Hi Jillian, what I would do is give all form fields unique names. Additionally I would store either product name or ID in a hidden field: <cfoutput...
C. Schmitz
procept2000
Offline Send Email
Jun 3, 2002
7:48 pm
7723
Hi, ... You can't do that in a line chart with CF 5. CF MX can do it with CFCHART. But, you could choose another chart type (e.g. bar chart) and assign the ...
C. Schmitz
procept2000
Offline Send Email
Jun 3, 2002
7:48 pm
7724
How can I call on a client variable? I have a client ID stored in client.id... and I want to built a query that says 'pull name where client.id=db.id' How can...
Jillian Carroll
citrixprodigy
Offline Send Email
Jun 3, 2002
9:30 pm
7725
<cfquery name='getyadayada' datasource='xyz'> select yada from mytable where id = #client.id# </cfquery> Make sure your client.id datatype is a number, or...
jschlosser@...
jojo_super77
Offline Send Email
Jun 3, 2002
9:33 pm
7726
Wow JoAnn, thanks! I'm feeling rather silly right now... I'd tried this one 8 ways from Sunday and for whatever reason, was wrong every time... on something...
Jillian Carroll
citrixprodigy
Offline Send Email
Jun 3, 2002
9:38 pm
7727
I started out like that - couldn't multiply 2 numbers this morning. I'm going home! JoAnn A. Schlosser Senior Consultant National Package Implementation Group...
jschlosser@...
jojo_super77
Offline Send Email
Jun 3, 2002
9:39 pm
7728
70 Fields seems like way to many, are you normalizing your db tables... If not the best way to normalize tables is to look at all your fields and move the ones...
Yrag Urtil
lizarking0
Offline Send Email
Jun 3, 2002
10:05 pm
Messages 7699 - 7728 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