Re: AHHHHHHHH Netscape HTML Question

2001-09-24 Thread Kamie Curfman
In this section of code:   Test you're closing your td at the top and then closing another td that doesn't have an accompanying open tag at the bottom. That *might* be your problem. Ka

RE: AHHHHHHHH Netscape HTML Question

2001-09-24 Thread Kelly Matthews
Acutally he juts had an extra -Original Message- From: Alex Santantonio [mailto:[EMAIL PROTECTED]] Sent: Monday, September 24, 2001 2:18 PM To: CF-Talk Subject: RE: A Netscape HTML Question You are missing a on line 31 just before you are opening your 3rd nested table. You h

RE: AHHHHHHHH Netscape HTML Question

2001-09-24 Thread Steven Dworman
Actually...look at line 29. you're trying to put a table inside a but you closed the before created the table. Steven D Dworman - Web Consultant Systems Administrator ComSpec International - http://www.comspec-intnl.com

Re: AHHHHHHHH Netscape HTML Question

2001-09-24 Thread John Paitel
Your first "Bob" line and the third blank line in the nested table are missing "colspan=3" in the TD tags. What works for me is to set each table to a different width and border color. That way you can see what cells are in each table, where they are laid out, and any missing columns, etc. Jo

Re: Passing the results from the

2001-09-24 Thread Bruce Holm
Make sure you have session management activated...then ... Then on your other template page... The directory listing is: #stDirFileName[RecNo]# #stDirFileSize[RecNo]# Give that a whirl...this has not been tested, but should give you the idea on how to complet

Way OT: Content Manager

2001-09-24 Thread cf kaizen
Hi, I've got a contentManager app, and I've got typical users who don't want to use it :-) I'd like to simplify things for them by placing a button on a custom menu bar in MS word that would essentially upload the text to a db. Obviously, at least part of this would have to be done using VBA. If

RE: AHHHHHHHH Netscape HTML Question

2001-09-24 Thread Alex Santantonio
6 of one, half dozen of another. Actually, I think he is just forgetting to open the new table cell after closing the initial one for that row, also, he is defining the width as 4 but that doesn't make much sense since the corresponding table cell above this one is 10 pixels and that just won't w

Re: AHHHHHHHH Netscape HTML Question

2001-09-24 Thread Bud
I commented the mistakes I see and got rid of the tab formatting so it doesn't all wrap.   Bob <--- Make this colspan=3 or add 2 more cells to this row   Bob     <--- Why is this closing td tag here? Again, needs 2 more rows or a colspan. Width should add up to 620. Test -

RE: WDDX

2001-09-24 Thread Jeff Britts
Done up to 70k with no issues -Original Message- From: Duane Boudreau [mailto:[EMAIL PROTECTED]] Sent: Monday, September 24, 2001 12:34 PM To: CF-Talk Subject: WDDX Is there any limit to the length that a string can be inside a wddx packet? TIA, ~~~

CFPop [CF:4.5]

2001-09-24 Thread Duane Boudreau
Hi All, Using CF4.5, how do you or can you determine if there is an attachment to an email. If you can determine and the email has an attachment, how do you grab the contents? Thanks Duane ~~ Your ad could be here. Monies from ads go to support the

RE: Passing info from one window to another

