Re: text field

2000-09-29 Thread paul smith
In the case of allowing HTML into textarea, is the a work-around for the quotes in an href="" ? How about work-around for allowing js into a textarea? best, paul At 08:21 AM 9/18/00 -0400, you wrote: >On 9/18/00, Deva Ramesh penned: > >Hi > > > >I have a text field that is pulling up content

Re: CF bug?? Re: Mappinf on Cf server

2000-09-29 Thread Rob Keniger
on 9/30/00 9:45 AM, Planet CF at [EMAIL PROTECTED] wrote: > Just an observation on mapping: > > If you want to map > C:\Inetpub\wwwroot\app\Menu&Navigation > to > Menu&Nav > > CF will allow you to do it the first time. But just > incase you need to change your mapping name, then you > cannot ed

CFMail Problem.

2000-09-29 Thread Neil H.
Guys I am sending out two emails upon order completion. The problem is that it works fine about 99% of the time. However when the 1% hits it's pretty bad. It will send me and the customer 100 copies of the email. I can assure you there is NO loop and NO query attribute. Is it possible CF send

RE: Line count of 1600 files?

2000-09-29 Thread Peter Theobald
Yuk! When I see something like that I know why I like Unix and not NT. wc *.cfm (count all lines in all CFM files in this directory) find . -exec wc *.cfm(count all lines in all CFM files in the entire tree starting where I am) At 05:11 PM 9/29/00 -0700, Adrian Cesana wrote: >Lol, > >NT

Survey

2000-09-29 Thread Leon Chalnick
Hello, In an effort to keep the Allaire developer community informed, we have put together a short survey which we hope you'll be willing to take. The focus of the survey is to determine how the developer community feels about Allaire's product line-up and business strategy. We've tried to desig

Re: CF SERVER QUESTION

2000-09-29 Thread William J Wheatley
anychance you can find me a section to delve into i'm searching there site but its quite large =) Bill Wheatley Director of Development AEPS INC Allaire Coldfusion Consulting Partner www.aeps.com www.aeps2000.com 954-472-6684 X303 ICQ: 417645 - Original Message - From: Peter Theobald <

RE: Conference - unofficial list of attendees

2000-09-29 Thread Hydra
Error attempting to resolve error template file './request_error.cfm'. Template file not found. The error occurred while processing an element with a general identifier of (CFERROR), occupying document position (6:3) to (6:57). Date/Time: 09/29/00 20:03:20 -Original Message- From: D

RE: Line count of 1600 files?

2000-09-29 Thread Adrian Cesana
Lol, NT Batch is MUCH more powerful than most people realize. Its funny, some of the "newer" people in this business dont even know how to EXIT a CMD window but can write a mean CF script... -Adrian -Original Message- From: Jaime Garza [mailto:[EMAIL PROTECTED]] Wow! bat-man they ca

CF bug?? Re: Mappinf on Cf server

2000-09-29 Thread Planet CF
Just an observation on mapping: If you want to map C:\Inetpub\wwwroot\app\Menu&Navigation to Menu&Nav CF will allow you to do it the first time. But just incase you need to change your mapping name, then you cannot edit it from CFAdmin. You have to go to the registry to edit it. CFAdmin will sh

RE: Allaire statement on law suits

2000-09-29 Thread Jon Tillman
I was sure that iD was the most powerful :) On Fri, 29 Sep 2000, Steve Bernard spake thusly: > It's all nice and good that, "The company believes that the lawsuits are > without merit and will vigorously contest these lawsuits and expects to seek > dismissal at the appropriate time.", but the cas

RE: Query Advise

2000-09-29 Thread Eric Gilbert
AS far as a site I have used or like is and have no affiliation with that I have found usefull for sql because it has links to other good sites. http://www.vb-bookmark.com/vbSQL.html Some basic pages are http://homepages.go.com/~chlee1h/sql.html http://www.ifs.univie.ac.at/

query caching?

2000-09-29 Thread Jon Hall
This is a multi-part message in MIME format. --=_NextPart_000_03AA_01C02A44.87489EC0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Ok, maybe someone could point me in the right direction here. I am = working with a database with 750,000 di

