RE: Populating Text Field from CF-TREE

2001-04-02 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 CFF

Entering ' & # into a Access database

2001-04-02 Thread neverlive
Hello All, I know this has probably been covered before so if there is an article or quick fix please let me know. I have a number form fields that may contain the characters ' and # and are to be submitted into a MS Access text field. What is the best way check for them and to reatin these char

Re: support for unicode in CF5?

2001-04-02 Thread Kay Smoljak
Hi, That's really good... if you don't mind me asking, where did you get this info? Is it reliable? Thanks, Kay. __ Kay Smoljak - HTML/ColdFusion Developer - PerthWeb Pty Ltd Internet Solutions for your business! Level 9/105 St George's Tc -

Re: Is this a virus?

2001-04-02 Thread Michael Dinowitz
Its either a messed up CF server or you've got a template that's running wild. Check the scheduler for any processes that look strange. Then check all your application.cfm files for any CFMAIL or includes that may be CFMAIL. If someone slipped a 'template virus' onto your machine it can be hunted

Reading a text file

2001-04-02 Thread Michael Gribbin
Hi, I'm trying to read a text file of undeliverable emails that are returned and stored in "Microsoft Outlook Express" for Mac. The emails are in a flat file with rows of "square boxes" being used to seperate the individual email in the file. I can open the file with a text editor, but when I ftp

Is this a virus?

2001-04-02 Thread Michael Kear
Is this a virus? My desktop version of CF Server on my development machine is sending emails - hundreds of them - and they're filling up the undelivr folder, because they're all zero size files. They're coming at the rate of 5-10 a second and when I have the server going (I have it turned off

Re: returns in text boxes?

2001-04-02 Thread Seth Weiss
Personally, I like paragraphformat() as long as it is understood that it converts a single newline pair to white space and a double pair to a p tag. Also, I would think you would have to use at least a virtual or soft wrap attribute otherwise Netscape will just go off the side of the page... Seth

RE: CreateUUID()

2001-04-02 Thread Parker, Kevin
I haven't got the faintest ID how these numbers are generated but when I tried generating some in sequence on my local dev machine they were incremental. But If I waited for a period of time and then did each one they weren't. This suggests that some time factor was involved. Kevin Parker

RE: returns in text boxes?

2001-04-02 Thread Sicular, Alexander
jeff, you need to mess with the wrap attribute of textarea. values are off, soft(virtual), and hard(physical). each has specific meaning in how text is sent to the server. from http://developer.netscape.com/docs/manuals/htmlguid/index.htm: OFF disables word wrap. Text the user types is displa

Re: CFCOOKIE and other domains?

2001-04-02 Thread Scott Weikert
Yeah, I'm finding that out the longer I try and get around it :) Alternate solution... pass a URL variable, and do a little bit of JS on their end to parse out the URL, snag the ID in question, and write it to a cookie right there. Problem solved... --Scott - Original Message - From: "D

RE: returns in text boxes?

2001-04-02 Thread ron
> Is there a way to have a multi-line textbox recognize carriage > returns? I have a couple of sites using a simple form for content > updates and I'd love for my clients to be able to just hit "enter" > and have a new line start that will be recorded in the database, and > then on the f

Re: returns in text boxes?

2001-04-02 Thread Bryan LaPlante
If you can use IE5 just add an editable property to a div tag like so. Then put a textarea in a form and use the onsubmit to fire a script that copies the innerText of the div tag to the innerText of the textarea and submit it to your database table. - Original Message - From: "Jeff Fon

returns in text boxes?

2001-04-02 Thread Jeff Fongemie
Hello all, Is there a way to have a multi-line textbox recognize carriage returns? I have a couple of sites using a simple form for content updates and I'd love for my clients to be able to just hit "enter" and have a new line start that will be recorded in the database, and then on the

RE: CFCOOKIE and other domains?

2001-04-02 Thread Dylan Bromby
it's a security thing. it's the way cookies were designed to work. domains can only read cookies that were set by the same domain. the DOMAIN attribute is not intended to allow you to write cookies for other domains. you use the DOMAIN attribtute to set cookies for 3rd-level domains and higher; y

Re: CFCOOKIE and other domains?

