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...
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...
Ideas about what? Computers, which are binary machines, don't represent decimals quite accurately. Evidently these two numbers are being stored slightly ...
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...
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...
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:...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
This will generate a random password: <cfset random_pass = ""> <cfloop index="ii" from="1" to="6"> <cfset random_number = "#RandRange(1,99)#"> <cfset alphabet...
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 ...
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...
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...
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> ...
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....
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 ...
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...
... 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...
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...