RE: TO ALL: Request for ColdFusion SP2 Input - locking

2000-09-29 Thread Benjamin S. Rogers
Amen. Automatic locking should be the default. After all, this is how a good RDBMS works (and a good application server for that matter). If the developer wants to override the default locking mechanism to ensure transactional integrity, then that tool should be available to the them. But don't sh

Re: Query Advise

2000-09-29 Thread Blithe Brandon
I assume here that message.mID is a unique identifier. If so you should only get one record back from the query below. I would then compare the rest of the form variables against your query results. SELECT messages.mID, messages.from_email, members.email, members.password FROM messages, memb

Re: Client & Session variables?

2000-09-29 Thread W Luke
> Use client variables, written to a database, whenever possible. Is there any documentation about writing client variables to a database? Or do you have any "starter for tens"?! Cheers Will -- Archives: http://www.m

RE: Query Advise

2000-09-29 Thread Hayes, David
When you say "wrong password", are you talking about a message you're returning or a CF database connectivity error because you don't have privileges to access the database? Can you run any query against that db? The query doesn't seem to be joining any records; what happens when you run this qu

RE: Infusion Mail Server

2000-09-29 Thread Nadir Ait-Laoussine
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01C02A60.8B5E3DB3 Content-Type: text/plain; charset="iso-8859-1" Hello All, I've been following this thread What does IMS do exac

RE: regular expression help

2000-09-29 Thread Mark Johnson
I don't know exactly what you are trying to find in the string. But this should match the contents of the first table row. [^<]*', HTML)> or if you just want the contents of everything between that cell. #ReReplace(HTML, '([^<]*)', \1)# However we really need to know what you want from the st

Re: Refresh Question?

2000-09-29 Thread KRM
Here's a cute way to disable a submit button after it's been pressed: - start of code --- function doSubmit(btn) { if (btn.value != "Please wait...") btn.form.submit(); btn.value = "Please wait..."; } - end of code --- It depends o

RE: Email Trigger?

2000-09-29 Thread dougn
I know this is possible with iMail (NT), but haven't tried it. What's the Syntax for such a call? --Doug -Original Message- From: Len Conrad [mailto:[EMAIL PROTECTED]] Sent: Friday, September 29, 2000 1:57 PM To: CF-Talk Subject: RE: Email Trigger? >Another way to do this would be to

RE: How can I do this (Query external data source)?

