Numbers to Text

2001-03-30 Thread Jay Wigginton
Anyone know of a custom tag available or a means within CF to convert numbers to text... 2 to two, 100 to one hundred, etc.? thanks Jay ~~ Structure your ColdFusion code with Fusebox. Get the official book at

RE: Numbers to Text

2001-03-30 Thread Jay Wigginton
Thanks Paul... I found this on the Alliare web site also and had a little trouble with it at first... but have it in place and functioning... :) thanks Jay -Original Message- From: Paul Hastings [mailto:[EMAIL PROTECTED]] Sent: Friday, March 30, 2001 12:06 PM To: CF-Talk Subject: Re:

RE: Numbers to Text

2001-03-30 Thread Jay Wigginton
en[Hthousands]; } if ((Tthousands + Hthousands) 19 ((Tthousands + Hthousands) 100)) { printMoney += ten[Tthousands] + ' ' + one[Hthousands]; } var UppCase = printMoney.charAt(0); var LowCase = printMoney.substring(1,printMoney.length); document.forms[0].dollarString.value = '' + printMoney + '

CF pages loading only once

2001-03-27 Thread Jay Wigginton
I have a strange problem that I am trying to discover a solution for... I have a web site that is using frames... when accessed from a PC there is not a problem... when accessed from a MAC the web site will load only one time... leave the site and access another web site and try to come back to

RE: CF pages loading only once

2001-03-27 Thread Jay Wigginton
be mistaken about this, but I don't think you're supposed to have frameset and body tags on the same page. I don't know if that's related to your problem, but it's not a good idea. Bob -Original Message- From: Jay Wigginton [mailto:[EMAIL PROTECTED]] Sent: March 27, 2001 12:48 PM To: CF-Talk

RE: CF pages loading only once

2001-03-27 Thread Jay Wigginton
pages loading only once Actually, that isn't true at all. Framset tags simply go before the body tags, which you have done. The other response is incorrect. - Original Message - From: "Jay Wigginton" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, Mar

RE: CF pages loading only once

2001-03-27 Thread Jay Wigginton
may be mistaken about this, but I don't think you're supposed to have frameset and body tags on the same page. I don't know if that's related to your problem, but it's not a good idea. Bob -Original Message- From: Jay Wigginton [mailto:[EMAIL PROTECTED]] Sent: March 27, 2001 12:48 PM

CF pages loading only once

2001-03-27 Thread Jay Wigginton
I am reposting this message as I have changed the URLS referenced in the original post... sorry. I have a strange problem that I am trying to discover a solution for... I have a web site that is using frames... when accessed from a PC there is not a problem... when accessed from a MAC the web

MAC problem

2001-03-23 Thread Jay Wigginton
Hello, I am having reports from MAC users that they are unable to access one of my web sites... they say the page never loads, loads partially, and other errors... would anyone on the list that has a MAC test this site for me and replay off the list whether it loaded and what type MAC, O/S,

form to session

2001-03-16 Thread Jay Wigginton
Is there a simple way to take the values submitted from a form and setting session variables with the same name... example: form submits variables Form.FirstName and Form.LastName... I need to set... Session.FirstName = Form.FirstName and Session.LastName = Form.LastName... I know I can

[CF-Talk] Ben Forta's CF_DHTMLMenu

2000-09-19 Thread Jay Wigginton
Does anyone have a working example of Ben Forta's custom tag CF_DHTMLMENU? I downloaded this from the tag gallery and used the example from there and I when I attempt to test it I get one javascript error after another??? thanks Jay

RE: [CF-Talk] Ben Forta's CF_DHTMLMenu

2000-09-19 Thread Jay Wigginton
n the same directory as your application. Otherwise, point it to the correct directory (relative to your web root) -- Billy Cravens [EMAIL PROTECTED] Jay Wigginton wrote: Does anyone have a working example of Ben Forta's custom tag CF_DHTMLMENU? I downloaded this from the tag galler

RE: division by zero error?

2000-09-15 Thread Jay Wigginton
I had this problem once... it is caused by the statement in your code... #dateformat(Now(), 'mm/dd/yy')# Try using double quotes around the date mask... #dateformat(Now(), "mm/dd/yy")#, or remove the slashes... they are what is producing the error. Jay -Original Message- From:

RE: Problem with CFFTP

