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 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



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: Numbers to Text


 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.?

http://www.tei.or.th/eic/ under the free link.
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Numbers to Text

2001-03-30 Thread Jay Wigginton

Cool... I did find a CFX tag on the Alliare web site to do this...

CFX_NUMBER2TEXT

Has more functionality than I needed but it's working...:)

thanks
Jay

-Original Message-
From: Bryan LaPlante [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 30, 2001 11:49 AM
To: CF-Talk
Subject: Re: Numbers to Text


This may not be what you are looking for, but I wrote a little check writer
script for a bank once that translated the number column into dollars and
cents as words on the client machine. This script was written pre IE4 before
you could declair an array object by reference. All that the first function
does is declaire the array object for moneyobj, the rest of the script does
the work when you pass it a float or decimal number.

-- script --
function moneyObj()
{
for (i = 0; imoneyObj.arguments.length; i++)
 this[i] = moneyObj.arguments[i];
}
teen = new
moneyObj("Ten","Eleven","Twelve","Thirteen","Fourteen","Fifteen","Sixteen","
Seventeen","Eighteen","Ninteen");
ten  = new
moneyObj("","","Twenty","Thirty","Fourty","Fifty","Sixty","Seventy","Eighty"
,"Ninty");
one  =  new
moneyObj("","One","Two","Three","Four","Five","Six","Seven","Eight","Nine");



function checkWrite(s)
{
var moneyString = '0123456789';
var money  = '';
var printMoney = '';
for (i = 0; i = s.length; i++)
 {
 g = s.charAt(i);
 if (moneyString.indexOf(g) != -1)money += g;
 }

var dollars  = money.substring(0,(money.length) -2);
var cents  = money.substring(dollars.length,money.length);

while (cents.length  2)
  {
  cents = 0 + cents;
  }
while (dollars.length  6)
  {
  dollars = 0 + dollars;
  }

var ones  = dollars.charAt(0);
var tens  = dollars.charAt(1);
var hundreds = dollars.charAt(2);
var thousands = dollars.charAt(3);
var Tthousands = dollars.charAt(4);
var Hthousands = dollars.charAt(5);


if (ones != 0)
 {
 printMoney = one[ones] + ' hundred ';
 }
 else
  {
  printMoney = '';
 }
if ((tens + hundreds)  1)
 {
 printMoney += '';
 }
if ((tens + hundreds)  1  ((hundreds + thousands)  1  ((thousands +
Tthousands)  1)))
 {
 printMoney += ' thousand ';
 }
if ((tens + hundreds)  0  ((tens + hundreds) = 9))
 {
 printMoney += one[hundreds] + ' thousand ';
 }
if ((tens + hundreds)  9  ((tens + hundreds) = 19))
 {
 printMoney += teen[hundreds] + ' thousand ';
 }
if ((tens + hundreds)  19  ((tens + hundreds)  100))
 {
 printMoney += ten[tens] + ' ' + one[hundreds] + ' thousand ';
 }

if (thousands != 0)
 {
 printMoney += one[thousands] + ' hundred ';
 }
 else
  {
  printMoney += '';
 }
if ((Tthousands + Hthousands)  0  ((Tthousands + Hthousands) = 9))
 {
 printMoney += one[Hthousands];
 }
if ((Tthousands + Hthousands)  9  ((Tthousands + Hthousands) = 19))
 {
 printMoney += teen[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 + ' and ' + cents  +
'\/ 100';
 document.write(UppCase + LowCase.toLowerCase() + ' and ' + cents  + '\/
100');
}
-- End Script --
- Original Message -
From: "Jay Wigginton" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Friday, March 30, 2001 10:20 AM
Subject: Numbers to Text


 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 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



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
the site it will not load...

I have found in testing it with the people that are having the trouble that
it is related to the index page being a CF file...  I setup two identical
pages stripping out all CF tags... one named index.cfm and one named
index.html and the cfm file has the problem I described.. the html file does
not have the problem...

Here is the code I am using for the index page...

html
head
titleeMarketing Magazine/title
/head

!-- frames --
frameset rows="122,*"
frame name="H" src="header.cfm" marginwidth="0" marginheight="0"
scrolling="no" frameborder="0"
frameset cols="155,*"
frame name="L" src="menu.cfm" marginwidth="5" marginheight="10"
scrolling="auto" frameborder="0"
frame name="R" src="home.cfm" marginwidth="10" marginheight="10"
scrolling="auto" frameborder="0"
/frameset
/frameset

body bgcolor="#FF"

/body
/html

Here are the URL's...

http://www.emarketingmag.com/index.cfm
http://www.emarketingmag.com/index.html

Anyone have any idea what could possibly cause this problem  It seems to
be limited to IE v5 also... in Netscape the both pages load but the Netscape
never thinks they are finished loading... the icon is always spinning...
after clicking on one of the links it does load the new page and the icon
stops spinning...

I am pulling my hair out over this one...  any suggestions would be
welcomed... :)

thanks
Jay



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CF pages loading only once

2001-03-27 Thread Jay Wigginton

I have never had any problem with them in the past... but anything is worth
a try a this point... :)

thanks
Jay

-Original Message-
From: Bob Silverberg [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, March 27, 2001 1:08 PM
To: CF-Talk
Subject: RE: CF pages loading only once


I 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
To: CF-Talk
Subject: CF pages loading only once


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
the site it will not load...

I have found in testing it with the people that are having the trouble that
it is related to the index page being a CF file...  I setup two identical
pages stripping out all CF tags... one named index.cfm and one named
index.html and the cfm file has the problem I described.. the html file does
not have the problem...

Here is the code I am using for the index page...

html
head
titleeMarketing Magazine/title
/head

!-- frames --
frameset rows="122,*"
frame name="H" src="header.cfm" marginwidth="0" marginheight="0"
scrolling="no" frameborder="0"
frameset cols="155,*"
frame name="L" src="menu.cfm" marginwidth="5" marginheight="10"
scrolling="auto" frameborder="0"
frame name="R" src="home.cfm" marginwidth="10" marginheight="10"
scrolling="auto" frameborder="0"
/frameset
/frameset

body bgcolor="#FF"

/body
/html

Here are the URL's...

http://www.emarketingmag.com/index.cfm
http://www.emarketingmag.com/index.html

Anyone have any idea what could possibly cause this problem  It seems to
be limited to IE v5 also... in Netscape the both pages load but the Netscape
never thinks they are finished loading... the icon is always spinning...
after clicking on one of the links it does load the new page and the icon
stops spinning...

I am pulling my hair out over this one...  any suggestions would be
welcomed... :)

thanks
Jay
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CF pages loading only once

2001-03-27 Thread Jay Wigginton

well, I have gotten to a point that I am willing to give anything a try... I
made change and am waiting on response from the people testing... :)

thanks
Jay

-Original Message-
From: Jason Lotz [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, March 27, 2001 1:22 PM
To: CF-Talk
Subject: Re: CF 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, March 27, 2001 11:20 AM
Subject: RE: CF pages loading only once


 I have never had any problem with them in the past... but anything is
worth
 a try a this point... :)

 thanks
 Jay

 -Original Message-
 From: Bob Silverberg [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, March 27, 2001 1:08 PM
 To: CF-Talk
 Subject: RE: CF pages loading only once


 I 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
 To: CF-Talk
 Subject: CF pages loading only once


 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
 the site it will not load...

 I have found in testing it with the people that are having the trouble
that
 it is related to the index page being a CF file...  I setup two identical
 pages stripping out all CF tags... one named index.cfm and one named
 index.html and the cfm file has the problem I described.. the html file
does
 not have the problem...

 Here is the code I am using for the index page...

 html
 head
 titleeMarketing Magazine/title
 /head

 !-- frames --
 frameset rows="122,*"
 frame name="H" src="header.cfm" marginwidth="0" marginheight="0"
 scrolling="no" frameborder="0"
 frameset cols="155,*"
frame name="L" src="menu.cfm" marginwidth="5" marginheight="10"
 scrolling="auto" frameborder="0"
 frame name="R" src="home.cfm" marginwidth="10" marginheight="10"
 scrolling="auto" frameborder="0"
 /frameset
 /frameset

 body bgcolor="#FF"

 /body
 /html

 Here are the URL's...

 http://www.emarketingmag.com/index.cfm
 http://www.emarketingmag.com/index.html

 Anyone have any idea what could possibly cause this problem  It seems
to
 be limited to IE v5 also... in Netscape the both pages load but the
Netscape
 never thinks they are finished loading... the icon is always spinning...
 after clicking on one of the links it does load the new page and the icon
 stops spinning...

 I am pulling my hair out over this one...  any suggestions would be
 welcomed... :)

 thanks
 Jay


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CF pages loading only once

2001-03-27 Thread Jay Wigginton

Well, the noframes/noframes around the body tags did not solve the
problem  it was worth a shot


anyone else have any suggestions???  :)

thanks
Jay

-Original Message-
From: James Maltby [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, March 27, 2001 1:11 PM
To: CF-Talk
Subject: RE: CF pages loading only once


You may be right there Bob - Jay, try placing the body stuff between
noframes/noframes and see if that works

J

-Original Message-
From: Bob Silverberg [mailto:[EMAIL PROTECTED]]
Sent: 27 March 2001 19:08
To: CF-Talk
Subject: RE: CF pages loading only once


I 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
To: CF-Talk
Subject: CF pages loading only once


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
the site it will not load...

I have found in testing it with the people that are having the trouble that
it is related to the index page being a CF file...  I setup two identical
pages stripping out all CF tags... one named index.cfm and one named
index.html and the cfm file has the problem I described.. the html file does
not have the problem...

Here is the code I am using for the index page...

html
head
titleeMarketing Magazine/title
/head

!-- frames --
frameset rows="122,*"
frame name="H" src="header.cfm" marginwidth="0" marginheight="0"
scrolling="no" frameborder="0"
frameset cols="155,*"
frame name="L" src="menu.cfm" marginwidth="5"
marginheight="10"
scrolling="auto" frameborder="0"
frame name="R" src="home.cfm" marginwidth="10"
marginheight="10"
scrolling="auto" frameborder="0"
/frameset
/frameset

body bgcolor="#FF"

/body
/html

Here are the URL's...

http://www.emarketingmag.com/index.cfm
http://www.emarketingmag.com/index.html

Anyone have any idea what could possibly cause this problem  It seems to
be limited to IE v5 also... in Netscape the both pages load but the Netscape
never thinks they are finished loading... the icon is always spinning...
after clicking on one of the links it does load the new page and the icon
stops spinning...

I am pulling my hair out over this one...  any suggestions would be
welcomed... :)

thanks
Jay
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



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 site will load only one
time... leave the site and access another web site and try to come back to
the site it will not load...

I have found in testing it with the people that are having the trouble that
it is related to the index page being a CF file...  I setup two identical
pages stripping out all CF tags... one named index4.cfm and one named
index4.html and the cfm file has the problem I described.. the html file
does
not have the problem...

Here is the code I am using for the index page...

html
head
titleeMarketing Magazine/title
/head

!-- frames --
frameset rows="122,*"
frame name="H" src="header.cfm" marginwidth="0" marginheight="0"
scrolling="no" frameborder="0"
frameset cols="155,*"
frame name="L" src="menu.cfm" marginwidth="5"
marginheight="10"
scrolling="auto" frameborder="0"
frame name="R" src="home.cfm" marginwidth="10"
marginheight="10"
scrolling="auto" frameborder="0"
/frameset
/frameset

body bgcolor="#FF"

/body
/html

Here are the URL's...

http://www.emarketingmag.com/index4.cfm
http://www.emarketingmag.com/index4.html

Anyone have any idea what could possibly cause this problem  It seems to
be limited to IE v5 also... in Netscape the both pages load but the Netscape
never thinks they are finished loading... the icon is always spinning...
after clicking on one of the links it does load the new page and the icon
stops spinning...

I am pulling my hair out over this one...  any suggestions would be
welcomed... :)