2000-09-29 Thread Christopher Olive, CIO
why not use WDDX or something like that? write a robot like action page (no HTML) that queries the DB and wraps the results in a WDDX package. then on your internal page, CFHTTP to that external robot page, grab the packet, decode it, and go nuts. chris olive, cio cresco technologies [EMAIL PRO

RE: Line count of 1600 files?

2000-09-29 Thread Jaime Garza
Wow! bat-man they call you! or is it cmd-man? I never thought a CMD would do all that! I was thinking perl myself, or scripting host, or a cln in C, but never this! P.S. Everyone else, keep this one around. It may be worth some collector money in 2010, after DOS finally dies. -- Or

RE: JS does not work in Netscape but does in IE

2000-09-29 Thread John Anderson
ie will have a value for the selectbox.value but netscape will not. use var valNewMortinfo= document.Mailme.NewMortinfo.options[document.Mailme.NewMortinfo.selectedInde x].value; var valCurrentLoanInfo=document.Mailme.CurrentLoanInfo.options[document.Mailme.C urrentLoanInfo.selectedIndex].value;

RE: JS does not work in Netscape but does in IE

2000-09-29 Thread Chapman, Katrina
I'm sorry I didn't realise till I sent this that I read your message backwards. --K > -Original Message- > From: Chapman, Katrina [mailto:[EMAIL PROTECTED]] > Sent: Friday, September 29, 2000 1:44 PM > To: CF-Talk > Subject: RE: JS does not work in Netscape but does in IE > > > functio

Re: DB vs. text file

2000-09-29 Thread Jon Hall
We recently ran into a problem where the database was so huge that pulling a list box was too slow. The solution was to perform a query that wrote the contents of the select box to a comma delimited file once a day. In this case, it was much much faster to read the box from a file. jon - Orig

RE: CF SERVER QUESTION

2000-09-29 Thread Peter Theobald
I haven't seen this myself, but there is an Allaire warning posted on their site that this can happen if you are serving very high volumes of very simple CFM pages. The fix is to switch from Unix domain sockets to network sockets (or something like that :-) read the notice). This fix will also

RE: ColdFusion SP2

2000-09-29 Thread Jaime Garza
For SP2: 1. Better garbage collection on the JVM interaction. Man, the memory degrades in the JVM! I suspect that if I do a low priority thread and call System.gc() it would work better... Maybe. 2. In oracle thru ODBC, if I issue and incorrect data value (i.e. a "TRUE" when I created a NUMER

RE: DB vs. text file

2000-09-29 Thread Simon Horwith
I believe if you have the option, that querying the database will be faster. CF can maintain or even cache the results of, a query... it cannot maintain an open connection to a file. There are many parameters that could effect this, though. ~Simon -Original Message- From: Robert M. Saxo

Query Advise

2000-09-29 Thread W Luke
Hi, For me, SQL is either thoroughly straightforward, or bizarrely confusing. As soon as I try to do something remotely complicated, I run into trouble, simply cannot work it out, and come to you guys. As well as advising me how to fix my latest Query - can anyone tell me of a decent SQL website

Re: Allaire statement on law suits

2000-09-29 Thread Adrian Cooper
- Original Message - From: "Neil H." <[EMAIL PROTECTED]> Sent: Friday, September 29, 2000 8:18 PM > its down. :( So is NASDAQ generally - by more than Allaire by percent in fact. Considering the market conditions following the Apple debacle, ALLR performed rather well in fact. Adrian

RE: Email Trigger?

2000-09-29 Thread Len Conrad
>Another way to do this would be to have your MTA (ie Sendmail) fire a Perl >script that calls the CF page (via HTTP) when mail to that alias >arrives. No scheduling required, and near-instant action on the email. ah, now that's cool. thanks, Len --

Conference - unofficial list of attendees

2000-09-29 Thread David Shadovitz
Friends, I greatly enjoy this email forum, and I look forward to meeting those of you who'll be at the Allaire Developer Conference. To abet this, I created a simple signup page at www.cfm-resources.com/members/dshadovi/index.html. I invite all attendees to sign up. Then we'll all know whom to

RE: Allaire statement on law suits

2000-09-29 Thread David E. Crawford
This is a multi-part message in MIME format. --=_NextPart_000_0292_01C02A57.02C6FAD0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Re: Allaire statement on law suits And so is everything else on NASDAQ thanks to APPLE. DC -Original Message---

RE: regular expression help

2000-09-29 Thread Hayes, David
Well, you've got some characters other than :Alnum: and :space:. You've got :punct: in there also. -Original Message- From: sebastian palmigiani [mailto:[EMAIL PROTECTED]] Sent: Friday, September 29, 2000 1:29 PM To: CF-Talk Subject: regular expression help What am I doing wrong here?

RE: JS does not work in Netscape but does in IE

2000-09-29 Thread Chapman, Katrina
function ValidateForm() { var valCurrentLoanInfo=document.Mailme.CurrentLoanInfo.value; var valNewMortinfo=document.Mailme.NewMortinfo.value; //validate required fields if ((valCurrentLoanInfo=="")&&(valNewMortinfo=="")) {

RE: Line count of 1600 files?

2000-09-29 Thread Chris Norloff
No, but perhaps my boss is. :-o Chris Norloff -- Original Message -- From: "Mark Warrick" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] Date: Thu, 21 Sep 2000 23:49:06 -0700 >I see a few others have come up with some good solutions for you. (whew) > >Ho

RE: Line count of 1600 files?

2000-09-29 Thread Chris Norloff
Thanks! I'll give it a try. Chris Norloff -- Original Message -- From: "Adrian Cesana" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] Date: Thu, 21 Sep 2000 13:11:05 -0700 >Place this code into a *.CMD file. Currently it is looking in e:\cfm for >*.cfm

Infusion Mail Server

2000-09-29 Thread Daniel Allison
My company is on the verge of purchasing Infusion Mail Server. We have spoken to On-Line Data Solutions and have been pleased with what we have heard. I would appreciate it if anyone else who has used this product would let me know about their experiences with iMS. Thanks, Dan --

Re: [Humor] statement on law suits

2000-09-29 Thread Stephen M Aylor
Here's what the press release should be saying: Milberg, Weiss & Lerach announces . that their merit-less suit is dropped. "News Flash from the Doofus News Wire" Apparently MWL & KY cant find a plaintiff that bought ALLR shares during the Class period... and sold during same period, that h

DB vs. text file

2000-09-29 Thread Robert M. Saxon, Jr.
I am thinking about populating a select box with a list from a text file. Is that faster than querying a database, or should I import the text file into a table? I'm sure there is no absolute answer to this question, but generalities are acceptable. Thanks, Rob

RE: Client & Session variables?

2000-09-29 Thread Peter Theobald
Definitely! We are setting up a CoyotePoint Equalizer to balance the load between the servers and we are being very careful to keep everything about the user's session in database-stored Client variables. Session variables are specific to the individual web server the user hits. At 06:22 PM 9/

RE: CF SERVER QUESTION

2000-09-29 Thread Pete Freitag
you might consider asking [EMAIL PROTECTED] __ Pete Freitag ([EMAIL PROTECTED]) CFDEV.COM / NETDesign Inc. ColdFusion Developer Resources http://www.cfdev.com/ -Original Message- From: William J Wheatley [mailto:[EMAIL PROTECTED]] Sent: Friday,

Re: CFStudio Truncates files?

2000-09-29 Thread Chris Cortes
Jay, I have experienced this problem before. In studio it shows the file as blank, but opening it in notepad shows that it is all still there, right? I haven't had this problem in a while though? Are you using the lastest version of Studio? Chris Cortes Consultant [EMAIL PROTECTED] Direct 713-98

Re: TO ALL: Request for ColdFusion SP2 Input - locking

2000-09-29 Thread Al Musella, DPM
It is probably too big a change for just a service pack - but maybe keep it in mind for the next point release: I would like to request an option to automatically lock variables. I read the "best practices" paper on the allaire site that explains why you don't have it - but you have to und

Re: Allaire statement on law suits

2000-09-29 Thread Neil H.
its down. :( Neil - Original Message - From: "William J Wheatley" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, September 29, 2000 1:35 PM Subject: Re: Allaire statement on law suits > here here i have to agree with you lawyers are such crap. > > I think i'm going

RE: cutting edge or what ???

2000-09-29 Thread Mark W. Breneman
Every thing I use still works. I noted that requesting a webpage is a little sluggish compared to my two NT 4.0 servers of lesser CPU. I have not yet played with optimizing too much yet. Mark W. Breneman -Cold Fusion Developer -Network Administrator Vivid Media [EMAIL PROTECTED] www.vivid

RE: ColdFusion SP2

2000-09-29 Thread lsellers
You know. An option to choose between the default "LocalSystem" and a new "Cold Fusion" NT account would be nice. Automatically set it up with admin privileges and all that. You pretty much have to anyway if you "play" with other computers in your lan. --min ---

RE: Client & Session variables?

2000-09-29 Thread Simon Horwith
could do -Original Message- From: Rif Kiamil [mailto:[EMAIL PROTECTED]] Sent: Friday, September 29, 2000 1:22 PM To: CF-Talk Subject: RE: Client & Session variables? If I was to uses Hardware Load Balancing. Should I uses client variables and store them on a database? -Original Me

RE: Email Trigger?

2000-09-29 Thread JF
Another way to do this would be to have your MTA (ie Sendmail) fire a Perl script that calls the CF page (via HTTP) when mail to that alias arrives. No scheduling required, and near-instant action on the email. ...Jay At 10:10 AM 9/29/2000, you wrote: >I just want to be able to execute a CF

RE: Email Trigger?

2000-09-29 Thread Steve Bernard
Karl, You will have to use or create functionality on the server hosting the SMTP server for this to work. Only that server/service will know when an email message has arrived. On some platforms there are agents that monitor for incoming email and can then execute other tasks. This is most likely

RE: html2pdf

2000-09-29 Thread Mark Johnson
Mirella, HTML2pdf relies on HTMLDOC to translate HTML to PDF. If you create large text say something or something .etc centered at the bottom of the page HTMLDOC should render it fine. The only problem that I have found with the CFX_html2pdf is that some of the arguments don't work properly. I

Re: Email Trigger?

2000-09-29 Thread Howie Hamlin
- Original Message - From: "Karl Simanonok" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, September 29, 2000 12:59 PM Subject: RE: Email Trigger? > Yes, this is exactly what I want to do: > > >send mail to specific address > >CF template is invoked upon mail receip

Re: cutting edge or what ???

2000-09-29 Thread Jim McAtee
Anybody successfully running CF 4.0.1 on Win2K? I'm not ready to move to CF 4.5.1, but the OS upgrade is starting to look good. Jim - Original Message - From: "Simon Horwith" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, September 29, 2000 11:10 AM Subject: RE: cu

RE: Email Trigger?

2000-09-29 Thread ron
Karl, So what email server are you going to use to receive the mail? You say the email could be received on the same server, but as you might guess, you need a SMTP listener going on port 25 for that, and of course your DNS set up with the proper MX records. Most email servers have what are call

Re: OT: combining SQL queries

2000-09-29 Thread Eric Dawson
SELECT UserName, FirstName, LastName, Email FROM Users WHERE UserNumber=#Session.UserNumber# or UserNumber=#GetOrder.UserNumber# or UserNumber=#GetOrder.ApprovalBy# From: "Gene Kraybill" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: CF-Talk <[EMA

RE: ...list...array

2000-09-29 Thread Gavin Myers
thanks for the info Steve, this is what i'm working on (right now the array is visible as you travel through the quiz) http://www.lightrodsoft.com/training/training_quiz_listquizzes.cfm i actually figgured most of it out by... reading the books! for some reason ever since i joined this list i'

RE: Access 2000 remote install

2000-09-29 Thread mherbene
If you have a share on the production server, sure. Just pretend it's a file server. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, September 29, 2000 1:13 PM To: CF-Talk Subject: Re: Access 2000 remote install On Thu, 28 Sep 2000 18:03:05 -0400, yo

regular expression help

2000-09-29 Thread sebastian palmigiani
What am I doing wrong here? What is the regular expression that will extract a match? STRING= REGULAR EXPRESSION= [[:Alnum:space:]]+', HTML)> #x# -- Archives: http://www.mail-archive.com/cf-ta

creating word and excel docs on the fly

2000-09-29 Thread Warrick, Mark
I know how to create an excel spreadsheet from a query. I could probably apply the same concept to Word docs. Is it possible to pass in formatting codes into Word or Excel? For example, let's say I wanted to create a table in Word, with the top row shaded and the cell borders turned on - stuf

RE: html2pdf

2000-09-29 Thread Simon Horwith
I think there are some other custom tags out there as well. If you want total control, install activepdf server, acrobat distiller, ghostscript, or the like, and use it's COM Structure with CFOBJECT ~Simon -Original Message- From: Mirella Mount [mailto:[EMAIL PROTECTED]] Sent: Friday, S

RE: cutting edge or what ???

2000-09-29 Thread Nadir Ait-Laoussine
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01C02A40.912DCCFC Content-Type: text/plain; charset="iso-8859-1" We've been using Windows 2000 Advanced Server with CF 4.5.1 and S

RE: Another goodbye

2000-09-29 Thread lsellers
> I too will be unsubscribing today, as I am off to an ASP project at a = > client site with NO INTERNET ACCESS! Should I survive, I will be back in = > the new year. > > Thanks to everyone for all of the great advice and help... > > Jim I believe the name of the place you're going is called HEL

CF SERVER QUESTION

2000-09-29 Thread William J Wheatley
We have CF ENT 4.5 w/Linux on a Dual 800 PIII with 1.gig of ram. We are getting 111 Server hangups for just hitting regular CFM pages, so i'm curious if i have somethign setup wrong on the server end that would be making people get this error. They can hit a page and it will show up and then when

CFFILE troubles ... multiple unique filenames

2000-09-29 Thread Joshua Miller
Here's my problem, I'm trying to upload 2 photos with a user signup form, but I need to allow for the fact that some people will have the same filenames, I used the following lines of code for the photos:

RE: Allaire statement on law suits

2000-09-29 Thread Steve Bernard
It's all nice and good that, "The company believes that the lawsuits are without merit and will vigorously contest these lawsuits and expects to seek dismissal at the appropriate time.", but the cash situation being what it is, defending even the most trivial of lawsuits only sucks more money out

RE: TO ALL: Request for ColdFusion SP2 Input

2000-09-29 Thread Steve Bernard
It just astounds me that a company would develop a development platform and then provide documentation that is so obviously hacked together at the last minute. This casts shadows of unmanaged development, a lack of concern for the customer, and short-sightedness from the management of the company.

RE: TO ALL: Request for ColdFusion SP2 Input

2000-09-29 Thread Steve Bernard
It just astounds me that a company would develop a development platform and then provide documentation that is so obviously hacked together at the last minute. This casts shadows of unmanaged development, a lack of concern for the customer, and short-sightedness from the management of the company.

Re: ...list...array

2000-09-29 Thread Jamie Keane
1) Pretty much so. 2) You can pass a list like you would any string. Arrays are a bit trickier. If you need to pass an array, you could use ArrayToList, or for more complex arrays, convert them to a WDDX packet. 3) Since a list is just a structured string, you can do this to initialise an empty

RE: cutting edge or what ???

2000-09-29 Thread Ron Anderson
We're running CF4.5.1 under W2K w/o any *known* if effects. Can't say for sure about your code...depends on what you're doing with it. -Original Message- From: Russell Jones [mailto:[EMAIL PROTECTED]] Sent: Friday, September 29, 2000 9:07 AM To: CF-Talk Subject: cutting edge or what ???

RE: Client & Session variables?

2000-09-29 Thread Rif Kiamil
If I was to uses Hardware Load Balancing. Should I uses client variables and store them on a database? -Original Message- From: Won Lee [mailto:[EMAIL PROTECTED]] Sent: 29 September 2000 17:25 To: CF-Talk Subject: RE: Client & Session variables? Client variables are persistent from ses

RE: TO ALL: Request for ColdFusion SP2 Input

2000-09-29 Thread Steve Bernard
-Original Message- From: Robert Everland III [mailto:[EMAIL PROTECTED]] Sent: Friday, September 29, 2000 12:36 PM To: CF-Talk Subject: RE: TO ALL: Request for ColdFusion SP2 Input I gave up on this dream months ago. I now exclusively use the online documentation. Someone else has made

CFStudio Truncates files?

2000-09-29 Thread Jay Jennings
I'm having a problem with CFStudio apparently "truncating" files I'm working on via RDS. A template will stop working and when I try to open it I only get the first couple lines. It looks like the rest of the file is gone. But opening the file locally shows everything there -- including a couple c

Re: Allaire statement on law suits

2000-09-29 Thread William J Wheatley
here here i have to agree with you lawyers are such crap. I think i'm going to head out and buy some allaire stock now. Great time to buy the stock now and show our loyality to this great company since when it does go back up (which i'm pretty sure we all knwo it will) we will be on the happy end

