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.

Messages

  Messages Help
Advanced
Messages 16426 - 16455 of 42948   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
16426
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
Jul 1, 2003
11:17 am
16427
... From: Pen Frey To: coldfusion-howto@yahoogroups.com Sent: Tuesday, July 01, 2003 12:43 PM Subject: Re: [coldfusion-howto] dynamic radio buttons Thank You...
Elissa Feit
elissafeit
Offline Send Email
Jul 1, 2003
12:06 pm
16428
Ideas about what? Computers, which are binary machines, don't represent decimals quite accurately. Evidently these two numbers are being stored slightly ...
Elissa Feit
elissafeit
Offline Send Email
Jul 1, 2003
12:16 pm
16429
Oops, just wrote this in a different thread, Evaluate is much less efficient than StructFind. (Wrap 'em each in a loop ten thousand times, and Evaluate takes...
Elissa Feit
elissafeit
Offline Send Email
Jul 1, 2003
12:25 pm
16430
They should be available (didn't I just do this with Pen? ;-) as: StructFind(form, "address#x#") and StructFind(form, "permit#x#") where x is your index from 1...
Elissa Feit
elissafeit
Offline Send Email
Jul 1, 2003
1:12 pm
16431
There might be a more graceful way to do it, but this should work: <cfset val = "permit#i#"> #evaluate(val)# ... From: Dave [mailto:dweiser@...] Sent:...
Greg Luce
cf_greg
Online Now Send Email
Jul 1, 2003
1:38 pm
16432
Basically this is in order to balance some billing that I have to do. So it comes from a list of fees. All of the fees (verified) have only two decimal...
Roger Dahlstrom
rdahl
Online Now Send Email
Jul 1, 2003
1:44 pm
16433
I have MySQL running on a Redhat 9 system. I set up a database named test and MySQL-test. The only user name set is mysql. It works fine as long as I'm...
a40_40
Offline Send Email
Jul 1, 2003
2:32 pm
16434
hmmm... can't seem to get a hold of this charting. can someone review the following code to see why my charts will not build? <cfquery name=topMedia...
:. webspinner : encor...
surftrip
Offline Send Email
Jul 1, 2003
2:50 pm
16435
You might like to try a few more parameters in your cfchart tag. <cfchart tag I would suggest being explicit about format (I have had problems with flash the...
Phillip Fox
phill_fox
Offline Send Email
Jul 1, 2003
3:01 pm
16436
Hi, I'm looking for a custom tag that will convert a PDF file to a JPEG and then resize it. I've found plenty that will convert a JPEG to a PDF! Any...
Zoe Cutting
ormaybemidgets
Offline Send Email
Jul 1, 2003
3:04 pm
16437
I believe pdflib has that built in, but i could be wrong: http://www.pdflib.org/ ... From: "Zoe Cutting" <zoe.cutting@...> To:...
Alex Grosholz
tlmalexgro
Offline Send Email
Jul 1, 2003
3:18 pm
16438
Thanks again Elissa. Question: how would a newbie like me, know the efficiency of the various functions, to get in the habit of using the most efficient one...
Pen Frey
penz_put2
Offline Send Email
Jul 1, 2003
3:45 pm
16439
I believe this line is the problem. <cfoutput>#pop_mail.RecordCount#</cfoutput><br><br> Since CFMAIL has a query assigned, an embedded CFOUTPUT will act like a...
mainstreetcentral@...
richardx1313
Offline Send Email
Jul 1, 2003
4:31 pm
16440
Is there a simple log in script that someone can pass along to me? I need to have people log into an area of my web site using a user name and password. Once...
jipsy1234
Offline Send Email
Jul 1, 2003
8:01 pm
16441
Is there a CF function or custom tag that will generate a password for people who register for a site? I want to have people fill out a form to register and...
jipsy1234
Offline Send Email
Jul 1, 2003
8:13 pm
16442
This should suit your needs. Configure it the way you want. This is basically a 3 pages login usign session variables: Application.cfm, logiun.cfm and...
Gilles
cfgilles
Offline Send Email
Jul 1, 2003
8:38 pm
16443
I have two apps like that that generate passwords. For the older one I use the 1st three characters of the user's name plus a random number in the range of...
GeorgeF@...
georgefarnsw...
Offline Send Email
Jul 1, 2003
8:43 pm
16444
This will generate a random password: <cfset random_pass = ""> <cfloop index="ii" from="1" to="6"> <cfset random_number = "#RandRange(1,99)#"> <cfset alphabet...
Gilles
cfgilles
Offline Send Email
Jul 1, 2003
8:43 pm
16445
Also: http://www.cflib.org/udf.cfm?ID=258 http://www.cflib.org/udf.cfm?ID=437 Gilles ... From: jipsy1234 To: coldfusion-howto@yahoogroups.com Sent: Tuesday,...
Gilles
cfgilles
Offline Send Email
Jul 1, 2003
8:52 pm
16446
Thanks for all the assistance so far. One more question, which isn't really CF related... I've got my random password generating fine, and the login script ...
jipsy1234
Offline Send Email
Jul 1, 2003
10:38 pm
16447
The client wants to have a user be able to select a record in a data file and save that data to their local drive. Is this possible? I suspect you cannot do...
ronc_92127
Offline Send Email
Jul 2, 2003
12:19 am
16448
CFCONTENT ? thats what i used to export data into excel files. ... From: "ronc_92127" <borboka@...> Reply-To: coldfusion-howto@yahoogroups.com To:...
Kunal Pewekar
hendrixjimi_99
Online Now Send Email
Jul 2, 2003
12:30 am
16449
You have to create a foreign key in your tblProfile that will be the same as your tblLogin.ID. The ID column in your tblProfile is not your foreign key, it's...
Gilles
cfgilles
Offline Send Email
Jul 2, 2003
1:42 am
16450
The way to be a non-newbie is to test new stuff and make changes and test more. Here's some good code to test with, if you'd like: <cfset iterate = 10000> ...
Elissa Feit
elissafeit
Offline Send Email
Jul 2, 2003
6:36 am
16451
Hi there; Has anyone else had any problems / success using <cflogin> across domains? I have been trying to use CFLOGIN, and having quite a bit of success....
james_eberhardt
Offline Send Email
Jul 2, 2003
7:22 am
16452
HI i want to learn fusebox methodology for coldfusion i want the fusebox core files to implement fusebox in coldfusion ,and sample application and explanation ...
prasad
dropin_prasad
Offline Send Email
Jul 2, 2003
9:07 am
16453
Hi All, I am a bit of a Newbie to CF and my learning curve is vertical at the moment :-) I want users to be able to enter 6 numbers from a .cfm page that will...
bingduel
Offline Send Email
Jul 2, 2003
1:44 pm
16454
... So it's all new thrills and excitement for you at the moment. Enjoy! ... Unless I'm misunderstanding you, something like this should do it: <cfquery...
Jane Williams
janewilliams20
Offline Send Email
Jul 2, 2003
1:52 pm
16455
If you do go with that solution, I would put a delimiter of some sort between the numbers. That way you can easily retrieve the original 6 numbers if you...
James Eberhardt
james_eberhardt
Offline Send Email
Jul 2, 2003
2:00 pm
Messages 16426 - 16455 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