2001-09-24 Thread Billy Cravens
Try this: parent.document.frmName.frmField.value --- Billy Cravens Web Development, EDS [EMAIL PROTECTED] -Original Message- From: Ben Densmore [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 22, 2001 10:49 AM To: CF-Talk Subject: Passing info from one window to another Can someon

AW: ezEdit

2001-09-24 Thread cf-talk
Lenny, on a small project I created the output (with cfoutput I guess) above the ezEdit input-window. Then I put a remark that the user should select the text and do a copy and paste in a textarea (below in another window). Then the data is stored in a memo-field. (INSERT INTO with a cfquery) Work

Re: Error 232

2001-09-24 Thread Chad Gray
I ran into this error this morning. I noticed the CPU was pegged at 100% so i rebooted the box. I could not find the error on MS's web site, but i think it has to do with Databases. "Error","TID=218","09/24/01","8:53:30","Error number 232 occurred attempting to close connection to web server

RE: Error 232

2001-09-24 Thread Adkins, Randy
http://www.tera-it.com/html/server/docs/WINERROR.HTM -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED]] Sent: Monday, September 24, 2001 3:56 PM To: CF-Talk Subject: Re: Error 232 I ran into this error this morning. I noticed the CPU was pegged at 100% so i rebooted the bo

Re: Error 232

2001-09-24 Thread Chad Gray
[Microsoft][ODBC Microsoft Access Driver] Not enough space on temporary disk. I found this error in the application.log file for CF Server I have plenty of paging/swap disk space (all the HD's have plenty of space also)... Any idea what temporary disk space this error is referring to? A

Removing Special Chars

2001-09-24 Thread William J Wheatley
Whats the best script to remove and replace special characters that will make sql2000k error out thxw! [MERANT][ODBC SQL Server Driver][SQL Server]Unclosed quotation mark before the character string 'DATABASE ERROR: Type: DATABASE Message: ODBC Error Code = 37000 (Syntax error or access violat

RE: cfhttp Connection failure

2001-09-24 Thread Billy Cravens
A number of reasons. Proxy server? Perhaps the site expects a particular user agent? --- Billy Cravens Web Development, EDS [EMAIL PROTECTED] -Original Message- From: Bud [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 22, 2001 11:14 AM To: CF-Talk Subject: cfhttp Connection failu

RE: Carriage Returns with CFFILE

2001-09-24 Thread JSchlosser
Write the file: retrieve it with: show it on screen with normal text formatting with: #paragraphformat(FULLTEXT)# JoAnn A. Schlosser Senior Consultant Association Management Software Grant Thornton LLP Washington, D. C. 703.837.4428 -Original Message- From: Chris Jensen [mailto:[EM

RE: Way OT: Content Manager

2001-09-24 Thread Billy Cravens
I know that the DHTMLEdit control (in IE4+) can handle copied and pasted text from Word. --- Billy Cravens Web Development, EDS [EMAIL PROTECTED] -Original Message- From: cf kaizen [mailto:[EMAIL PROTECTED]] Sent: Monday, September 24, 2001 1:41 PM To: CF-Talk Subject: Way OT: Conten

CFMAIL on 5.0

2001-09-24 Thread ChristianWatt
Every message that gets dropped into the mail spool just sits there. Every message after that is a 0KB file and the message is never actually written. This obviously locks up the spooler, and indexing fails once the CF mail spooler is locked up. Any suggestions at all. There are only 25-50 mess

RE: Carriage Returns with CFFILE

2001-09-24 Thread Billy Cravens
Or even #fulltext# Perhaps you should write the file with #Chr(10)# instead? That's what I usually do, then replace it with when I output. --- Billy Cravens Web Development, EDS [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday,

RE: Carriage Returns with CFFILE

2001-09-24 Thread JSchlosser
I didn't have a lot of luck with the tags for some reason, but give it a shot. JoAnn A. Schlosser Senior Consultant Association Management Software Grant Thornton LLP Washington, D. C. 703.837.4428 -Original Message- From: Billy Cravens [mailto:[EMAIL PROTECTED]] Sent: Monday, Septemb

RE: Stock Quotes

2001-09-24 Thread Billy Cravens
There's always cf_StockGrabber (I'm not sure of the legality of this - it grabs a CSV from Yahoo and parses it - this CSV is available freely on the website, so I can't see a big problem) --- Billy Cravens Web Development, EDS [EMAIL PROTECTED] -Original Message- From: Ronald Winn [mail

Re: twoselectsrelated

2001-09-24 Thread Jon Hall
I played with both of those tags a while back and didn't really like them. I was probably doing something wrong though. I decided to just write my own, it was a lot easier than figuring out those tags... :) Unfortunately this does not work in NS4 (works in IE4+, NS6). It's probably something easy

RE: Stock Quotes

2001-09-24 Thread Owens, Howard
Dow-Jones requires a $6,000 license fee to run it's stock ticker on a Web site. H. Howard Owens Internet Operations Coordinator www.insidevc.com [EMAIL PROTECTED] AIM: GoCatGo1956 > -Original Message- > From: Billy Cravens [SMTP:[EMAIL PROTECTED]] > Sent: Monday, September 24, 20

RE: cf and apache

2001-09-24 Thread Justin Greene
Correct. -Original Message- From: Jesse Noller [mailto:[EMAIL PROTECTED]] Sent: Monday, September 24, 2001 11:43 AM To: CF-Talk Subject: RE: cf and apache For the windows version of the module? -jesse -Original Message- From: Justin Greene [mailto:[EMAIL PROTECTED]] Sent: M

`NOT in` CFQuery problem

2001-09-24 Thread W Luke
Hi. One of my queries selects all emails from a Survey table. In the 2nd query, I need to select all *members* who subscribed on a particular date but exclude those found in the existing query. I'm sure I've done something like this in the past using "NOT in," but am failing miserably here. The

Re: `NOT in` CFQuery problem

2001-09-24 Thread Koo Pai Lao
The problem with your code is that at the last list append, there would be a comma at the end. :P Finally, the quotedvaluelist function sets your values inside singlequotes. do this SELECT semail FROM survey SELECT * FROM members WHERE subscribe_date = #CreateODBCDate(DateAdd("d",

Re: `NOT in` CFQuery problem

2001-09-24 Thread W Luke
Thanks for the quick response. Unfortunately it didn't work though :( I changed the 2nd query from what you gave me, because one of your brackets generated an error SELECT * FROM members WHERE subscribe_date = #CreateODBCDate(DateAdd("d", -30, today))# AND (email NOT in '#QuotedValueList(s

RE: Removing Special Chars

2001-09-24 Thread Billy Cravens
It won't catch everything, but try PreserveSingleQuotes() --- Billy Cravens Web Development, EDS [EMAIL PROTECTED] -Original Message- From: William J Wheatley [mailto:[EMAIL PROTECTED]] Sent: Monday, September 24, 2001 3:13 PM To: CF-Talk Subject: Removing Special Chars Whats the bes

Re: Way OT: Content Manager

2001-09-24 Thread Jon Hall
Neat idea... I have zero VBA experience, so I dont know how hard it would be to add the button and stick the content of the document in a variable, and possibly handle images. However, once you have that, you are going to need to do an insert the content into a database, so either you need an odbc

Re: Way OT: Content Manager

2001-09-24 Thread Jon Hall
Forgot to add this to my post. Yes people are doing what you want to do. There are a ton of resources out there. http://www.google.com/search?hl=en&q=xml+word+document+vba jon - Original Message - From: "cf kaizen" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, Septe

reading an XLS file into a query...

2001-09-24 Thread Mark Warrick
Hello All, Here's what I want to do: User uploads an XLS file (column names will always be consistent) - this I've got figured out. CF reads the XLS file into a query and dumps the data into a SQL table. - part of this I can't figure out. I know how to read from a text file and do an import int

cf-talk@houseoffusion.com

2001-09-24 Thread Nathan Chen
Hi, Everyone, I am having a problem with tag trying to read a text file and display the file content. I basically copied the syntax from CFML Language Reference book as follow: When I did #file.message#, I got "Error resolving parameter FILE.MESSAGE Before you can access any file status var

RE:

2001-09-24 Thread Owens, Howard
CFFile can be disabled by your server administrator. Is CFFile enabled on your server? H. Howard Owens Internet Operations Coordinator www.insidevc.com [EMAIL PROTECTED] AIM: GoCatGo1956 > -Original Message- > From: Nathan Chen [SMTP:[EMAIL PROTECTED]] > Sent: Monday, September 24, 20

RE:

2001-09-24 Thread Scott Cavanaugh
Nathan, The variable is not in the file scope. You just call it as #message#. The CFFILE scope is used when you do a CFFILE ACTION="upload". It returns a list of parameters about the file. The file scope has also been deprecated, you should use CFFILE. when the situation calls for it. Hope this h

Re:

2001-09-24 Thread Jim McAtee
The scope of the variable you've specified would be variables, so use: #variables.message# or just: #message# Jim - Original Message - From: "Nathan Chen" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, September 24, 2001 5:12 PM Subject: > Hi, Everyone, > >

OT: SQL- Column datatype on an empty table

2001-09-24 Thread Bill Holloway
Hi all, I'm needing to get a list of the datatypes and maxlength properties of the columns of an empty table (I'd like to auto generate the tags). SQL_VARIANT_PROPERTY does the trick on a non-empty table but I'm not working with populated tables. Any ideas? I'm using SQL Server 2000. Thanks,

Percentages

2001-09-24 Thread Tilbrook, Peter
Is their a way with CF to use "percent" functions. eg: FinalWeight = 1165 - (12% x 1165) Result: 1025 "12%" could be a negative value, eg: FinalWeight = 1165 - (-12% x 1165) Thanks! Peter Tilbrook ColdFusion Applications Developer Australia New Zealand Food Authority Boeing House 55 Blackall

CFLDAP, SSL and Active Directory

2001-09-24 Thread Brian Kotek
Hi All I read on Allaire's site some information about using CFLDAP with Microsoft Active Directory. I got it working, and I must say it is very cool. However, I by default all that data is moving across the network in clear text, so I want to use CFLDAP's SSL option to encrypt the traffic. H

RE: Percentages

2001-09-24 Thread Joshua Miller
Sounds like a UDF in the making. Joshua Miller Web Development::Programming Eagle Technologies Group, Inc. www.eagletgi.com [EMAIL PROTECTED] -Original Message- From: Tilbrook, Peter [mailto:[EMAIL PROTECTED]] Sent: Monday, September 24, 2001 10:15 PM To: CF-Talk Subject: Percentages I

Apach vs IIS speed on Windows

2001-09-24 Thread Robert Everland
We all know the security concerns and what not, but what is a speed comparrison between the two. Like how many pages per second can I expect Apache to have and how many can I expect IIS to have. I would like to use Apache but not if it is gonna hurt me speed wise. I stay on top of the security iss

RE: Percentages

2001-09-24 Thread Pete Freitag
Just use FinalWeight = 1165 - (0.12 * 1165) it means the same thing. ++ Pete Freitag ([EMAIL PROTECTED]) CFDEV.COM ColdFusion Developer Resources http://www.cfdev.com/ -Original Message- From: Tilbrook, Peter [mailto:[EMAIL PROTECTED]] Sent: Monday,

RE: Percentages

2001-09-24 Thread Rich Tretola
Why not use: FinalWeight = 1165 - (.12 x 1165) Result: 1025 Rich -Original Message- From: Tilbrook, Peter [mailto:[EMAIL PROTECTED]] Sent: Monday, September 24, 2001 10:15 PM To: CF-Talk Subject: Percentages Is their a way with CF to use "percent" functions. eg: FinalWeight = 1165 -

Re: Delay function in CFM

2001-09-24 Thread ycnyon
Hi, I am looking for a CFM function where it delays a specific amount of time before it proceeds to the next line of instruction. Thanks. FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com

RE: Apache vs IIS speed on Windows

2001-09-24 Thread Justin Greene
I ran tests on Apache 1.12 on windows NT 4.0/sp 5 on a dual PIII 600 with 256MB ram. Serving a .5K file it was able to push about 750 pages/sec. Serving a 14K file it dropped to about 525 pages/sec, but I also noted that the 100MB network was saturated. Probably was bottlenecking the LAN (I thin

Re: Delay function in CFM

2001-09-24 Thread Howie Hamlin
If you are running windows and can load a cfx I have a simple sleep cfx you can have... Regards, Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. - www.CoolFusion.com 631-737-4668 x101 inFusion Mail Server (iMS) - The Intelligent Mail Server >>> Find out how iMS Stacks up to

Re:

2001-09-24 Thread Nathan Chen
Thank you, Jim, Scott, and Howard, for the help. #message# does work. Jim McAtee wrote: > The scope of the variable you've specified would be variables, so use: > > #variables.message# > > or just: > > #message# > > Jim > > - Original Message - > From: "Nathan Chen" <[EMAIL PROTECTED]

OT: ISP & Privacy - does your isp do this???

2001-09-24 Thread Mike Kear
My ISP has asked everyone to agree to a new terms and conditions statement, that seems to permit them to do anything they like with my private information. Here are the clauses that concern me: [quote] 14.2 Company may collect, store, transfer and/or disclose to third parties, for any purpose (

<    1   2