RE: ...list...array

2000-09-29 Thread Gavin Myers
thanks for the info Steve, this is what i'm working on (right now the array is visible as you travel through the quiz) http://www.lightrodsoft.com/training/training_quiz_listquizzes.cfm i actually figgured most of it out by... reading the books! for some reason ever since i joined this list i'v

Re: ...list...array

2000-09-29 Thread Jon Tillman
On Fri, 29 Sep 2000, Gavin Myers spake thusly: > okay, i've been getting into lists and arrays but i cant find very much good > reference > > 1: is a list just a 1d array? list are variables, and are created as such: > 2: how do you carry a list/array through pages? Is the only way to do it vi

RE: Client & Session variables?

2000-09-29 Thread Robert Everland III
WEll if you don't kill the sessions though and come back, you keep your session. I think the difference is client variables use a database whereas session variables use memory. Bob Everland -Original Message- From: Won Lee [mailto:[EMAIL PROTECTED]] Sent: Friday, September 29, 2000 12:2

RE: TO ALL: Request for ColdFusion SP2 Input

2000-09-29 Thread Peter Theobald
I'll second that! Since we're on the documentation here are some gripes of my own: Why don't the hard copy docs have the TAG NAMES or FUNCTION NAMES printed at the header or footers or at the top of each page? It's terribly inconvenient to find anything. If you flip through the book 75% of the