2001-04-02 Thread Scott Weikert
Yeah, but I'm talking completely different domains, servers, etc. We're doing something on one site that we want to stick an ID value into a cookie for the second domain/server, so that those guys can, at their leisure, snag that ID out of the cookie... - Original Message - From: "Brian T

RE: support for unicode in CF5?

2001-04-02 Thread Peter J. MacDonald
6.0 is suppose to be out 6-9 months after the release of 5.0 and 5 is suppose to be out mid - late summer. 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 PROTECT

Re: CFCOOKIE and other domains?

2001-04-02 Thread Brian Thornton
At DoubleClick we use secondary domain cookie. meaning if I set a cookie at www.doubleclick.net, I can read it here at boulder.doubleclick.net... Cookies are only on a primary level and I've developed awesome tracking stuff using this system... _brian - Original Message - From: "Cau

RE: CFCOOKIE and other domains?

2001-04-02 Thread Caulfield, Michael
>>I'm trying to, from a page on one domain, to set a cookie that a page on >>ANOTHER domain can read. For security reasons, you cannot set a cookie that can be read by another domain. There's simply no way (that I know of) that you can do it. The domain is NOT a variable in the cookie -- it is th

CFCOOKIE and other domains?

2001-04-02 Thread Scott Weikert
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" as th

Re: Auto parts database

2001-04-02 Thread French, Donna
I am working on a truck accessory web site too and would like any other info out there on building the most efficient database for this type of product line. I've managed to get the site up and running with a limited number of products but I know there must be a better way. I won't put the URL bu

RE: Cold Fusion Forums

2001-04-02 Thread Benjamin S. Rogers
As you've said, Fuseboxing the site is a good way to break out queries, making it easier to develop and maintain support for multiple RDBMSs. It is also a good way to break out display files. Once that has been done, groups of display files can be made into "themes" and applied fairly easily to a

RE: Variables for shopping cart?

2001-04-02 Thread Hayes, David
Look at listFind and listDeleteAt -Original Message- From: W Luke [mailto:[EMAIL PROTECTED]] Sent: Saturday, March 31, 2001 10:36 AM To: CF-Talk Subject: Variables for shopping cart? Hi, I'm using a basic client variable, client.adshop, to set a list of Advert Numbers (eg 876,567,987,6

RE: Board application that works with ColdFusion?

2001-04-02 Thread Angél Stewart
simplemessageboard. check www.simplemessageboard.com :) -Gel -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Kevin Merker I'm looking for a board / forum application that works with cf. It does not have to be big and bad It will only have to support n

RE: Board application that works with ColdFusion?

2001-04-02 Thread John Fix 3rd
http://www.forumspot.org/ -Original Message- From: Kevin Merker [mailto:[EMAIL PROTECTED]] Sent: Monday, April 02, 2001 5:26 PM To: CF-Talk Subject: Board application that works with ColdFusion? I'm looking for a board / forum application that works with cf. It does not have to be bi

RE: Auto Parts Database?

2001-04-02 Thread Dennis Powers
Karl, I have developed two automotive parts sites at http://www.manhonda.com/store/honda/ and http://www.manhonda.com/store/sports/ which use the schema of their print catalog: accessory type--->accessory sub category ---> accessory then product description and a table for make, model, year ...et

Board application that works with ColdFusion?

2001-04-02 Thread Kevin Merker
I'm looking for a board / forum application that works with cf. It does not have to be big and bad It will only have to support no more than 100 users. Trying to find a shareware or free Custom tag. Please give me some ideas Kevin M ~~ Structu

RE: CreateUUID()

2001-04-02 Thread ron
All you (n)ever wanted to know about GUIDs/UUIDs: http://msdn.microsoft.com/library/books/inole/S10E8.HTM Ron Allen Hornbaker President/CTO Humankind Systems, Inc. http://humankindsystems.com mailto:[EMAIL PROTECTED] > -Original Message- > From: Jeremy Allen [mailto:[EMAIL PROTECTE

RE: CreateUUID()

2001-04-02 Thread Cameron Childress
I have seen very long conversations about this (maybe on fusebox list?). It depends on what OS you are on as to how random it is. On some it's not as random, on others it's really random. I don't particularly care if they are random or not. We primarily use them as PKs, and it's not too import

RE: UPDATE column with NULL values?

