Re: access to sql server 7

2000-04-28 Thread Sean Renet
nice broken images on that link :-) - Original Message - From: "Fred Sanders" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, April 25, 2000 11:27 AM Subject: Re: access to sql server 7 http://www.ukaug.co.uk/downloads/v8downloads.htm - Original Message - From: "Won

Re: Distinct Help

2000-04-28 Thread Nick de Voil
How can I return rows without duplicates defined only by a single column? For example, I want to return rows that have no repeats of a certain column. If I use Select DISTINCT UserID from Member it works -- but I want to return more columns ... So when I go Select Distinct UserID,

Re: Add single quotes to each element on a list

2000-04-28 Thread Dirk De Bock
use cfselect display="rstate_name" value="'rstate_code'" or something along these lines, ie add the '' in the option elements Subject: Add single quotes to each element on a list I have a multiple selection list of states in the US When the user selects several out of the list and

Mysql

2000-04-28 Thread Rafe Hatfield
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_01BFB0EC.77B48630 Content-Type: text/plain; charset="ISO-8859-1" Hi All, I am about to encounter mysql for the first time

Preselect option in select

2000-04-28 Thread Tiberiu Vasilica
This is a multi-part message in MIME format. --=_NextPart_000_0029_01BFB10B.F7FCCE00 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hello all, How I can preselect an option so when the user comes back to the = selection page to find his

RE: CFUPDATE

2000-04-28 Thread Richard Hart
Thanks for your help Daniel. But the hidden input field is within the CFOUTPUT tags. However I have select box which is outside the cfoutput tag, could this be the problem? the code is something like: CFQUERY NAME="GetMain" DATASOURCE="M" blah blah /CFQUERY CFQUERY NAME="GetCountry"

RE: Making a unique ID

2000-04-28 Thread James Sleeman
---Reply to mail from Reagan, Leman about Making a unique ID I am planning to use the UUID tag (in sever 4.5 or greater) after we upgrade. What does everyone think?? Is the 4.5 Server UUID function 'Random' enough for a unique database ID? I havn't looked but it won't be random, I don't

Re: Making a unique ID

2000-04-28 Thread Justin MacCarthy
Has anyone noticed that the uuid returned by CF CreateUUID function isn't the right format ??? Why? _ Justin - Original Message - From: James Sleeman [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, April 28, 2000 10:44 AM Subject: RE: Making a unique ID ---Reply to mail

Re: Preselect option in select

2000-04-28 Thread David Hannum
Tibbs, You must query the table that has the users choice in it, and put the output in the TOP option tag with a SELECTED attribute and then put all the other choices in the remaining tags: SELECT name=3D"support" cfoutput query=userschoices OPTION SELECTED

OT - JavaScript

2000-04-28 Thread David Hannum
I have a script that pops up a small login window. My question is this. How can a make the login window pass the form info back to the original window and close the login window?? Thanks, Dave

Re: OT - JavaScript

2000-04-28 Thread Steve Reich
Look up the 'opener' object for JavaScript. If you need help with it, contact me off list and I can help you. Steve - Original Message - From: "David Hannum" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, April 28, 2000 7:47 AM Subject: OT - JavaScript I have a script that

RE: CF custom tags

2000-04-28 Thread Lapiana, Craig
This is a start, http://www.allaire.com/handlers/index.cfm?ID=14589Method=Full craig -Original Message- From: Robert M. Saxon, Jr. [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 27, 2000 5:09 PM To: [EMAIL PROTECTED] Subject: CF custom tags I was wondering if anyone had a list

Fun with CFFILE and ExpandPath()

2000-04-28 Thread Todd Ashworth
I am trying to let someone upload some image files into the 'images' folder on their web site. The trick is to get the file uploaded, clear out the file it is replacing, and rename the new file to the name of the old one, all while keeping the page 100% portable and without accidentaly

Re: Which is better??