RE: ...list...array

2000-09-29 Thread Steve Bernard
- To create a list by hand just use CFSET: - If you have an existing one dimensional array, arr_MyArray[], you could use ArrayToList(): - To carry variables through pages you can use a variety of methods. If you want to pass complex structures like arrays and structures you can use APPLICATION

RE: ...list...array

2000-09-29 Thread Simon Horwith
to create a new list, just create a variable. Use the list functions on that variable and make sure you specify whatever delimeter is relevent ("," is usually the default, but you can use anything). A list is really any text, but you could visualize it as a 1d array in terms of it's use. An ent

html2pdf

2000-09-29 Thread Mirella Mount
This is a multi-part message in MIME format. --=_NextPart_000_0006_01C02A0F.EF224350 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit I am trying to create a PDF document on the fly from a dynamically generated HTML file and need large text to appear at

RE: Email Trigger?

2000-09-29 Thread Karl Simanonok
I just want to be able to execute a CF template when my email is received on the server, WITHOUT invoking a scheduled task. Howie Hamlin says iMS (inFusion Mail Server, see http://www.coolfusion.com) will do it, but that's an expensive and time-consuming solution for what should take maybe a few

Re: Refresh Question?

2000-09-29 Thread Andy Peterson
Hi Rich, If I can place a primary key in the form field that disallows duplicates, a refresh will return an error because it will violate referential integrity upon the second insert. An error will be thrown. Crude, but I think it works. HTH, Andy - Original Message - From: HappyToad.com

Re: Access 2000 remote install

2000-09-29 Thread John Elder
On Thu, 28 Sep 2000 18:03:05 -0400, you wrote: >If you don't want to run the Access application/interface on the server, but >CF on that server needs to talk to Access databases, just install the MDAC >on the production server. On the remote computers you will have to install >the Access applica

RE: cutting edge or what ???

2000-09-29 Thread Simon Horwith
runs fine for me on Win 2K. IIS functions pretty much the same. It's a bit more robust and offers new interfaces (like the watered down personal web server interface, for one), but all in all, if you got it working on NT 4.0, you should be fine on Win 2K. ~Simon -Original Message- From

RE: CF and Apache on Windows NT

2000-09-29 Thread Pete Freitag
Apache Runs pretty well with CF on NT. Apache uses less memory than IIS, that's for sure. __ Pete Freitag ([EMAIL PROTECTED]) CFDEV.COM / NETDesign Inc. ColdFusion Developer Resources http://www.cfdev.com/ -Original Message- From: Michael Slat

RE: Client & Session variables?

2000-09-29 Thread Andy Ewings
Client variables persist across sessions but Session variables do not necessarilly persist only for the life of the browser They persist until the pre-determined timeout expires (set in the CF server or overwritten in application.cfm) --

Re: RE: Client & Session variables?

2000-09-29 Thread Gregory Harris
More or less, but session variable can hold after you immediately exit a browser, here is better description: Session: Is stored in memory, and while faster is extremely volatile 'cuz if the server shuts down, all the variables go Client: Stored in registry (whether database, NT, or otherwise)

RE: Refresh Question?

2000-09-29 Thread Jaime Garza
Suppose that you have a field called Name (FORM.Name in the action page) insert whatever into whatever values whatever Thanks for submitting, blah blah blah this is how it works first time form comes, inserts, then redirects to itself again. This time no form goes secon

Another goodbye

2000-09-29 Thread J.Milks
This is a multi-part message in MIME format. --=_NextPart_000_011F_01C02A15.7B055240 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I too will be unsubscribing today, as I am off to an ASP project at a = client site with NO INTERNET ACCESS!

RE: cutting edge or what ???

2000-09-29 Thread Pete Freitag
IIS on Win2k is very similar to NT4, you probably won't notice any differences. As far as CF on Windows 2000, I still use NT4 on my Production servers, so I can't comment on it's production performance. __ Pete Freitag ([EMAIL PROTECTED]) CFDEV.COM / N

RE: Email Trigger?

2000-09-29 Thread Karl Simanonok
Yes, this is exactly what I want to do: >send mail to specific address >CF template is invoked upon mail receipt ...WITHOUT using a scheduled task. If iMS will do it, and iMS is written in Cold Fusion, then there has to be a mechanism to accomplish this task. Unfortunately there are two big dr

Re: OMG!!!!!

2000-09-29 Thread Richard Ramos
Ummm We use ColdFusion and have our site translated in Chinese and Japanese. The way to use unicode in CF is to store the unicode values in the tables. You can use Frontpage to convert the unicode characters into uni values easily. Richard Ramos Network Administrator Softitler Net, Inc. ww

cflooping calendar

2000-09-29 Thread Dan Schueler
Hi all, Does anyone out there have some calendar code to do something like ... JANUARY 3 Chilean Poster Directory • Michigan CA Apple Section 10 California Carrot Directory • National CA Apple Se

RE: ...list...array

2000-09-29 Thread Pete Freitag
A list is simply a delimited string. The delimiter is usually a comma. A list really isn't an Object in CF, it's more of a concept. I could say I could then treat myVar as a List if I wanted to, since a list is simply a delimited string. So now I could use all the List functions that CF provi

RE: Metadata 2

2000-09-29 Thread Jaime Garza
What kind of metadata you are looking for? I can give you some sample code/pointers on how to do a CFX (C++). I did mine out of a sample from MSDN (called cat.cpp or something like that). Uses MFC and other crap, but if you compile it in a single DLL you should be OK. They do many things metad

Re: Upgrading to 4.5

2000-09-29 Thread Bud
On 9/28/00, Daniel Allison penned: >I am about to upgrade from CF 4.0.1 Enterprise to CF 4.5.1. Enterprise on NT >4.0. The database we use is SQL server 7 on a separate machine. Does >anyone have any advice on what to look for and what pitfalls to avoid. Yes. Stick with 4.01. I have nothing but

Re: cutting edge or what ???

2000-09-29 Thread Howie Hamlin
We are running cf 4.5 on WIN2K with no problems... Allaire does not support anything older than 4.5 on WIN2K, though. HTH, Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. www.CoolFusion.com 631-737-4668 x101 inFusion Mail Server (iMS) - the World's most configurable mail se

Re: cutting edge or what ???

2000-09-29 Thread Ken Wilson
Personally, I like the combination better. But I'm only using it in Intranet settings without extremely high-load. Ken - Original Message - From: Russell Jones <[EMAIL PROTECTED]> To: CF-Talk <[EMAIL PROTECTED]> Sent: Friday, September 29, 2000 12:07 PM Subject: cutting edge or what ??

Allaire statement on law suits

2000-09-29 Thread Adrian Cooper
Copied to CF-Talk on the basis that people here will want to know what Allaire is saying and doing about the the allegements by some shareholders. FWIW - having studied this entire situation closely for a few days now, I conclude, (and this is entirely my own opinion), that these class action law

Re: Client & Session variables?

2000-09-29 Thread Bud
On 9/29/00, Rif Kiamil penned: >Dear All, What is the different between Client & Session variables? > >From Rif Dear Rif. They pretty much accomplish the same thing. Client variables are unique to each client, may be stored in cookies (if they are turned on), the registry (bad bad idea), or a

  1   2   3   >