thanks
Jay


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



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, browser type
and browser version please?
It would be truly appreciated... :)

The URL is... http://www.emarketingmag.com

thanks
Jay




~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



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 use... cfset Session.FirstName = Form.FirstName

But, I want to do this cfloop looping over the fieldnames... something
like...

cfloop index="field" list="#fieldnames#"
cfoutput
cfset session.#field# = Form.#field#
/cfoutput
/cfloop

The above produces an error... :(


thanks in advance
Jay

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



[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

--
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 'unsubscribe' in the body.



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

2000-09-19 Thread Jay Wigginton

Thanks... I did have it pointing to the correct spot... I have decided not
to use the tag after I found out that it supports only IE and not
Netscape...

 -Original Message-
 From: Billy Cravens [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, September 19, 2000 3:02 PM
 To: [EMAIL PROTECTED]
 Subject: Re: [CF-Talk] Ben Forta's CF_DHTMLMenu


 Make sure that you specify the correct script directory in the custom
 tag (it's looking for the .js file that came with the tag)  .. the
 example he gives points to a /js directory (which would be js under web
 root).  Try "./" if it's in 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 gallery and used the example
 from there and I
  when I attempt to test it I get one javascript error after
 another???
 
  thanks
  Jay
 
 
 --
 
  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 'unsubscribe' in
the body.

--
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 'unsubscribe' in
the body.

--
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 'unsubscribe' in the body.



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: Terri Stocke [mailto:[EMAIL PROTECTED]]
 Sent: Friday, September 15, 2000 12:40 PM
 To: [EMAIL PROTECTED]
 Subject: division by zero error?


 Can anyone tell me what may be causing this error?

 Error Diagnostic Information

 ODBC Error Code = 22012 (Division by zero)

 [Microsoft][ODBC Microsoft Access 97 Driver]Division by zero (null)

 I am not performing any mathematical operations, nor do I have
 anything in
 my CF code that would cause CF to think that that is what I am
 trying to do.
 This is really a very simple two-page app. I have also tested this by NOT
 utilizing the phone and fax fields, with the same result.

 Here's the query (with their respective data types in brackets):

 CFQUERY name="SaveReq" datasource="TrainReg"
INSERT INTO Request
   (ClassID,
 Request_Date, [datetime]
 Student_Name, [text]
 Student_Location, [text]
 Student_Department, [number]
 Student_Phone, [number]
 Student_Fax, [number]
 Manager_Name, [text]
 SendTo_Email) [text]
VALUES
   (#Form.ClassID#,
  #dateformat(Now(), 'mm/dd/yy')#,
  '#Variables.StudentName#',
  '#Variables.StudentLoc#',
  #Form.DeptNo#,
  '#variables.studentphone#',
  '#variables.studentfax#',
  '#form.managername#',
  '#form.m_ta_email#')
 /cfquery
 _
 Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

 Share information about yourself, create your own public profile at
 http://profiles.msn.com.

 --
 
 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 'unsubscribe' in
the body.

--
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 'unsubscribe' in the body.



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 into the browser as a word
 document.  Any ideas as to the direction I need to point my heroic efforts
 in order to prompt the user to download the file?!

 -Original Message-
 From: David E. Crawford [mailto:[EMAIL PROTECTED]]
 Sent: 22 August 2000 14:18
 To: [EMAIL PROTECTED]
 Subject: Re: Problem with CFFTP


 Keep in mind that with IE and MS-Word, Powerpoint, Excel, it
 sometimes takes
 heroic efforts to overcome the M$ natural tendency to display the document
 in the browser, as opposed to force a download.

 DC

 - Original Message -
 From: "David E. Crawford" [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Tuesday, August 22, 2000 13:14
 Subject: Re: Problem with CFFTP


  To a certain extent that is true.  However, by setting the appropriate
  MIME
  type for the document you can force the browser to "save" it rather than
  rendering it.
 
  DC
 
  - Original Message -
  From: "Andy Ewings" [EMAIL PROTECTED]
  To: [EMAIL PROTECTED]
  Sent: Tuesday, August 22, 2000 13:12
  Subject: RE: Problem with CFFTP
 
 
   I thought CFContent basically allows the user to read non HTML files
   in
   their browser window (after all the browser is just a container).  I
   don't
   want to open the file in their browser, just let them save it to their
   hard
   drive and open it up in word (it's a word doc)
  
   -Original Message-
   From: David E. Crawford [mailto:[EMAIL PROTECTED]]
   Sent: 22 August 2000 14:05
   To: [EMAIL PROTECTED]
   Subject: Re: Problem with CFFTP
  
  
   CFCONTENT causes CF to read a file from the web server and "push" it
   to
   the client via the browser.  CFFILE lets you move files around on
  the
   web
   server, including creating, renaming, copying and deleting.
  
   DC
  
   - Original Message -
   From: "Andy Ewings" [EMAIL PROTECTED]
   To: [EMAIL PROTECTED]
   Sent: Tuesday, August 22, 2000 13:02
   Subject: RE: Problem with CFFTP
  
  
Oh okbut I still don;t see/understand how you move files from
  the
web
server to the client using cffile/cfcontent.  I would have thought
   cfftp
would have done this by the nature of it's name!  Anyone show me
  what
   to
do?!
   
-Original Message-
From: David E. Crawford [mailto:[EMAIL PROTECTED]]
Sent: 22 August 2000 13:56
To: [EMAIL PROTECTED]
Subject: Re: Problem with CFFTP
   
   
They already have the ability to specify where it is saved.  That is
completely a client function.
   
DC
   
- Original Message -
From: "Andy Ewings" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, August 22, 2000 12:52
Subject: RE: Problem with CFFTP
   
   
 Oh.

 How do I do that?  What I am trying to do is let the user download
  a
 specific file from the web server to there Hard drive but I want
  to
let
 them
 choose where to save it.  Have you got any code that will do this?

 -Original Message-
 From: Kevin Schmidt [mailto:[EMAIL PROTECTED]]
 Sent: 22 August 2000 14:28
 To: [EMAIL PROTECTED]
 Subject: Re: Problem with CFFTP


 Yeah,  You can't use CFFTP to move files between the cfserver and
 browser.
 Only between the FTP server and CF server.  You have to use CFFILE
   and
 CFCONTENT to upload and download from the browser to the server
  and
then
 from the server to the FTP server and vice versa.

 - Original Message -
 From: "Andy Ewings" [EMAIL PROTECTED]
 To: "CFTalk (E-mail)" [EMAIL PROTECTED]
 Sent: Tuesday, August 22, 2000 5:56 AM
 Subject: Problem with CFFTP


  I have a problem with CFFTP.  I am trying to use CFFTP to
  download
   a
 file
  onto a user hard drive.  When the user clicks a button the web
   site
 creates
  a file using CFFILE and then tries to download it to C:\temp
  using
 CFFTP.
  However all it is doing is saving it to C:\Temp on the web
  server!
 Here
 is
  my code
 
  cfftp action="open" username="username" password="password"
  server="servername" connection="temp" stoponerror="no"
  cfoutput
  Open Error Code: #cfftp.errorcode#
  Open Error Text: #cfftp.errortext#
  /cfoutput
 
  cfftp connection="temp" action="GETFILE"
localfile="c:\temp\test.doc"
  remotefile="#thisdirectory#TestFile.htm" transfermode="BINARY"
  failifexists="No" stoponerror="No"
  Download Error Code: #cfftp.errorcode#br
  Download Error Text: #cfftp.errortext#br
  /cfoutput
  cfftp action="CLOSE" connection="cv"
 
  Both FTP operations succeed.  Anyone have any 

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 Hidden Vars
 to be truncated at the first space?

 best,  paul

 --
 
 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
'unsubscribe' in the body.

--
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 'unsubscribe' in the body.



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 [mailto:[EMAIL PROTECTED]]
 Sent: Monday, August 21, 2000 11:47 AM
 To: [EMAIL PROTECTED]
 Subject: date/time, access mdb


 This is a multi-part message in MIME format.
 --5C6A9BCB36B81CBF5001173F
 Content-Type: text/plain; charset=us-ascii
 Content-Transfer-Encoding: 7bit

 I'm looking to include a date/time with a form submission to
 an access db.  I have a field called "datetime" in my db,
 and want this value = to Now() when the form is initially
 submitted.  I will use a field, type="hidden", and
 value="xxx" for submitting the date?  From my understanding
 thus far, I know that I will use a
 #CreateODBCDateTime(datetime)# to properly display the
 date/time when I view the record at a later date.  All
 replies appreciated!
 Jamie










 --5C6A9BCB36B81CBF5001173F
 Content-Type: text/x-vcard; charset=us-ascii; name="vcard.vcf"
 Content-Transfer-Encoding: 7bit
 Content-Description: Card for Symonds, Jamie
 Content-Disposition: attachment; filename="vcard.vcf"

 begin:  vcard
 fn: Jamie Symonds
 n:  Symonds;Jamie
 adr:Box 780;;St. F.X.U.;Antigonish;Nova Scotia;B2G 2X1;Canada
 email;internet: [EMAIL PROTECTED]
 title:  Bachelor of Information Systems, Major (student)
 x-mozilla-cpt:  ;0
 x-mozilla-html: TRUE
 version:2.1
 end:vcard


 --5C6A9BCB36B81CBF5001173F--

 --
 
 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
'unsubscribe' in the body.

--
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 'unsubscribe' in the body.



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 here.  I have an ordering form that is
 e-mailed after
 the completion of the order.  My problem is that I am getting the
 following
 error.  Any assistance that you can be would be greatly appreciated.

 Darien Small
 Technical Information Officer
 IExperditer

 Error Diagnostic Information
 Just in time compilation error
 An unknown attribute 'groupcasesensitive' has been encountered at document
 position (83:140) to (83:157) while processing tag CFMAIL. This
 tag can only
 take the following attributes:


 --
 
 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
'unsubscribe' in the body.

--
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 'unsubscribe' in the body.



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!
Jay

--
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 'unsubscribe' in the body.



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 thisDirectory="#GetDirectoryFromPath("#thisPath#")#"
cfcontent type="application/msexcel"
file="#thisDirectory#results/survey.csv" deletefile="Yes"


When I get the download window it has "download.cfm" as the file being
downloaded rather than "survey.csv" 

What am I doing wrong   :)

thanks in advance

Jay

--
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 'unsubscribe' in the body.



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 thisDirectory="#GetDirectoryFromPath("#thisPath#")#"
cfcontent type="application/msexcel"
file="#thisDirectory#results/survey.csv" deletefile="Yes"


When I get the download window it has "download.cfm" as the file being
downloaded rather than "survey.csv" 

What am I doing wrong   :)

thanks in advance

Jay

--
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 'unsubscribe' in the body.



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 'unsubscribe' in the body.



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, August 01, 2000 7:22 PM
 To: [EMAIL PROTECTED]
 Subject: Dynamic image generation


 Is anyone aware of a dynamic image generator solution? I am aware of Flash
 Gen. But $30K seems a little steep to just build little buttons
 with type on
 them.

 What I want to accomplish is to build graphics on the fly if they don't
 already exist with font, kerning, ect..

 Any ideas?

 Thanks

 George Loch

 --
 
 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 'unsubscribe' in
the body.

--
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 'unsubscribe' in the body.



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
server.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



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 error, and some very strange output
 (not what I would expect AT ALL, where the hell does "Hello ..
 11" come from
 ?!?!?! ), any ideas why anyone ?

 The code
 -- CUT HERE --
 !DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"

 html
 head
  titleUntitled/title
 /head

 body
 CFLOOP FROM=1 TO=6 INDEX="x"
  CFOUTPUTHello .. #x#BR/CFOUTPUT
 /CFLOOP

 CFLOOP FROM=1 TO=10 INDEX="x"
  CFOUTPUTHoopy .. #x#BR/CFOUTPUT
 /CFLOOP

  Hoopy !BR
 CFTRY
 CFTHROW TYPE="BORKY" MESSAGE="You blah !" DETAIL="Blah!"

 CFCATCH TYPE="BORKY"
   Hey error boy, what's the error today ?BR
   CFOUTPUT#CFCATCH.Message#BR#CFCATCH.Detail#/CFOUTPUTBR
 /CFCATCH
 /CFTRY
  La De Da
 /body
 /html
 --

 The output
 - CUT HERE ---
 Hello .. 1
 Hello .. 2
 Hello .. 3
 Hello .. 4
 Hello .. 5
 Hello .. 6
 Hoopy .. 1
 Hoopy .. 2
 Hoopy .. 3
 Hoopy .. 4
 Hoopy .. 5
 Hoopy .. 6
 Hoopy .. 7
 Hoopy .. 8
 Hoopy .. 9
 Hoopy .. 10
 Hoopy !
 Hello .. 11
 ---


 The error
 -
 Error Diagnostic Information
 unknown exception condition

 unknown error while executing a tag.


 Date/Time: 05/22/00 16:52:02
 Browser: Mozilla/4.0 (compatible; MSIE 5.0; Windows NT; DigExt)
 Remote Address: 10.10.10.105
 -


 ---
 James Sleeman,
   E-Commerce, Database, Programmer
   Innovative Media Ltd


 --
 
 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf
_talk or send a message to [EMAIL PROTECTED] with
'unsubscribe' in the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



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=""
onClick="NewWin=window.open('#drawingimagedir#/#drawing#','NewWin','toolbar=
no,scrollbars=auto,width=660,height=505');"

The problem I have now is that some of the full size images require a
"drawing legend" to be opened also...  can anyone offer any suggestions on
how to cause two new windows to be opened upon a click... and the order is
important also... must open the full size drawing above and then open
another new window with the legend or any other creative ideas on how to
accomplish this...

thanks
Jay

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: CF and new browser windows

2000-05-15 Thread Jay Wigginton

Hey,

Since I am a total Java "idiot" this sounds totally like "Greek" to me
care to elaborate in terms that a "non-java" person would understand? grin

thanks
Jay



-Original Message-
From: Perez, Bismark [mailto:[EMAIL PROTECTED]]
Sent: Monday, May 15, 2000 2:32 PM
To: '[EMAIL PROTECTED]'
Subject: RE: CF and new browser windows


why don't you move the "window.open" code to the script section and then
call the function from the onclick=, that way you can check on the
JavaScript for the value of the field that tells you whether the '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 browser windows


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=""
onClick="NewWin=window.open('#drawingimagedir#/#drawing#','NewWin','toolbar=
no,scrollbars=auto,width=660,height=505');"

The problem I have now is that some of the full size images require a
"drawing legend" to be opened also...  can anyone offer any suggestions on
how to cause two new windows to be opened upon a click... and the order is
important also... must open the full size drawing above and then open
another new window with the legend or any other creative ideas on how to
accomplish this...

thanks
Jay


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: CF and new browser windows

2000-05-15 Thread Jay Wigginton

I am not loading an HTML page otherwise I would do that... I am simply
loading the image directly in the new window... :)

thanks
Jay

-Original Message-
From: Mike Murry [mailto:[EMAIL PROTECTED]]
Sent: Monday, May 15, 2000 1:25 PM
To: '[EMAIL PROTECTED]'
Subject: RE: CF and new browser 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 and new browser windows


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=""
onClick="NewWin=window.open('#drawingimagedir#/#drawing#','NewWin','toolbar=
no,scrollbars=auto,width=660,height=505');"

The problem I have now is that some of the full size images require a
"drawing legend" to be opened also...  can anyone offer any suggestions on
how to cause two new windows to be opened upon a click... and the order is
important also... must open the full size drawing above and then open
another new window with the legend or any other creative ideas on how to
accomplish this...

thanks
Jay


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: CF and new browser windows

2000-05-15 Thread Jay Wigginton

Ok... I think I have gotten past the problem I had with the legend window...
but now I was wondering if someone can tell me how or if a new window can be
forced to stay "on top" of the current browser window and always visible...
Is the something to add to the parameters of the


onClick="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 browser windows


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=""
onClick="NewWin=window.open('#drawingimagedir#/#drawing#','NewWin','toolbar=
no,scrollbars=auto,width=660,height=505');"

The problem I have now is that some of the full size images require a
"drawing legend" to be opened also...  can anyone offer any suggestions on
how to cause two new windows to be opened upon a click... and the order is
important also... must open the full size drawing above and then open
another new window with the legend or any other creative ideas on how to
accomplish this...

thanks
Jay


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



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 PM
To: [EMAIL PROTECTED]
Subject: CFSCHEDULE QUESTION


This is a multi-part message in MIME format.

--=_NextPart_000__01BFAF71.C798AC20
Content-Type: text/plain;
charset="Windows-1252"
Content-Transfer-Encoding: 7bit



I have several sites that require daily, weekly and monthly updates. I have
written the code to be executed and it works. The problem is I cannot get
CFSCHEDULE to work. I have tired going into the administrator to set the
schedule and it has not worked.

Can anyone help me out with this problem? Has anyone gotten CFSCHEDULE to
work? I know that there is a way to schedule items in NT, can anyone help me
with that.

TIA

DDINC



--=_NextPart_000__01BFAF71.C798AC20
Content-Type: text/html;
charset="Windows-1252"
Content-Transfer-Encoding: quoted-printable

html xmlns:o=3D"urn:schemas-microsoft-com:office:office" =
xmlns:w=3D"urn:schemas-microsoft-com:office:word" =
xmlns=3D"http://www.w3.org/TR/REC-html40"

head
meta http-equiv=3DContent-Type content=3D"text/html; =
charset=3Dwindows-1252"
meta name=3DProgId content=3DWord.Document
meta name=3DGenerator content=3D"Microsoft Word 9"
meta name=3DOriginator content=3D"Microsoft Word 9"
link rel=3DFile-List href=3D"cid:[EMAIL PROTECTED]"
!--[if gte mso 9]xml
 o:OfficeDocumentSettings
  o:DoNotRelyOnCSS/
 /o:OfficeDocumentSettings
/xml![endif]--!--[if gte mso 9]xml
 w:WordDocument
  w:ViewNormal/w:View
  w:Zoom0/w:Zoom
  w:DocumentKindDocumentEmail/w:DocumentKind
  w:EnvelopeVis/
 /w:WordDocument
/xml![endif]--
style
!--
 /* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
{mso-style-parent:"";
margin:0in;
margin-bottom:.0001pt;
mso-pagination:widow-orphan;
font-size:12.0pt;
font-family:"Times New Roman";
mso-fareast-font-family:"Times New Roman";
mso-bidi-font-family:"Times New Roman";}
p.MsoAutoSig, li.MsoAutoSig, div.MsoAutoSig
{margin:0in;
margin-bottom:.0001pt;
mso-pagination:widow-orphan;
font-size:12.0pt;
font-family:"Times New Roman";
mso-fareast-font-family:"Times New Roman";
mso-bidi-font-family:"Times New Roman";}
span.EmailStyle15
{mso-style-type:personal-compose;
mso-ansi-font-size:10.0pt;
mso-ascii-font-family:Arial;
mso-hansi-font-family:Arial;
mso-bidi-font-family:Arial;
color:black;}
span.EmailStyle17
{mso-style-type:personal;
mso-ansi-font-size:10.0pt;
mso-ascii-font-family:Arial;
mso-hansi-font-family:Arial;
mso-bidi-font-family:Arial;
color:black;}
@page Section1
{size:8.5in 11.0in;
margin:1.0in 1.25in 1.0in 1.25in;
mso-header-margin:.5in;
mso-footer-margin:.5in;
mso-paper-source:0;}
div.Section1
{page:Section1;}
--
/style
/head

body lang=3DEN-US style=3D'tab-interval:.5in'

div class=3DSection1

p class=3DMsoNormalspan class=3DEmailStyle15font size=3D2 =
color=3Dblack
face=3DArialspan =
style=3D'font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:
Arial'![if =
!supportEmptyParas]nbsp;![endif]o:p/o:p/span/font/span/p

p class=3DMsoNormalspan class=3DEmailStyle15font size=3D2 =
color=3Dblack
face=3DArialspan =
style=3D'font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:
Arial'![if =
!supportEmptyParas]nbsp;![endif]o:p/o:p/span/font/span/p

p class=3DMsoNormal!--[if supportFields]font color=3Dblackspan=20
style=3D'color:black'span =
style=3D'mso-element:field-begin'/spanspan=20
style=3D"mso-spacerun: yes"=A0/spanAUTOTEXTLIST \s quot;E-mail =
Signaturequot; span=20
style=3D'mso-element:field-separator'/span/span/font![endif]--s=
pan
class=3DEmailStyle17font size=3D2 color=3Dblack face=3DArialspan =
style=3D'font-size:
10.0pt;mso-bidi-font-size:12.0pt;font-family:Arial'I have several sites =
that
require daily, weekly and monthly updates. I have written the code to be
executed and it works. The problem is I cannot get CFSCHEDULE to work. I =
have
tired going into the administrator to set the schedule and it has not =
worked.o:p/o:p/span/font/span/p

p class=3DMsoNormalspan class=3DEmailStyle17font size=3D2 =
color=3Dblack
face=3DArialspan =
style=3D'font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:
Arial'nbsp;o:p/o:p/span/font/span/p

p class=3DMsoNormalspan class=3DEmailStyle17font size=3D2 =
color=3Dblack
face=3DArialspan =
style=3D'font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:
Arial'Can anyone help me out with this problem? Has anyone gotten =
CFSCHEDULE
to work? I know that there is a way to schedule items in NT, can anyone =
help me
with that.o:p/o:p/span/font/span/p

p class=3DMsoNormalspan 

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 manual or scheduled maintenance to delete the files
created. Anyone have any suggestions on how to accomplish this?

thanks
Jay

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



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, and .dcx files

I can verify the datasource in the Cold Fusion administrator but when I try
to open the tables in Studio I get an
error.

Jimmy





--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



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 PROTECTED]
Subject: VisualFoxpro Datasource



Can anyone tell me what is needed to setup a Visual Foxpro datasource?

I have the .dbc, .dct, and .dcx files

I can verify the datasource in the Cold Fusion administrator but when I try
to open the tables in Studio I get an
error.

Jimmy





--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



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 displays
all the numbers entered with a decimal place and a zero added...  2.5
entered displays as 2.5 181 entered displays as 181.0I have never
had this problem before that I can remember   Am I losing my mind here
and just not doing something right?

thanks
Jay

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



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: Onchange submit


I want a form to be submitted when the user makes a change in a select box.
The form name
is "Employeeform". This doesn't work:

SELECT NAME="PayType" ONCHANGE="document.Employeeform.action='index.cfm';
document.Employeeform.submit()"

Why?

Gene Kraybill

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: CFMail issues

2000-03-29 Thread Jay Wigginton

Well... I found that the problem was in the ones that were phone numbers
instead of email addresses... they contained dashes which for some reason
was being misinterpreted by CF as an arithmetic operator... just another
thought... :)

Jay

 -Original Message-
 From: John Tierney [mailto:[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 28, 2000 4:32 PM
 To: [EMAIL PROTECTED]
 Subject: RE: CFMail issues


 I have come upon this error and found it to be related to
 information in the
 database that I was querying email address from the email
 address field
 had some invalid email addresses in them... some had spaces and
 others were
 phone number... I removed the invalid email addresses from the
 database and
 my cfmail query worked just fine...  worked for me at least  G

 jay

 -Original Message-
 From: John Tierney [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, March 28, 2000 2:00 PM
 To: Cf-Talk@Houseoffusion. Com
 Subject: CFMail issues


 Hi,
 Im having weirdness using cfmail on our installation on NT
 I get this error:
 unknown exception condition

 TagCFMail::sendMessage

  The error occurred while processing an element with a general
 identifier of
 (CFMAIL), occupying document position (9:1) to (9:105) in the
 template file

 Has anyone seen this?




 John J. Tierney
 Web Application Developer 
 Information Artist
 Dreamscape Online LLC.
 315.437.4166
 http://www.dreamscape.com


 --
 --
 --
 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
 send a message to [EMAIL PROTECTED] with 'unsubscribe' in
 the body.

 --
 --
 --
 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
 send a message to [EMAIL PROTECTED] with 'unsubscribe' in
 the body.

 --
 
 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.