RE: Populating Text Field from CF-TREE

2001-04-03 Thread David Shadovitz
I think many CF programmers have abandoned CFTREE in favor of JS/DHTML trees precisely because Allaire did not provide access to CFTREE's onclick event. However, it is possible to trap the CFTREE form submittal and get at the selected node. Here's one way: * Add a 2nd submit button to the

RE: Reading a text file

2001-04-03 Thread Thomas Chiverton
CFFILE ACTION="Read" File="\textfiles\email.txt" Varable="emailvar" action="ReadBinary" may help when reading files which arn't 100% ASCII. ~~ Structure your ColdFusion code with Fusebox. Get the official book at

RE: Is this a virus? - the outcome ...

2001-04-03 Thread Mike Kear
The outcome of today's little adventure . . . I removed the virus I had (backdoor-G2.svr.gen) Mr McAfee found for me, and most of the problems I'd been having went away, but not the server problem described below. I guess if the virus caused the damage, it had remained. So after reinstalling

RE: returns in text boxes?

2001-04-03 Thread Bill Davies
Use HTML textarea tag and CF ParagraphFormat() for output - depends a bit on db and platform but works most of the time. -Original Message- From: Jeff Fongemie [mailto:[EMAIL PROTECTED]] Sent: 02 April 2001 23:53 To: CF-Talk Subject: returns in text boxes? Hello all, Is there a way

Re: returns in text boxes?

2001-04-03 Thread Tom Espen Pedersen
We use : #paragraphformat(evaluate(DE(replace(string, chr(13), "BR", "All"# it works for us :) Sincirely Tom Espen Pedersen [EMAIL PROTECTED] developer @ pixelduck.com - Original Message - From: "Bill Davies" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, April

Re: Caching Query vs. Setting Application Var

2001-04-03 Thread Mark Woods
both methods put the data in memory so from an efficiency point of view, both should be pretty much the same. Query caching is a much simpler method of achieving the required result. If you store the query structure as an application variable, when does it get updated?? At least with Query

Re: Caching Query vs. Setting Application Var

2001-04-03 Thread Dave Hannum
Hey, this is NT. It gets restarted almost daily - so that's when the Application variables would get reset - LOL. Really, not more than once a quarter would this need to be updated. Seriously, I have used the CACHEDWITHIN method, but I was just wondering if anybody thought setting the

multiple file upload in the same time..

2001-04-03 Thread paul .
well Guys i need to know how to upload two files at the same time.. have done one file at a time. please do help -paul Get 250 color business cards for FREE! at Lycos Mail http://mail.lycos.com/freemail/vistaprint_index.html ~~ Structure your

CFUSION\MAIL\UNDELIVR

2001-04-03 Thread Guy J. McDowell
Hope someone can respond to me off list, this is pretty urgent. Something in C:\CFUSION\MAIL\UNDELIVR is really bunging up my developing station. Something about too many files named index, yet all files in this directory have numeric names. There are some 1,000 or so files in this directory.

RE: multiple file upload in the same time..

2001-04-03 Thread Philip Arnold - ASP
well Guys i need to know how to upload two files at the same time.. have done one file at a time. Just have more than one Image type field and more than one CFFile - if needs be, loop them Philip Arnold Director Certified ColdFusion Developer ASP Multimedia Limited T: +44 (0)20 8680 1133

RE: support for unicode in CF5?

2001-04-03 Thread Peter J. MacDonald
Kay, It was at a Partner seminar that I went to last week this was what they laid out. It was also announced that way at the Developer conference back in November. Thank You, Peter Peter J. MacDonald II Creative Computing, Inc. 100 Middle Street Lincoln, RI 02865 Phone: 401.727.0183 x123 Fax:

RE: CFCOOKIE and other domains?

2001-04-03 Thread Philip Arnold - ASP
I know this has come up before; poked around the archives a bit; but what was there didn't help me. I'm trying to, from a page on one domain, to set a cookie that a page on ANOTHER domain can read. I've tried all sorts of combos of CFCOOKIE, using the "DOMAIN='domain.com'", setting "domain"

RE: CFUSION\MAIL\UNDELIVR

2001-04-03 Thread Philip Arnold - ASP
Hope someone can respond to me off list, this is pretty urgent. Something in C:\CFUSION\MAIL\UNDELIVR is really bunging up my developing station. Something about too many files named index, yet all files in this directory have numeric names. There are some 1,000 or so files in this