2001-04-02 Thread Christian N. Abad
Hey, Folks... I was able to figure this one out. (It actually was working, but I was looking at the incorrect code...) So, this one is solved. Thanks, Christian "It's Monday" Abad ColdFusion Developer -Original Message- From: Christian N. Abad [mailto:[EMAIL PROTECTED]] Sent: Monday,

RE: CreateUUID()

2001-04-02 Thread Jeremy Allen
This is a misleading statement. It depends on several things hwoever I have seen often enough that they are quite sequential and only off by a few hex numbers per UUID. It is even based on the system clock so again I say that its a bad idea to base security on a UUID. Jeremy Allen elliptIQ In

Re: Back-referencing after a REFind to set a variable?

2001-04-02 Thread Judith Campbell
At 04:03 PM 3/30/01 -0500, you wrote: >http://www.houseoffusion.com/hof/functions.cfm >Keep this chart as a reference. It'll help many-a-time. If I ever get the >time/money to finish my functions book then that'll be made into a poster >(subdivided into sections rather than alphabetical). Michael

Re: Auto Parts Database?

2001-04-02 Thread Judith Campbell
At 07:13 PM 4/1/01 -0400, you wrote: >Sure. I guess you'd have to. Somewhere you're going to have to >specify which light lamp fits which vehicle. Better than entering a >zillion different lamps. It looks like it's definitely going to need >to run on SQL Server since even if you only have 1,000 pa

Multi-page/Long docs manipulation?

2001-04-02 Thread Adrienne H. Cregar
Hi everybody, I am working with a client that wants to be able to use full page articles (like full press releases) on their site, which would be pulled with CF. I am fairly new to CF, and am not exactly sure how to do this...going through the fat books... CF FILE action="read" appeared to fit t

Unable to create client tables

2001-04-02 Thread Planet CF
Hi All, I am unable to set up the CF server to use a Sybase database as storage for the client variables. The message that I get says, 'Unknown database - Unable to create client tables'. I am using sybase 11. Thanks Kedar ~~ Structure your ColdF

RE: Recursing with custom tags

2001-04-02 Thread Hayes, David
You need to take a look at GetBaseTagData and GetBaseTagList. GetBaseTagData(tagname [, instancenumber ] ) Returns an object that contains data (variables, scopes, etc.) from a specified ancestor tag. By default the closest ancestor is returned. If there is no ancestor by the specified name, or

RE: UPDATE column with NULL values?

2001-04-02 Thread Bill Davies
I'd like to know the answer to this one too - I've been using 1-1-1900 and testing the date col with LT or GT where I need to, but there must be an easier way (?). -Original Message- From: Christian N. Abad [mailto:[EMAIL PROTECTED]] Sent: 02 April 2001 18:44 To: CF-Talk Subject: UPDATE c

Re: UPDATE column with NULL values?

2001-04-02 Thread Clint Tredway
If the field is not required try Set column_name = '' -- Original Message -- From: "Christian N. Abad" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] Date: Mon, 02 Apr 2001 13:43:49 -0400 Hey, Folks! I'm having difficulty updating a Date/Time column in

UPDATE column with NULL values?

2001-04-02 Thread Christian N. Abad
Hey, Folks! I'm having difficulty updating a Date/Time column in an Access db. When I attempt to execute this SQL in a tag, I receive the following error : SQL : UPDATE table_name SET column_name = NULL ERROR : ODBC Error Code = 22005 (Error in assignment) [Microsoft][ODBC Mi

RE: CreateUUID()

2001-04-02 Thread Al Musella, DPM
>by pointing out that the UUID is "predictable" are you saying that using it >for security purposes is not recommended? UUIDs are not predictable.. take a look at this sequence I just tried. I can't find the pattern.. can you? 038E0B1C-CF53-4F06-A646367FD3CBC92F C7C38770-FAC0-4B00-B355DA9BFA

uploaded file problem

2001-04-02 Thread paul .
Hi all! i have sucessfully uploded file to the destination diretory and and i alow the end user to get those files from a simple hyperlinks.. here the file permissions are given proplerly still it says Forbidden You don't have permission to access /careadv/v1/files/agendas/1/Files_to_be_u

Re: Testing for the existence of an image file on another web server

2001-04-02 Thread Tony Schreiber
John, here's the best thing I found. Courtesy of Ron on this list: > > > > > > Image Not Found Test > >