2000-04-28 Thread Dick Applebaum
What you have defined suggests session variables. One good way to determine which scope to use is to consider: how long the variables should remain (make sense) in the system what is the broadest level to which they apply (will every visitor see the same value or will each have an

PATH_INFO

2000-04-28 Thread Markus Strickler
Hi! How can you access the PATH_INFO environment variable set by Apache weserver? CGI.PATH_INFO (and a lot of other environmet variables that are set by Apache) returns an empty string. PATH_INFO is set correctly when using perl or php. Sysinfo: SunOS 5.6 Apache 1.3.9 CF 4.0.2 Any clues?

cf_dhtml

2000-04-28 Thread Ben Lowndes
Hi! does anyone have Ben Fortas CF_DHTML working anywhere I can see? I've haven't been able to get it working and am finding it very frustating I've tried putting the JS file in a CF mapped directory and at the servers root and using the below code, but with no luck. CF_DHTMLMenu

Re: Technical Documentation

2000-04-28 Thread Erika Foster
I'm interested in knowing what kind of documentation everyone provides their clients as well since I'm delivering my first product on Monday morning. Since no one has replied to this post, I'm wondering if anyone PROVIDES documentation?? Erika - Original Message - From: "Jennifer"

Re: Query output for dummies

2000-04-28 Thread Todd Ashworth
- Original Message - From: "Tiberiu Vasilica" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, April 28, 2000 9:44 AM Subject: Query output for dummies I just learn... Please tell me how I can refer to the output of a query, where the output is a single record (e.g. a CD

Re: Query output for dummies

2000-04-28 Thread Dick Applebaum
cfset Suport = listsup.SupportName At 4:44 PM +0300 4/28/2000, Tiberiu Vasilica wrote: I just learn... Please tell me how I can refer to the output of a query, where the output is a single record (e.g. a CD support) Support table is: 1. SupportID 2. SupportName The query is: cfquery

Re: Query output for dummies

2000-04-28 Thread Mats Stromberg
Change your cfoutput to cfoutput query="listup" cfset Suport=#listup.SupportName# /cfoutput or cfoutput cfset Suport=#listup.SupportName# /cfoutput The 1'st one is a better one so you know what the cfoutput is used for. If you have to go back into the code again after some time... At 16:44

CF Authentication

2000-04-28 Thread Percy E Perez
Hello, Anyone has information, references on what is the best way to authenticate users. Should I authenticate using NFS Security (IIS), use MS SQL's authentication, or just create one from scratch... Pros/Cons??? Thank you for your response. Percy E Perez

CF VFP ODBC

2000-04-28 Thread Terry Riley
Just had a very strange thing happen (repeatable): Using a Visual FoxPro free table (delegate.dbf), CF4.01 and the latest MDAC2.1 drivers, asking CFAS to perform: SELECT * from delegate where delid in (101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,1

hex values

2000-04-28 Thread Jason Egan
I am trying to create a packet – just a regular fixed filed text file, the specs require the fields to be delimited by a ‘0x1C’ --- I guess that is a hex value – that I am sure of. Is it the equivalent of ASCII value 28? Anyone know? Any pointers on where to find ASCII to hex conversions?

Re: ColdFusion and MQSeries

2000-04-28 Thread Marcello Frutig
Hi Jason, there is a new CF tag that deals with IBM MQ Series: http://www.allaire.com/developer/gallery/index.cfm?Objectid=15469 Regards, Marcello. -- Astrolabio Anyone done anything with ColdFusion and MQSeries (from IBM)? We're looking for ANYTHING you can give on this one! thanks!

RE: Which is better??

2000-04-28 Thread Bill Killillay
Thank you very much. That was a great explanation of each! Have a great day! Bill -Original Message- From: Dick Applebaum [mailto:[EMAIL PROTECTED]] Sent: Friday, April 28, 2000 9:17 AM To: [EMAIL PROTECTED] Subject: Re: Which is better?? What you have defined suggests session

RE: Add single quotes to each element on a list

2000-04-28 Thread Sean Daniels
Code are passed as selState = 'AL,AK,AS,AZ,AR,CA,CO,CT,DC,DE,FL,GA' I wonder if there is a way to make the list like selState = 'AL','AK','AS','AZ','AR','CA','CO','CT','DC','DE','FL','GA' There is a CF function for accomplishing this. cfset quotedselstate = listqualify(selstate,"'") -

RE: CF VFP ODBC

2000-04-28 Thread Nathaniel Plane
Maybe populate a temp table with all the ID's you're searching for and run your delegate table against that instead. -- Nathaniel Plane Web Developer STONEAGE.COM Email: [EMAIL PROTECTED] Voice: (877)544-2336 http://www.stoneage.com "A feature is a bug with

RE: Technical Documentation

2000-04-28 Thread Ian Lurie
Heh. Documentation kind of varies. But generally, we provide the following: 1. Functional specification (we never show a design spec to our clients, if we can avoid it) 2. User's manual, if there is a content-management back end or other administrative functionality 3. Suggested 'moving forward'

RE: hex values

2000-04-28 Thread Sean Daniels
I am trying to create a packet – just a regular fixed filed text file, the specs require the fields to be delimited by a ‘0x1C’ --- I guess that is a hex value – that I am sure of. Is it the equivalent of ASCII value 28? Anyone know? Any pointers on where to find ASCII to hex conversions?

Translation Concept

2000-04-28 Thread Chris Getner
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_01BFB122.2CC58F94 Content-Type: text/plain; charset="iso-8859-1" I need to translate a site into multiple languages. I have been

No Subject

2000-04-28 Thread Tara Riley
This is a multi-part message in MIME format. --=_NextPart_000_000F_01BFB101.5BF8D120 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Does anyone know of any issues or problems with CF 4.51 and AOL users?? --=_NextPart_000_000F_01BFB101.5BF8D120

CFPOP Attachments Error

2000-04-28 Thread Nathaniel Plane
Hi. While working with CFPOP, i encountered an error when trying to use attachments, the server throws back an error.. Error Diagnostic Information unknown exception condition unknown error while executing a tag This ONLY happens when specifying an attachment path.. The path is valid, ive

RE: Technical Documentation

2000-04-28 Thread David L. Rice
"Technical documentation" is a subjective thing in most web development houses I've worked for. However, in my opinion, the need for and content of technical documentation (part of the "deliverables", as referred to by some people) needs to be part of the initial design, planning and discovery

RE: Preselect option in select

2000-04-28 Thread Joeug
cfset ... the selection and return the variable on the link or you could use history.back() function of the browser, so you dont loose the selection. select ... option value="Var" cfif #var# eq #yoursetVariable#Selected/cfif #query.value# /select --- Original Message --- "Tiberiu Vasilica"

My first VTM! fusebox single table administration wizard

2000-04-28 Thread Eric Dawson
My first VTM! fusebox single table administration wizard Anybody want to try it out for me and make some recommendations on improvement in style and coding. or just use it. It creates a fusebox style (or at least my take of fusebox) application to add edit delete records from a single

Re: hex values

2000-04-28 Thread Dick Applebaum
That's a FS character (Field Separator) here they alll are http://callisto.uwinnipeg.ca/~ppawlacz/ At 10:23 AM -0400 4/28/2000, Jason Egan wrote: I am trying to create a packet – just a regular fixed filed text file, the specs require the fields to be delimited by a ‘0x1C’ --- I guess

Re: Technical Documentation

2000-04-28 Thread Eric Dawson
hmmm. not me. From: "Erika Foster" [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: Technical Documentation Date: Fri, 28 Apr 2000 07:53:11 -0700 I'm interested in knowing what kind of documentation everyone provides their clients as well since I'm delivering my

RE: cfmail File Attachment

2000-04-28 Thread Gregory Weiss
Yes, This is true. Whenever an attachment is called into an email, a temporary file is created that is your attachment, and that file is then attached to your outgoing email. Thus, the specific call "C:\'Anything'" won't work. I use inFusion Mail Server, so I don't know exactly how the

Re: CF Authentication

2000-04-28 Thread paul smith
Check out the CF tags in Allaire's Tag Gallery. best, paul At 10:09 AM 4/28/00 -0400, you wrote: Hello, Anyone has information, references on what is the best way to authenticate users. Should I authenticate using NFS Security (IIS), use MS SQL's authentication, or just create one from

RE: Re: CFHttp and Wddx posting for results only???

2000-04-28 Thread Joeug
Thanks Sharon, How do i parse the page returned back(ie #cfhttp.filecontent#) to get only the results of the query. I would like to know, how can one Parse the info from a page without the forms fields and such. Appretiate it. Thanks Joe --- Original Message --- Sharon DiOrio

Re: CFHttp and Wddx posting for results only???

2000-04-28 Thread AOusterhou
Sharon: How do you design sites that are XML/Wddx Friendly? Do you have someplace I can go to read about this? Andy -- Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe visit

RE: which is faster?

2000-04-28 Thread Steve Reich
Once the bean is compiled, Java is faster, hands down. We are doing some stuff with EJB's and I can't even believe how fast it will execute a query. In my opinion, as far as speed goes, there is no comparison. They aren't even close. Of course you'll have to pay the price (java programmers) for

Re: Certification is BS

2000-04-28 Thread John Morgan
... I would put 0 value on some yahoo C++ certification that every joe can get. You can get Yahoo certification? :) What about AltaVista and Lycos? :) -John- -- Archives: http://www.eGroups.com/list/cf-talk To

Re: Translation Concept

2000-04-28 Thread AOusterhou
Order this book from Amazon or your favorite bookstore. It is the bible on how to get done right what you want to do. I did this for GE and it is a none-trivial problem. If it is set up incorrectly, it will cost HUGE bucks to maintain. Programming for the World : A Guide to

Re: access to sql server 7

2000-04-28 Thread Dave Wilson
Not only broken image links, but the downlad keeps timing out too... Does anyone have a copy of the upsizing utility that they could perhaps email to me off list? Or I could set up an FTP account on one of our servers. Cheers, Dave Dave Wilson Internet Technology Manager, BizNet Solutions

Re: Distinct Help

2000-04-28 Thread PC
Doesn't seem to be exactly -- what I want is to return all the rows from the member table, but exclude rows which have the same UserID. I think I was misleading in the example using "UserName" ... a better example would be where a 'comments' column exists and a single user could have made

Styles

2000-04-28 Thread Tiberiu Vasilica
How I can modify the height of an input text box? I want to make smaller, like FrontPage does... I try various styles but it looks the same... Tibbs -- Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe visit

which is faster?

2000-04-28 Thread JM
This is a multi-part message in MIME format. --=_NextPart_000_0110_01BFB109.E4E99AC0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable From my understanding of Java Servlets and EJB, in a production = environment if you were to stress test a

licencing code

2000-04-28 Thread Jason Egan
What is entailed in licensing your code? I have a job that unlicensed code becomes their property – there are some of our code that we don’t want them to have ---??? -je -- Archives:

CF on ASPToday - eh yesterday....

2000-04-28 Thread Justin MacCarthy
A nice article on CF at http://www.ASPToday.com/articles/2427.htm Some interesting quotes... "...it has been shown to be a scalable, cross-platform solution for Web developers" "... a fully featured server-side scripting language, with functionality as robust and rich as that offered by

Web-Trends and CF: Automation of statistic processes possible ?

2000-04-28 Thread cftalk
Hi list, we are using Web-Trends on our WWW-Server successfully. We ar e now searching for a tool, that does kind of automize the making of the log-file-statistic-analysing and writing it in an Excel or Access-DB. I know it can be done manually but I wonder if there is a certain app. or custom

Re: CF 4.51 vs AOL

2000-04-28 Thread Larry W. Virden
From: "Tara Riley" [EMAIL PROTECTED] Does anyone know of any issues or problems with CF 4.51 and AOL users?? Remember that, in general, users don't see ColdFusion - they see HTML. If you have users that are having problems accessing your pages, it is more likely to be that the HTML you are

RE: strip carriage returns

2000-04-28 Thread Doug Ford
Jason, I am not sure if someone has responded to you, but I worked on a problem like this a while ago. To the list please correct me if I am wrong on some ASC numbers. When you strip carriage returns, I think you are only removing the ASC(13) code.. but what you really need to do is to remove

Re: CF VFP ODBC

2000-04-28 Thread Terry Riley
In-Reply-To: 009c01bfb11f$e7da2900$6701a8c0@CINEHUB Provided there are no more than 24 numbers in each 'or delid in ()', irrespective of their individual sizes ( ie single, double or triple integer), I get the data returned. As said earlier, stick in a 25th number and it falls over even

Re: Apache + Win2000 + Cold Fusion Server = 99% System Resources

2000-04-28 Thread Jonathan McGuire
I'm having the same problem on NT4.0 w/ IIS 4.0 and CF 4.5a. 99% within 1 day of startup hogged permanently by the cf service. Jonathan McGuire - Original Message - From: "Ryan Shrout" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, April 27, 2000 3:37 PM Subject: Re: Apache +

Application locking

2000-04-28 Thread Ian
I understand why it is important to lock session variables but I don't understand why it is important to lock application variables, especially when they are the same for everyone. Basically, I only use application variables to name my db information (db source, username, password, etc). Why

RE: Re: CFHttp and Wddx posting for results only???

2000-04-28 Thread Sharon DiOrio
Well, I can't give code because it's entirely dependent on the page that is returned. But I'd point you in the direction of regular expressions to do the job. It isn't for the faint of heart. There's a chapter on regular expressions in the Advanced CFWACK book and O'Reilly has an entire book

Re: CFPOP Attachments Error

2000-04-28 Thread Jonathan McGuire
Had the same problem with a very stupid cause. Make sure all of your path fields have a trailing \. Jonathan McGuire - Original Message - From: "Nathaniel Plane" [EMAIL PROTECTED] To: "Cold Fusion" [EMAIL PROTECTED] Sent: Friday, April 28, 2000 11:11 AM Subject: CFPOP Attachments Error

RE: Technical Documentation

2000-04-28 Thread Duane Boudreau
Duane We use consultants to come in and draft our user manuals for our products (although we are going to be looking for a full time tech writer with CF experience in the future) Typically we send a Getting Started Manuals and User Guides HTH, Duane -Original Message- From: Eric

RE: Cf express and sessions

2000-04-28 Thread Mark W. Breneman
Anyone... Please -Original Message- From: Mark W. Breneman [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 27, 2000 10:03 AM To: [EMAIL PROTECTED] Subject: Cf express and sessions Hello, I am looking for an answer. Does CF express support sessions? At first glance it aperies

Re: Ben Forta's new Spectra book released

2000-04-28 Thread Jennifer Larkin
Peter Tilbrook wrote: Heh heh! Oops! And while we're on Oops! The book hasn't been released yet, but you can pre-order it now. -- Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe visit

RE: Technical Documentation

2000-04-28 Thread Duane Boudreau
Oops meant to address that to Erika, not myself :) Sleep - must get sleep . Duane -Original Message- From: Duane Boudreau [mailto:[EMAIL PROTECTED]] Sent: Friday, April 28, 2000 1:08 PM To: [EMAIL PROTECTED] Subject: RE: Technical Documentation Duane We use consultants to come

RE: Accessing Verity Collection on a seperate server

2000-04-28 Thread Dave Watts
I have a Verity collection on a 4.5.1 machine. I want to access it from a 4.0.1 machine on the same network. I put in the UNC path to the collection in the CF administrator. When I try and run a sample page, I get an error saying it can't access the collection (don't have the exact message

RE: Translation Concept

2000-04-28 Thread Philip Arnold - ASP
It's been a long time since I've been on this list, but I've run into a problem that someone here might have some insight into... I'm using an Excel ODBC datasource (as that's how the client supplies 3Mb of data), but the same problem arises if I make it as a Link Table in Access, or even as a

Session variables

2000-04-28 Thread Tiberiu Vasilica
Please help... How to store the added products in a session variable? cfparam name="Sesion.StoreItems" default="" cfparam name="Session.StoreQuantities" default="" form action="additem.cfm" method="post" table cellpadding="3" cfoutput query="select" tr td input type="hidden"

Re: Mysql

2000-04-28 Thread Brook Davies
MySql is optimized for read and is some what slow when writing data. There are some nice web based interfaces to administer MySQl, we use phyMyAdmin (a php tool for mysql) and it works great. At 06:33 PM 28/04/00 +1000, you wrote: This message is in MIME format. Since your mail reader does

Re: access to sql server 7

2000-04-28 Thread Fred T. Sanders
How about a direct link? http://www.microsoft.com/products/developer/officedeveloper/Access/prodinfo/ exe/wzcs97.exe If they timeout blame Billy G. Fred - Original Message - From: "Dave Wilson" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, April 28, 2000 10:51 AM Subject: Re:

Re: Certification is BS

2000-04-28 Thread Fred T. Sanders
I can hear the laughter now. Why yes! I'm a Yahoo Certified C++ Software Engineer. - Original Message - From: "John Morgan" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, April 28, 2000 10:38 AM Subject: Re: Certification is BS ... I would put 0 value on some yahoo C++

RE: CF and AOL

2000-04-28 Thread Mike Sheldon
It's not so much an issue with CF and AOL as much as it's an issue with the world and AOL. AOL's proxy servers cache pages in an EXTREMELY agreesive manner. Any site with dynamic content, or authentication requirements is at risk of corruption or security breaches unless every measure possible

CFFILE - Invalid parser construct/expression format

2000-04-28 Thread Todd Ashworth
OK .. anyone know why I am getting this error? The D:\Path .. was changed for security purposes, but the path it shows in the error is 100% correct, which means that the "#Evaluate(ExpandPath('../images/Home_Picture2.#FILE.ClientFileExt#'))#" is being parsed correctly.

Re: Styles

2000-04-28 Thread Tariq Ahmed
INPUT STYLE="font-size: xx-small;" ... Might work. On Fri, 28 Apr 2000, Tiberiu Vasilica wrote: How I can modify the height of an input text box? I want to make smaller, like FrontPage does... I try various styles but it looks the same... Tibbs

Re: CFHttp and Wddx posting for results only???

2000-04-28 Thread Sharon DiOrio
www.wddx.org is the best place to start to understand what WDDX is and how it works. Then, start playing with it. cfquery name="myQuery" datasource="#APPLICATION.dsn#" maxRows="10" SELECT * FROM TableName /cfquery cfwddx action="CFML2WDDX" input="#myQuery#" output="myWDDX"

RE: licencing code

2000-04-28 Thread Jim Taylor
see an attorney -Original Message- From: Jason Egan [mailto:[EMAIL PROTECTED]] Sent: Friday, April 28, 2000 9:09 AM To: Cf-Talk Subject: licencing code What is entailed in licensing your code? I have a job that unlicensed code becomes their property – there are some of our code that

Network files on other machines.

2000-04-28 Thread Drew Koenig
I have an email option running that attaches a file. I cannot get a file that is located on another network machine, I get an error 'file does not exist'. The paths I use are like (\\machinename\images\file.jpg) or something like that. How do I get around this? Or is this a limitation inherit to

Re: Integrating coldfusion with MS word

2000-04-28 Thread Howie Hamlin
The application that opens is determined by the MIME type setings on your PC (if you are using IE). The standard RTF MIME type is: application/rtf You can also try application/msword (that should work). You can also check your local MIME type settings. When IE sees that MIME type it maps the

Re: CFHttp and Wddx posting for results only???

2000-04-28 Thread Dick Applebaum
Andy Three ways immediately come to mind (designed to be accessed by a program via something like CFHTTP): 1) A data-drop site (page)... one that returns a WDDX packet when the page as accessed. For example A Manufacturer creates a page which returns a WDDX packet containing a

Re: licencing code

2000-04-28 Thread Sean Renet
I totally missed the first part of this thread, but I cannot think of one reason to give code to a client as property. There are only so many ways to do things in CF. - Original Message - From: "Jason Egan" [EMAIL PROTECTED] To: "Cf-Talk" [EMAIL PROTECTED] Sent: Friday, April 28, 2000

Binary Data to Browser - Curious

2000-04-28 Thread Scott Becker
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_01BFB144.D2C7DB10 Content-Type: text/plain; charset="iso-8859-1" Hi, Does anyone know if there is a way to use Cold Fusion to

Re: Distinct Help

2000-04-28 Thread Nick de Voil
Which comment do you want? The first one they made? I'd suggest you normalise your design to have a Member table and a Comment table. Link them via the UserID. Put a unique ID in your Comment table. Then you could say something like SELECT UserID, Comment FROM Comment WHERE

RE: Cf express and sessions

2000-04-28 Thread Pecora, James
No it does not - you will have to maintain session via the URL HTH -Original Message- From: Mark W. Breneman [mailto:[EMAIL PROTECTED]] Sent: Friday, April 28, 2000 12:12 PM To: [EMAIL PROTECTED] Subject: RE: Cf express and sessions Anyone... Please -Original Message-

RE: Cf express and sessions

2000-04-28 Thread Raymond K. Camden
FYI, per my last email, I plan on actually writing an article about this method sometime soon. Sorry to just 'show the code' and run. === Raymond Camden, Cold Fusion Jedi Master for Syntegra (www.syntegra.com) Allaire Certified

Good CF Text for brochure

2000-04-28 Thread Kenneth Beard
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_000_01BFB147.2CAD1C00 Content-Type: multipart/alternative; boundary=" =_NextPart_001_01BFB147.2CAD1C00" --

Re: Technical Documentation

2000-04-28 Thread Brandon Whitaker
Erika: I'm interested in knowing what kind of documentation everyone provides their clients as well since I'm delivering my first product on Monday morning. Since no one has replied to this post, I'm wondering if anyone PROVIDES documentation?? I've normally relied primarily on

Re: Technical Documentation

2000-04-28 Thread Jennifer Larkin
We have an extremely detailed user guide to the data-entry section of the site, including field restrictions for every field, how the data is used in the site, and how to manage the data for the best in-site results. We have also trained the person who will be the site admin and I have been

Re: Session variables

2000-04-28 Thread Deanna L. Schneider
It would seem that you're setting your cfparam tags on the wrong page You'll need to set them on the action page, after the user has entered their data. Then, it would be something like: cflock name="#session.sessionid#" timeout="30" cfset session.storeprod = prod#form.prodid# cfset

RE: Translation Concept

2000-04-28 Thread Dick Applebaum
What happens if you open the file in Excel, select the column, then format it as text (as it really should be defined)... I haven't tried this but I expect that that Excel and the driver should handle it properly HTH Dick At 6:18 PM +0100 4/28/2000, Philip Arnold - ASP wrote: It's been a

RE: strip carriage returns

2000-04-28 Thread Jason Zimmerman
Thanks Doug. I used this CFSET editStr = ReplaceList(Form.string, "#Chr(13)#,#Chr(10)#", ",") -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, April 28, 2000 5:27 PM To: '[EMAIL PROTECTED]' Subject: RE: strip carriage returns Jason, I am not sure if

NumberFormat question

2000-04-28 Thread Lomvardias, Christopher
Hi, Anyone know why I would get a value of 0 in an input text field when I do this against a numeric column which has a null in the database? input type="text" name="testval" value="#NumberFormat("#varname#")" Chris -- Chris

RE: Cf express and sessions

2000-04-28 Thread Chris Montgomery
You're right, it's not patently clear that CF Express supports session variables. Neither the FAQ, nor the Datasheet, nor the Tag list that I pulled from the Partners site explicitly mentioned support for session variables. I also did a drill-down on Allaire's site (painfully slow today) under

CONVERT() for money datatype

2000-04-28 Thread Joel Firestone
Everyone: I recently upsized an Access db to SQL 7. I'm having extreme frustrations trying to write to a money column. My code is: update ShipCost set productCost_beginRange = #convert(money, form.productCost_beginRange)#, productCost_endRange = #convert(money,

Re: Session variables

2000-04-28 Thread Tariq Ahmed
In this example, when the person hits submit, call this page again that checks to see if the form has been submitted, if so, add the items onto the StoreItems and Quantities list. On Fri, 28 Apr 2000, Tiberiu Vasilica wrote: Please help... How to store the added products in a

Re: Application locking

2000-04-28 Thread Seth Petry-Johnson
I understand why it is important to lock session variables but I don't understand why it is important to lock application variables, especially when they are the same for everyone. Basically, I only use application variables to name my db information (db source, username, password, etc).

Re: CF and AOL

2000-04-28 Thread AOusterhou
Michael: Do you only do this if they come in from AOL? If so, pardon my Newbie question, but how do you check? Andy In a message dated 4/28/00 3:28:07 PM Central Daylight Time, [EMAIL PROTECTED] writes: It's not so much an issue with CF and AOL as much as it's an issue with the world and

Very basic question on forms

2000-04-28 Thread aslam bajaria
Can someone tell me why the following code works and the code following it does not. works*** form action="Index.cfm?fuseaction=AuthenticateUser" ... /form and form action="index.cfm?fuseaction="ProcessNewUser" ... /form It works fine the way above.

Appache path_info question

2000-04-28 Thread Brook Davies
I couldn't find the exact thread, but I remember some one asked for this. Allows for CF to read the query string which can appear blank on Apache. I found this in the Allaire forums.. Replace the coldfusion_handler function in mod_coldfusion.c with attached code. PATH_INFO string will then

CF 4.5 Crashing on Linux

2000-04-28 Thread Brook Davies
Our Installation of CF4.5.1 is crashing on linux and the spawned processes are all taking up over 50 megs of ram each and swell up to 99 % usage of the cpu. CF Takes a long time to restart and the cfexec takes up to 94% of the CPU. Has any one experienced anything like this? Brook

cant figure out

2000-04-28 Thread S R
Here is what I am trying to do: cfquery datasource="synergy" name="TakeID" SELECT id, busunit FROM BusinessUnit /cfquery cfloop index="i" from="1" to="#TakeID.RecordCount#" cfquery datasource="synergy" name="TakeID" SELECT id, busunit FROM BusinessUnit /cfquery cfquery

Re: CFHttp and Wddx posting for results only???

2000-04-28 Thread Dick Applebaum
Well said! That's exactly how to learn to do it! Dick At 2:05 PM -0400 4/28/2000, Sharon DiOrio wrote: www.wddx.org is the best place to start to understand what WDDX is and how it works. Then, start playing with it. cfquery name="myQuery" datasource="#APPLICATION.dsn#" maxRows="10"

Re: CFFILE - Invalid parser construct/expression format

2000-04-28 Thread Todd Ashworth
n/m .. figured this one out .. just got rid of the Evaluate() .. doh! - Original Message - From: Todd Ashworth [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, April 28, 2000 1:10 PM Subject: CFFILE - Invalid parser construct/expression format OK .. anyone know why I am getting

Character limit on Oracle 8 SP ?

2000-04-28 Thread Don Vawter
I get an error when an Oracle stored procedure returns more than 255 characters. CF 4.51 It makes no difference if I use CF_SQL_VARCHAR or CF_SQL_LONGVARCHAR The sp is a simple select. If I use cfquery I have no problems. Anybody have any experience/suggestions? Thanks, Don

  1   2   >