RE: multiple file upload in the same time..

2001-04-03 Thread Steve Martin
Have more than 1 input type="file"... in the same form on a page and use the corresponding number of cffile action="upload"... on the action page. Steve -Original Message- From: paul . [mailto:[EMAIL PROTECTED]] Sent: 03 April 2001 13:44 To: CF-Talk Subject: multiple file upload in

Re: (Must read)returns in text boxes?

2001-04-03 Thread mahmad
Hi jeff i m sending a file . use it ,it is ok for u. Ok (See attached file: Ard.zip) Jeff Fongemie

RE: (Must read)returns in text boxes?

2001-04-03 Thread Philip Arnold - ASP
i m sending a file . use it ,it is ok for u. Ok (See attached file: Ard.zip) CF-Talk stops attachments - if you want someone to get the attachment, either upload and provide a link, or send it directly to the person Philip Arnold Director Certified ColdFusion Developer ASP Multimedia

(XML) Visual Representations of DTDs

2001-04-03 Thread Eric Dawson
(XML) Visual Representations of DTDs I am doing some use cases for sports scheduling and results. In places where the database schema may change depending on sport or specific use case, I generically created an "XML" field for that type of data. (Note: This is just in my head for thinking

directories off of inetpub...

2001-04-03 Thread Douglas Knudsen
I am building a set of servers for the first time for use as ColdFusion severs. We are using NT4. When IIS is installed, the inetpub directory is created with a wwwroot and scripts directory. Having more experience with Apache and Unix variants, I have no clue as to what/why this directory

CF Mail Error

2001-04-03 Thread Larry C. Lyons
I've just run across this error that I've never seen before. Anyone know what it means and how to correct it? Error Diagnostic Information unknown exception condition TagCFMail::sendMessage The error occurred while processing an element with a general identifier of (CFMAIL), occupying document

Re: Caching Query vs. Setting Application Var

2001-04-03 Thread Edward Smith
I'd vote for a cached query. You wouldn't need to recode very much at all - just a simple search and replace across files should do it, and the biggie: you wouldn't need to lock every access. Dave Hannum wrote: Hey, this is NT. It gets restarted almost daily - so that's when the

Re: CF Mail Error

2001-04-03 Thread Dave Hannum
I believe that's caused when you try to do a improperly nested output inside your CFMAIL tag. Dave - Original Message - From: "Larry C. Lyons" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, April 03, 2001 10:19 AM Subject: CF Mail Error I've just run across this

RE: CF Mail Error

2001-04-03 Thread Philip Arnold - ASP
I've just run across this error that I've never seen before. Anyone know what it means and how to correct it? Error Diagnostic Information unknown exception condition TagCFMail::sendMessage The error occurred while processing an element with a general identifier of (CFMAIL), occupying

RE: CFUSION\MAIL\UNDELIVR

2001-04-03 Thread Mark Woods
I'm sure there is something available in the dev exchange that does this (and more). At 02:08 PM 4/3/2001, you wrote: Hope someone can respond to me off list, this is pretty urgent. Something in C:\CFUSION\MAIL\UNDELIVR is really bunging up my developing station. Something about too

Displaying yes/no field dynamically in checkboxes?

2001-04-03 Thread [EMAIL PROTECTED] Ayers
Friends, I would much appreciate any help with a problem I'm stuck on. I'm writing a page that will allow my client to edit a record. I've got it so that the page queries the table and inserts the values from the record specified by the numeric variable passed to it. The numeric fields, text

Displaying yes/no field dynamically in checkboxes

2001-04-03 Thread [EMAIL PROTECTED] Ayers
Friends, I would much appreciate any help with a problem I'm stuck on. I'm writing a page that will allow my client to edit a record. I've got it so that the page queries the table and inserts the values from the record specified by the numeric variable passed to it. The numeric fields, text

RE: CFUSION\MAIL\UNDELIVR

2001-04-03 Thread Bryan Laplante
search for CF_ResendUndeliverableMail2 on Allaire dev exchange -- Original Message -- From: Mark Woods [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date: Tue, 03 Apr 2001 15:31:56 +0100 I'm sure there is something available in the dev exchange that

Re: CF Mail Error

2001-04-03 Thread Dain Anderson
This is a known bug, and there is a fix for it at: http://www.allaire.com/Handlers/index.cfm?ID=15821Method=Full Dain Anderson Caretaker, CF Comet http://www.cfcomet.com/ - Original Message - From: "Larry C. Lyons" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday,

RE: Displaying yes/no field dynamically in checkboxes?

2001-04-03 Thread Jason Lees (National Express)
try something like this. input type="checkbox" name="cabinPets" value="#cabinPets#" cfif #ucase(Cabinpets)# eq "YES"Checked/cfif Jason Lees National Express Email : [EMAIL PROTECTED] -Original Message- From: P@tty Ayers [mailto:[EMAIL PROTECTED]] Sent: 03 April 2001 14:22 To:

Re: support for unicode in CF5?

2001-04-03 Thread Kay Smoljak
On Tue, 03 Apr 2001 08:54:56 -0400, "Peter J. MacDonald" [EMAIL PROTECTED] wrote: Kay, It was at a Partner seminar that I went to last week this was what they laid out. It was also announced that way at the Developer conference back in November. Thank You, Peter Well in that case I guess

RE: Displaying yes/no field dynamically in checkboxes?

2001-04-03 Thread James Maltby
You need to add a cfif sub-clause in your code: e.g. input type="checkbox" name="cabinHottub" value="#cabinHottub#" cfif #cabinHottub# eq "x"checked/cfif Where "x" is the value passed from your database. Try that out James Remember amateurs built the ark... Professionals built the Titanic

Re: CF Mail Error

2001-04-03 Thread Larry C. Lyons
Dave, Thanks, but I'm not sure where the improperly nested output is. Here's a snippet of the code: CFMAIL QUERY="request.AccCart" FROM="XX" TO="#attributes.email#" SUBJECT="Your On-Line Catalog Order" From: ACC Online Catalog To: #attributes.firstname#

Looping through a Query in CFSCRIPT

2001-04-03 Thread Jason Lees (National Express)
Hi all, Is it possible to loop through the results of a CFQuery structure? and Has anybody got an example of how its done TIA. Jason Lees National Express Email : [EMAIL PROTECTED] ### This document is intended for, and should only be read

Re: Displaying yes/no field dynamically in checkboxes

2001-04-03 Thread Chris Michl
input type="checkbox" name="cabinVCR" value="#cabinVCR#"cfif Not CompareNoCase(rsEdit.CabinVCR,"yes") checked - Original Message - From: "P@tty Ayers" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, April 03, 2001 9:45 AM Subject: Displaying yes/no field dynamically in

Re: CF Mail Error

2001-04-03 Thread Melissa Fraher
Larry - Take a look at http://www.allaire.com/Handlers/index.cfm?ID=15821Method=Full I believe that this is a known CFMail issue and you either need to install a patch or upgrade to CF4.5.1 SP2. Melissa "Larry C. Lyons" wrote: I've just run across this error that I've never seen before.

RE: Caching Query vs. Setting Application Var

2001-04-03 Thread mjohnson
Why not datawarehouse the information your really need? If the information can be cached chances are it is pretty static. You might be able to do nightly batches of the information to another database table. Mark -Original Message- From: Edward Smith [mailto:[EMAIL PROTECTED]] Sent:

RE: directories off of inetpub...

2001-04-03 Thread Dave Watts
I am building a set of servers for the first time for use as ColdFusion servers. We are using NT4. When IIS is installed, the inetpub directory is created with a wwwroot and scripts directory. Having more experience with Apache and Unix variants, I have no clue as to what/why this

Re: directories off of inetpub...

2001-04-03 Thread Tony Schreiber
Think of wwwroot as htdocs and scripts as cgi-bin... I don't use IIS anyway, but I tend to blow away to default directories on any server I use. ;p I am building a set of servers for the first time for use as ColdFusion severs. We are using NT4. When IIS is installed, the inetpub directory

RE: Displaying yes/no field dynamically in checkboxes?

2001-04-03 Thread Hayes, David
For a checkbox handling a yes/no column (or a bit column), you want the value attribute of the checkbox to always be "yes" (or 1 or on or true or whatever works for your db). If the current value in the db is yes, you include include the Checked attribute in your checkbox tag, e.g. input

Re: CF Mail Error

2001-04-03 Thread Larry C. Lyons
Thanks Dain, I shall give it a try. larry Dain Anderson wrote: This is a known bug, and there is a fix for it at: http://www.allaire.com/Handlers/index.cfm?ID=15821Method=Full Dain Anderson Caretaker, CF Comet http://www.cfcomet.com/ - Original Message - From: "Larry C.

RE: Displaying yes/no field dynamically in checkboxes

2001-04-03 Thread Nathan Stanford
Here is one way you can do one. I will let you do the rest. tdVCR:/td td cfif #cabinVCR# eq 1 input type="checkbox" name="cabinVCR" checked cfelse input type="checkbox" name="cabinVCR"

RE: Displaying yes/no field dynamically in checkboxes

2001-04-03 Thread Peter J. MacDonald
You will need to do a cfif around SELECTED. input type="checkbox" name="cabinDishwasher" cfif #cabindishwasher# IS 1SELECTED/cfif Thank You, Peter Peter J. MacDonald II Creative Computing, Inc. 100 Middle Street Lincoln, RI 02865 Phone: 401.727.0183 x123 Fax: 401.727.4998 Portable:

RE: Displaying yes/no field dynamically in checkboxes?

2001-04-03 Thread Peter J. MacDonald
Jason is right it is checked not select, that is select type for options. Thank You, Peter Peter J. MacDonald II Creative Computing, Inc. 100 Middle Street Lincoln, RI 02865 Phone: 401.727.0183 x123 Fax: 401.727.4998 Portable: 401.965.3661 E-MAIL: [EMAIL PROTECTED] Web Page: www.creatcomp.com

Re: Displaying yes/no field dynamically in checkboxes?

2001-04-03 Thread Frank Hilliard
Hi Patty, Use a CFIF statement around the checkbox option CHECKED. If variable is 1 CHECKED, CFELSE empty. Frank Hilliard "P@tty Ayers" wrote: Friends, I would much appreciate any help with a problem I'm stuck on. I'm writing a page that will allow my client to edit a record. I've got

RE: directories off of inetpub...

2001-04-03 Thread JustinMacCarthy
it? Is it synonymous to cgi-bin in Unix? Yes it is IIS installs a lot of crap, and the more you upgrade/ service pack the more crap you get ... You can remove the scripts directory , the reference to it in IIS Also remove any documentation directories, CFDOCS etc.. FRontpage also installs many

RE: Displaying yes/no field dynamically in checkboxes?

2001-04-03 Thread Lamon, Alec
P@tty, Checkboxes work a bit differently. You'll need to use a simple cfif statement to set the checked property of the different checkboxes: tdHot tub:/td td input type="checkbox" name="cabinHottub" cfif rsEdit.cabinHottub EQ 1CHECKED/cfif" /td So if the value of

Re: CF Mail Error

2001-04-03 Thread Alexandre Dornback
I was getting that and resolved it by freeing up disk space... I guess CF doesn't like having only 50k free on c: Melissa Fraher [EMAIL PROTECTED] 04/03/01 08:06 AM Larry - Take a look at http://www.allaire.com/Handlers/index.cfm?ID=15821Method=Full I believe that this is a known CFMail

Re: CF Mail Error

2001-04-03 Thread Dave Hannum
Everything in the CFOUTPUT tags is choking it. You see, CFMAIL is itself an output tag. So just scope your variables (as you have) and CFMAIL will pick them up from the correct query. Dave - Original Message - From: "Larry C. Lyons" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED]

RE: Displaying yes/no field dynamically in checkboxes

2001-04-03 Thread Kelly Matthews
input type="checkbox" name="whatever" value="1" CFIF query.whatever EQ 1CHECKED/CFIFYes input type="checkbox" name="whatever" value="0" CFIF query.whatever EQ 0CHECKED/CFIFNo -Original Message- From: P@tty Ayers [SMTP:[EMAIL PROTECTED]] Sent: Tuesday, April 03, 2001 10:45 AM To:

Re: CF Mail Error

2001-04-03 Thread Dave Hannum
Now, one other thing. if you have multiple items to loop over in your output, you can do a GROUP attribute in the CFMAIL, then put your CFOUTPUT inside, and it will be nested properly. Again, CFMAIL is a CFOUTPUT, so it acts the same. Dave - Original Message - From: "Larry C. Lyons"

Re: Looping through a Query in CFSCRIPT

2001-04-03 Thread Dain Anderson
Jason, You could use something like this: code ... cfscript for (i = 1; i LTE myQuery.RecordCount; i = i + 1) { WriteOutput(" tr td#myQuery.Column1[i]#/td td#myQuery.Column2[i]#/td td#myQuery.Column3[i])#/td td#myQuery.Column4[i])#/td /tr

Re: Looping through a Query in CFSCRIPT

2001-04-03 Thread Joe Sheble aka Wizaerd
Here's an example: CFQUERY NAME="qTest" DATASOURCE="#DSN_Name#" USERNAME="#DSN_Username#" PASSWORD="#DSN_Password#" SELECT ID, Option_Desc FROM Forecast.dbo.Options ORDER BY ID /CFQUERY CFSCRIPT for( x = 1; x LTE qTest.RecordCount; x=x+1 ) { WriteOutput(

Do I need to run ColdFusion IDE Service?

2001-04-03 Thread Jeff Small
I'm running Windows98 with personal web server and ColdFusion 4.0 (PLEASE PLEASE PLEASE, no jokes. I'm working in an ad agency where I'm the ONLY Windows machine in the place, so I take what I can and run with it, I'm lucky to have this...) But a friend of mine was saying that I don't even need

RE: Looping through a Query in CFSCRIPT

2001-04-03 Thread Jason Lees (National Express)
Thanks for all the help, I've tried the solution and it works, I forgot that effectivly the query is a structured array. I need a break/holiday or caffine injection. Jason Lees National Express Email : [EMAIL PROTECTED] -Original Message- From: Hayes, David [mailto:[EMAIL

WAP Error

2001-04-03 Thread Mike
web service problem: Please Try Again 1015:Invalid content type And we have had the server administrator set our mime types I Suppose there is a chance it's not right Any idea will be appreciated Thanks Mike ~~ Structure your ColdFusion

RE: CF Mail Error

2001-04-03 Thread SHEETS, DAYV (PB)
Hello, I am attempting to put into effect error handling on my 404 pages so that it emails me (via cfmail). I am using the following code to generate this: snip CFSET #address# = "#cgi.remote_addr#" CFSET #host# = "#cgi.remote_host#" CFSET #referer# = "#cgi.http_referer#" CFSET #agent# =

404 Page

2001-04-03 Thread SHEETS, DAYV (PB)
Hello, I am attempting to put into effect error handling on my 404 pages so that it emails me (via cfmail). I am using the following code to generate this: snip CFSET #address# = "#cgi.remote_addr#" CFSET #host# = "#cgi.remote_host#" CFSET #referer# = "#cgi.http_referer#" CFSET #agent# =

RE: WAP Error

2001-04-03 Thread Dylan Bromby
try using CFCONTENT to set the content type in the CFM page itself. -Original Message- From: Mike [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 03, 2001 11:54 AM To: CF-Talk Subject: WAP Error web service problem: Please Try Again 1015:Invalid content type And we have had the

RE: WAP Error

2001-04-03 Thread Dylan Bromby
figued i'd post the actual code in case you don't have the MIME type handy; CFCONTENT TYPE="text/vnd.wap.wml" make sure it's the first line in the page. -Original Message- From: Dylan Bromby [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 03, 2001 9:11 AM To: CF-Talk Subject: RE: WAP

RE: WAP Error

2001-04-03 Thread Edward Chanter
did you try it under different devices?? I get that message on my new Nokia 6210 but on the old Nokia 7110 it works. I think WAP should be re-named "Weird Application Protocol" :-) best wishes, -= Ed Problems cannot be solved at the same level of awareness which

Re: 404 Page

2001-04-03 Thread Tony Schreiber
Before anyone harps on your for this, the preferred syntax is: CFSET address = cgi.remote_addr, no # needed. CFSET host = "unknown" CFSET example = "#var# is this" or CFSET example = var " is this" Also to test for empty strings, some people will say it's faster to do CFIF LEN(referer)...

RE: 404 Page

2001-04-03 Thread Kelly Matthews
The referer is the page they came FROM. Meaning if they click a link and that is not found you will get the page they clicked the actualy link, not the missing page. I have a similar script set up. When the referer is blank I know they were going DIRECTLY to that page by typing in the URL, when

list help

2001-04-03 Thread Jay Patton
hello all, i was wondering if someone might be able to help me with this. im new to CF and dont totally understand list yet. (im not even sure if this is the rite way to go about this but...) im using the following query to get each contestant that has been in two or more different events.

Cookie

2001-04-03 Thread Brad Squires
I am having a problem setting a cookie for less than a day with Cold Fusion. I am using the cfcookie tag with a CreateTimeSpan(0,2,0,0) expire attribute. The documentation is fairly unclear (what do you know!) and it says the expire="" attribute takes a numeric value for # of days, but I want a 2

Thank you!

2001-04-03 Thread [EMAIL PROTECTED] Ayers
To all who helped with my problem - very quickly, and consistently! - Corina, Jason, James, David, Nathan, Peter, Frank, Alec, and Kelly - thank you *very* much! It worked perfectly for me. What a great list. P@tty Ayers Dreamweaver Resources, FAQs, and Tutorials:

Re: Cookie

2001-04-03 Thread Frank Hilliard
Just eliminate the expires part of the code. The Cookie will expire with the browser session. Frank Hilliard I am having a problem setting a cookie for less than a day with Cold Fusion. I am using the cfcookie tag with a CreateTimeSpan(0,2,0,0) expire attribute. The documentation is fairly

Password Protection Edit Scheme?

2001-04-03 Thread Jeff Fongemie
Hello cf-talk, I need to build a site, where records will display content for users. Each user has their own record. What is the best way to provide password access for the use so they can access a form to change only their record? One way I was thinking of, would be just using a

Re: Password Protection Edit Scheme?

2001-04-03 Thread Clint Tredway
That is exaclty how you would do it. -- Original Message -- From: Jeff Fongemie [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date: Tue, 03 Apr 2001 13:43:44 -0400 Hello cf-talk, I need to build a site, where records will display content for users.

RE: [Oracle Auto-Increment]

2001-04-03 Thread Braver, Ben
Hi Jamie, Oracle DOES have an auto-increment feature: see CREATE SEQUENCE and also the pseudo-columns NEXTVAL and CURRVAL in any Oracle reference book. If you still have questions, email me... Ben Braver Information Technology Ultramar Inc. Golden Eagle Refinery 150 Solano Way Martinez, CA

(Windows NT error number 16389 occurred)

2001-04-03 Thread Alexandre Dornback
"Error attempting to write location redirection to web server (Windows NT error number 16389 occurred)" What is this? What does this mean? ~~ Structure your ColdFusion code with Fusebox. Get the official book at

RE: Cookie

2001-04-03 Thread Peter J. MacDonald
Brad, Change the code to this cfcookie name="chocolcateChip value="1" expires="#CreateTimeSpan("0","0","120","0")#" The third spot is minutes. The Thank You, Peter Peter J. MacDonald II Creative Computing, Inc. 100 Middle Street Lincoln, RI 02865 Phone: 401.727.0183 x123 Fax: 401.727.4998

OT: Posting screenshots

2001-04-03 Thread C. Hatton Humphrey
Hi folks, I know that this is something that is going to need to be handled client-side, hence the OT. I'm working on an internal project/task/time management system that has recently had quality assurance (read: bug tracking) capabilities incorporated. In the past our testers (and in some

Server Time is not the same as CF time

2001-04-03 Thread Chad Gray
This is strange. The time on the NT 4.0 server says 9:00am. When i do a #timeformat(now(), "h:mm tt")# function in CF code i get 8:00am. Does CF Server use the clock off the NT server or does it have it's own clock? ~~ Structure your

RE: Do I need to run ColdFusion IDE Service?

2001-04-03 Thread Peter J. MacDonald
Jeff, I ran CF 4.5 on win 98 fine for over six months. The only thing that I had to have running for it to work was PWS, CF RDS, and CF Server. The only real issue I had was that CF Studio would crash a couple of time a day. I was running on a P2 166 with 80 megs of ram. I think the crashing

Need to find ISBN book database service with XML...

2001-04-03 Thread ron
Does anyone know of service that will return book titles, authors, and years of publications given an ISBN number? Ideally with the results returned in XML? Google searches have turned up zilch. I've looked at Amazon's search result page, but parsing out those values will be very difficult due

Re: Server Time is not the same as CF time

2001-04-03 Thread Edward Smith
CF 4.0x, right? This is a bug in VC++ (http://msdn.microsoft.com/visualc/headlines/2001.asp ) which expected DST to switch over on April 8th, not April 1st. It will last until the 8th, when all will be better. The workaround is to uncheck the "automatically sdjust clock for daylight savings

RE: 404 Page

2001-04-03 Thread SHEETS, DAYV (PB)
Kelly, Thanks, but I did test this out from a referring page and I still receive the same error. Do you have a sample you can provide me with that works? Thanks again! Dayv -Original Message- From: Kelly Matthews [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 03, 2001 9:34 AM To:

RE: Posting screenshots

2001-04-03 Thread Phoeun Pha
go to www.download.com, and check out screenImg 1.0 (shareware) this program takes screenshots and saves them as jpegs to the hard drive (u specify it in the preferences). this is how i would approach this. u build an interface for reporting bugs, and have an upload file thingy. have the

RE: Need to find ISBN book database service with XML...

2001-04-03 Thread Hayes, David
Try the Library of Congress (http://catalog.loc.gov/help/command.htm); you can do the search on ISBN. You'll still need to parse out the data, but the results layout should be more friendly than Amazon. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday,

Re: Server Time is not the same as CF time

2001-04-03 Thread Chad Gray
Ya CF4.0, Thanks for the tip! At 01:22 PM 4/3/01 -0500, you wrote: CF 4.0x, right? This is a bug in VC++ (http://msdn.microsoft.com/visualc/headlines/2001.asp ) which expected DST to switch over on April 8th, not April 1st. It will last until the 8th, when all will be better. The

RE: Do I need to run ColdFusion IDE Service?

2001-04-03 Thread Phoeun Pha
Studio has bad memory management, thats what i heard -Original Message- From: Peter J. MacDonald [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 03, 2001 12:57 PM To: CF-Talk Subject: RE: Do I need to run ColdFusion IDE Service? Jeff, I ran CF 4.5 on win 98 fine for over six months.

RE: Posting screenshots

2001-04-03 Thread C. Hatton Humphrey
Phoeun, Thanks for the suggestion, but maybe I didn't quite phrase the question fully. We already have a file upload section. What I've been asked is for a way to attach an image *without* using a file input. In other words, they don't want to have to go through the trouble of creating a file

RE: Stupid Question? - Commenting Code That Does Not Show in Browser

2001-04-03 Thread C. Hatton Humphrey
Cold Fusion comments (ones that have three hyphens, !--- ---) don't show in the browser because the CF server does not send them through to the web server. Regular HTML comments (ones that have only two hyphens, !-- --) do get sent through. HTH Hatton -Original Message- From: [EMAIL

Re: [Stupid Question? - Commenting Code That Does Not Show in Browser]

2001-04-03 Thread Alex
! COMMENT -- [EMAIL PROTECTED] wrote: I want to place comments in the code for the other developers. However I do not want the comments to show up in the browser with "view source." Am I totally overlooking something? Thanks, Jeff

RE: Stupid Question? - Commenting Code That Does Not Show in Brow ser

2001-04-03 Thread Adkins, Randy
Comments will only show in the 'View Source' when you prefix the information with two hyphens. !-- THIS SHOWS IN BROWSER -- !--- THIS DOES NOT SHOW IN BROWSER --- -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 03, 2001 2:35 PM To: CF-Talk

RE: Stupid Question? - Commenting Code That Does Not Show in Brow ser

2001-04-03 Thread McGuckin, Chris
Use ColdFusion comment Tags (!--- Comment ---). The CF Server processes them so they don't show up like normal html comments (!-- comment --). Christopher McGuckin DynCorp IET, Inc. (703) 264-9247 "Outside of a dog, a book is man's best friend. Inside of a dog it's too dark to read". -Groucho

Re: Stupid Question? - Commenting Code That Does Not Show in Browser

2001-04-03 Thread Steven A. del Sol
If you are using CF just put in three dashes instead of two... !--- Code At 12:34 PM 4/3/2001 -0600, you wrote: I want to place comments in the code for the other developers. However I do not want the comments to show up in the browser with "view source." Am I totally overlooking

RE: Stupid Question? - Commenting Code That Does Not Show in Brow ser

2001-04-03 Thread Kelly Matthews
are you using !-- test --or !--- test ---use 3 dashes the other is to comment out HTML code that you WANT people to see in the source. 3 dashes HIDES it. -Original Message- From: [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED]] Sent: Tuesday, April 03, 2001 2:35 PM To: CF-Talk Subject:

RE: Stupid Question? - Commenting Code That Does Not Show in Brow ser

2001-04-03 Thread Phoeun Pha
this is what i would do. u will have to work a login page (u decide how to verify it). all this login page will do is set a session or application variable to true, or some value. then in your actual code, i would wrap a condition around your comment, to only let the comment show (on the

verity and pdf's

2001-04-03 Thread Jason Egan
In a PDF document (office documents as well) you can set document information - description, author, keywords, title, etc... Using verity I can pull the TITLE just fine, but I can't seem to access the KEY WORDS section... I would think that if the title is available to verity then the keywords

RE: Need to find ISBN book database service with XML...

2001-04-03 Thread ron
Try the Library of Congress (http://catalog.loc.gov/help/command.htm); you can do the search on ISBN. You'll still need to parse out the data, but the results layout should be more friendly than Amazon. Thanks, David... great resource, but about 90% of the time there I'm getting a "too many

RE: Posting screenshots

2001-04-03 Thread Phoeun Pha
dude, whats so HARD about pressing a button that makes the screenshot and saves it automatically somehwere that can be found easily, then uploaded? if u still dont wanna go that route, i was thinking maybe make a java applet that acts like a simple graphics program and peeps and just paste

Re: Stupid Question? - Commenting Code That Does Not Show in Browser

2001-04-03 Thread Larry W. Virden
ColdFusion has its own commenting notation that is removed before the HTML is sent back to the user. -- Larry W. Virden URL: mailto:[EMAIL PROTECTED] URL: http://www.purl.org/net/lvirden/ Even if explicitly stated to the contrary, nothing in this posting should be construed as representing my

Re: Stupid Question? - Commenting Code That Does Not Show in Browser

2001-04-03 Thread Bobbi Fox
At 12:34 PM 4/3/01 -0600, [EMAIL PROTECTED] wrote: I want to place comments in the code for the other developers. However I do not want the comments to show up in the browser with "view source." Am I totally overlooking something? Yep. use three hypens in your comments: !--- this is a Cold

RE: Stupid Question? - Commenting Code That Does Not Show in Brow ser

2001-04-03 Thread Phoeun Pha
ack! i didn't know that! ::dies:: sorry jeff, i guess the CF hyphen thing is much easier to implement than what i posted earlier! I learned something today! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 03, 2001 1:50 PM To: CF-Talk

Uploading a Zip file with cfhttp

2001-04-03 Thread Nathan
Hello all, I have hit was has proved to be an annoying little hurtle. I have a .zip file which is normally manually uploaded to another server via a form. But, they now want this to happen automatically every night so I switched the process to use cfhttp. However, the pesky little

RE: Stupid Question? - Commenting Code That Does Not Show in Brow ser

2001-04-03 Thread Dylan Bromby
whoever asked this question or is interested in a useful answer - ignore the response below. use the !--- --- vs. !-- -- as many experienced CF developers have already posted in this thread. -Original Message- From: Phoeun Pha [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 03, 2001

RE: Posting screenshots

2001-04-03 Thread C. Hatton Humphrey
dude, whats so HARD about pressing a button that makes the screenshot and saves it automatically somehwere that can be found easily, then uploaded? if u still dont wanna go that route, i was thinking maybe make a java applet that acts like a simple graphics program and peeps and just paste

RE: verity and pdf's

2001-04-03 Thread Tumy, Brad
Jason, I believe Index server would take care of this for you. Brad -Original Message- From: Jason Egan [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 03, 2001 2:54 PM To: CF-Talk Subject: verity and pdf's In a PDF document (office documents as well) you can set document information

RE: Uploading a Zip file with cfhttp

2001-04-03 Thread Tumy, Brad
Can you write a script that performs the action you want...and then schedule it to occur every night? NT Scheduler...or cron... -Original Message- From: Nathan [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 03, 2001 3:09 PM To: CF-Talk Subject: Uploading a Zip file with cfhttp Hello

Re: Stupid Question? - Commenting Code That Does Not Show in Browser

2001-04-03 Thread Jeffry Houser
!-- -- (HTML comment, two dashes) !--- --- (ColdFusion comment, three dashes) I have no idea if this is documented anywhere, but I imagine it must be. I figured it out accidently. At 12:34 PM 04/03/2001 -0600, you wrote: I want to place comments in the code for the other developers.

  1   2   3   >