2000-08-22 Thread Jay Wigginton
I would try using cfcontent type="application/unknown" file="filename" -Original Message- From: Andy Ewings [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 22, 2000 9:30 AM To: '[EMAIL PROTECTED]' Subject: RE: Problem with CFFTP Ok, I tried it and unfortunately it loaded it

RE: Hidden Variables

2000-08-22 Thread Jay Wigginton
use the CF function URLEncodedFormat(string) in the value of the hidden tag -Original Message- From: paul smith [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 22, 2000 9:32 AM To: [EMAIL PROTECTED] Subject: Hidden Variables Good Morning List! Is it expected behavior for

RE: date/time, access mdb

2000-08-21 Thread Jay Wigginton
I would set this in Access...set the default field value to Now()... then there is no need to have the hidden field in your form and less is handled by CF... Access will handle this much more efficiently and faster than CF would. Jay -Original Message- From: Jamie Symonds

RE: cf mail error

2000-08-15 Thread Jay Wigginton
Remove the gropupcasesensitive parameter from the cfmail tag... studio adds it automatically Jay -Original Message- From: Darien C. Small [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 15, 2000 9:48 AM To: [EMAIL PROTECTED] Subject: cf mail error Hi, This is my first post

file name

2000-08-09 Thread Jay Wigginton
Could some please tell me the file name that if present in a directory will be executed after the current template... same as cfapplication but is executed afterwards... I have searched the archives and thought I had saved the file name in my CF tips, but I cannot find it .. G thanks in advance!

CFCONTENT filename

2000-08-03 Thread Jay Wigginton
I am having trouble with using CFCONTENT tag... rather than returning the filename when it prompts the user to download a file... it is returning the script name that the CFCONTENT tag is located in... example code that is called... CFSET thisPath="#ExpandPath("*.*")#" CFSET

CFCONTENT

2000-08-03 Thread Jay Wigginton
I am having trouble with using CFCONTENT tag... rather than returning the filename when it prompts the user to download a file... it is returning the script name that the CFCONTENT tag is located in... example code that is called... CFSET thisPath="#ExpandPath("*.*")#" CFSET

test

2000-08-03 Thread Jay Wigginton
test -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a message to [EMAIL PROTECTED] with

RE: Dynamic image generation

2000-08-01 Thread Jay Wigginton
there is a custom tag CFX_DYNAMICGIF that will work as you desire in the Allaire tag gallery... http://devex.allaire.com/developer/gallery/SearchResults.cfm?keywords=cfx_dy namicgifsearch=search Jay -Original Message- From: George Loch [mailto:[EMAIL PROTECTED]] Sent: Tuesday,

access across LAN

2000-06-23 Thread Jay Wigginton
Can someone point me to a resource or examples that explains how to configure a cold fusion server and another NT server to enable it to access files on the other NT server on the same LAN... specifically, to perform cffile operations, writing files, reading, deleting files on the other a NT

RE: Wierd error

2000-05-22 Thread Jay Wigginton
I changed the cfcatch type = "any" and the code executes without error... cfcatch type="Any" Jay -Original Message- From: James Sleeman [mailto:[EMAIL PROTECTED]] Sent: Monday, May 22, 2000 1:15 AM To: [EMAIL PROTECTED] Subject: Wierd error The following code is producing a CF

OT: CF and new browser windows

2000-05-15 Thread Jay Wigginton
I have an application that creates thumbnail images of a larger image... upon clicking on the thumbnail I have it opening a new window with the full size image using the code... img src="#drawingthumbdir#/#thumbnail#" border="0" alt=""

RE: CF and new browser windows

2000-05-15 Thread Jay Wigginton
'legend' should be opened and then issue another "window.open" call... Bismarck Perez *1-617-563-2896 * G10H * [EMAIL PROTECTED] -Original Message- From: Jay Wigginton [mailto:[EMAIL PROTECTED]] Sent: Monday, May 15, 2000 2:20 PM To: [EMAIL PROTECTED] Subject: OT: CF and new br

RE: CF and new browser windows

2000-05-15 Thread Jay Wigginton
windows How about using the same NewWin code in the Full Size Image windows onLoad event? Mike Murry Web Developer [EMAIL PROTECTED] 214.599.5290 -Original Message- From: Jay Wigginton [mailto:[EMAIL PROTECTED]] Sent: Monday, May 15, 2000 1:20 PM To: [EMAIL PROTECTED] Subject: OT: CF

RE: CF and new browser windows

2000-05-15 Thread Jay Wigginton
ck="NewWin=window.open('#drawingimagedir#/#drawing#','NewWin','toolbar= no,scrollbars=auto,width=660,height=505');" thanks Jay -Original Message- From: Jay Wigginton [mailto:[EMAIL PROTECTED]] Sent: Monday, May 15, 2000 1:20 PM To: [EMAIL PROTECTED] Subject: OT: CF and new

RE: CFSCHEDULE QUESTION

2000-04-26 Thread Jay Wigginton
Hey, I have found to get the scheduler to work fro us that we have had to use the interval for execute and event every X number of minutes... every day - 1440 minutes, etc... Jay -Original Message- From: Double Down, Inc [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 26, 2000 2:23

Temporary File Downloads

2000-04-25 Thread Jay Wigginton
I am trying to think of a method to create a temporary file download... I am creating a ZIP file using a random name based on CFID and making it available for download after it has been created... but I would like to automatically delete the file after it has been downloaded? Trying to avoid a

RE: VisualFoxpro Datasource

2000-04-19 Thread Jay Wigginton
We use the "DBC" files... Jay -Original Message- From: Jimmy Tam [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 19, 2000 12:21 PM To: [EMAIL PROTECTED] Subject: VisualFoxpro Datasource Can anyone tell me what is needed to setup a Visual Foxpro datasource? I have the .dbc, .dct,

RE: VisualFoxpro Datasource

2000-04-19 Thread Jay Wigginton
I should of elaborated on the previous message... we use the DBC in the ODBC configuration of CF but we place all the files together in the database's directory Jay -Original Message- From: Jimmy Tam [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 19, 2000 12:21 PM To: [EMAIL

maintaining decimal place

2000-04-17 Thread Jay Wigginton
I am having trouble for some reason with having data entered via a form into an Access database and keeping the decimal places entered in place... person enters 2.5 the database rounds it to 2... if I set the database to number, type double... it maintains the decimal places but then CF

RE: Onchange submit

2000-04-04 Thread Jay Wigginton
I typically would use... form action="submitpagename.cfm" method="post" select name="selectboxname" ONCHANGE="form.submit()" /form Jay -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 04, 2000 7:19 AM To: [EMAIL PROTECTED] Subject: OT:

RE: CFMail issues

2000-03-29 Thread Jay Wigginton
:[EMAIL PROTECTED]] Sent: Wednesday, March 29, 2000 7:47 AM To: [EMAIL PROTECTED] Subject: RE: CFMail issues So far none of the e-mail address are coming from a database query. just form inputs. -Original Message- From: Jay Wigginton [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March