Re: add on-click event to href within block of text

2001-08-29 Thread Fuon See Tu
just do aCFIF Pooh Bear Web App Developer Picture Below (chicks dig my head!) HTML HEAD/HEAD BODY IMG SRC=http://www.geocities.com/kickerazn_2000/sniffles_138x92.jpg; /BODY /HTML From: John Lucas [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: add

Re: Me Vs. Search Results

2001-08-29 Thread Michael Lugassy
Brian, SELECT left(whateverColumn,20) AS shortDescription FROM whateverTable This will only catch the 20 left most characters. I need the select (AS shortDescription) to include sentences that includes some/all of the query term(s). Michael.

RE: Macromedia strong arms developers into 5.0 upgrade

2001-08-29 Thread Thomas Chiverton
And why can't you just carry on useing the normal API version ? ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives:

RE: Studio 5.0 release date

2001-08-29 Thread Thomas Chiverton
del out of cf 5 whenever I try to open large text files 3meg +. Reported as a bug in the beta forum but no one ever responded. Maybe you should change your coding style :-) ~~ Structure your ColdFusion code with Fusebox. Get the official book at

RE: Xerces and CF

2001-08-29 Thread Daniel Lancelot
Yup set up the JRE and the xerces.jar in the class path I have a java file which has the line: import org.apache.xerces.dom.DocumentImpl; I then have a line in CF results = xmlXerces.getElementsByTagName(item); where xmlXerces is the name of a cfobject tag. I get the following

RE: Studio 5.0 release date

2001-08-29 Thread Neil Clark
Maybe you should question why you have 3Meg text file?! ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives:

Help - Date in English (UK)

2001-08-29 Thread Rudy Rustam
Hi, Please look at the following code: cfset date1 = 15/09/2001 cfset date2 = 06/09/2001 cfoutput Month1: #Month(date1)#/br = 09 Month2: #Month(date2)# = 06 /cfoutput How to make ColdFusion consistently use English (UK) to grab a date? Thank you. Rudy

RE: Help - Date in English (UK)

2001-08-29 Thread Neil Clark
What are you trying to do? a little cryptic :-) If you are using dates what is you locale? Why not use the built in date functions? ~~ Structure your ColdFusion code with Fusebox. Get the official book at

RE: Help - Date in English (UK)

2001-08-29 Thread Craig Dudley
Setlocale and lsparsedatetime try this... cfscript SetLocale(English (UK)); date1 = lsparsedatetime(15/09/2001); date2 = lsparsedatetime(06/09/2001); /cfscript cfoutput Month1: #Month(date1)#br = 9 Month2: #Month(date2)# = 9 /cfoutput -Original Message- From: Rudy

Encrypt and Decrypt function

2001-08-29 Thread Chris Bohill
Hi all. Are there any known Bugs associated with the Encrypt and Decrypt function. We have used these functions to encrypt variables that we are passing through as URL's. 95% of the time this works fine, but sometimes we get the following message, or similar messages. Two minutes later it

RE: Encrypt and Decrypt function

2001-08-29 Thread Craig Dudley
Try using CFUSION_encrypt instead... // Encrypt URL param CFUSION_encrypt(URL.Card_Id,secret_key); // Decrypt URL param CFUSION_decrypt(URL.Card_Id,secret_key); -Original Message- From: Chris Bohill [mailto:[EMAIL PROTECTED]] Sent: 29 August 2001 10:20 To: CF-Talk Subject: Encrypt and

RE: Help - Date in English (UK)

2001-08-29 Thread Rudy Rustam
Thanks Craig, it works. Is it safe to put the following code in Application.cfm? cfscript SetLocale(English (UK)); /cfscript -Original Message- From: Craig Dudley [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 29 August 2001 5:26 PM To: CF-Talk Subject: RE: Help - Date in English (UK)

RE: Help - Date in English (UK)

2001-08-29 Thread Craig Dudley
Yes, don't see why not. HTH, Craig. -Original Message- From: Rudy Rustam [mailto:[EMAIL PROTECTED]] Sent: 29 August 2001 10:42 To: CF-Talk Subject: RE: Help - Date in English (UK) Thanks Craig, it works. Is it safe to put the following code in Application.cfm? cfscript

RE: Macromedia strong arms developers into 5.0 upgrade

2001-08-29 Thread Will Swain
Surely the whole concept of a rivalry here would be childish at best. The purpose of lists like this, or the forums over at the Allaire site (which personally I haven't used since they changed the format) is so that people can share knowledge to the benefit of all. An argument over whose service

RE: TextArea

2001-08-29 Thread Will Swain
1) Can you be more specific? Lets see the code? 2) is gt; -Original Message- From: Neil H. [mailto:[EMAIL PROTECTED]] Sent: 29 August 2001 06:39 To: CF-Talk Subject: TextArea Two things with a text area: 1. I have some text and I have a break in my code but it isn't breaking on my

RE: Help - Date in English (UK)

2001-08-29 Thread Adam Reynolds
You need to convert your string to a date value. Then it will work. You are in effect being lazy. CF is converting your string into a date value then extracting the month from it. Adam -Original Message- From: Rudy Rustam [SMTP:[EMAIL PROTECTED]] Sent: 29 August 2001 09:47 To:

RE: Macromedia strong arms developers into 5.0 upgrade

2001-08-29 Thread Adam Reynolds
Macromedia probably took the view that CF5 will still work under the new Apache release and that until the 90% of Apache web servers are using the the new EAPI there would be no perceived benefit in building a release to support this new EAPI. This really is not a major issue. CF5 does not break

RE: SQL syntax again

2001-08-29 Thread Kevan . Windle
Is there any reason why you are keeping duplicate records in table 2. If you kept it unique, then you wouldn't have this problem. But to do it with the data you have. You need to make a unique selection from table2 and then link it back to table1. Something like this should work. Select table1.*

RE: Encrypt and Decrypt function

2001-08-29 Thread Kola Oyedeji
Chris I think the reason you are getting problems may be because some of the chracters generated by the Encrypt function may be ascii characters which are not URL safe and may need URL encoding there is another thread somewhere which discussses this. Also be warned the functions Craig told you

RE: Macromedia strong arms developers into 5.0 upgrade

2001-08-29 Thread Kola Oyedeji
Interestingly, I thought it was just me who stopped using the official forums since they changed the format! Kola Oyedeji Web developer Macromedia Certified Advanced ColdFusion 5 Developer http://www.Alexandermark.com (+44)020-8429-7300 -Original Message- From: Will Swain

Small Problem

2001-08-29 Thread Andrew Scott
I have just upgraded my SQL server from 7.0 to 2000, and CF 5.0 although still runs queries without any problems. I am getting the following error, now I do recall something on the list about mdac2.6 and will assume this to be the case here. But wanted to know from others who might have a better

RE: Studio 5.0 release date

2001-08-29 Thread Andrew Scott
Maybe it is a txt file like those that come with most Applications like installation notes etc. Or maybe a log file, these files can get pretty big and Studio does allow you to open them. This is a bug and should be fixed:-) If its 3mg I would say a log file, but Studio does claim to be an all

RE: Studio 5.0 release date

2001-08-29 Thread Neil Clark
touche :-) Notepad methinks. ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives:

Problems with viewing

2001-08-29 Thread declan maher
Hi, I have created a pdf dynamically on the server with an image inside and when I open it on the server it shows the image fine. However when I try to open it through a browser it fails to show the image. Can anybody suggest what the problem might be?

RE: Studio 5.0 release date

2001-08-29 Thread Thomas Chiverton
If its 3mg I would say a log file, but Studio does claim to be an all purpose editor! Yes! cough Of course it is pat, pat :-) ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm

RE: Studio 5.0 release date

2001-08-29 Thread Thomas Chiverton
Notepad methinks. edlin, please... :-) ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives:

RE: Studio 5.0 release date

2001-08-29 Thread Andrew Scott
Here is weird one, I thought I would check to see this for myself and loaded the cfusion log file application.log (1.3mg) and it loaded with no problems!! However when I closed the file it also closed Studio 5.0!! No error, but it closed without my permission!! Regards, Andrew Scott

RE: Studio 5.0 release date

2001-08-29 Thread Neil Clark
Yep, I have just tried to open the application.cfm file and CF5 bombed out. Now this could be for many reasons and I going to run a few tests this arvo. hmmm? ~~ Structure your ColdFusion code with Fusebox. Get the official book at

RE: Studio 5.0 release date

2001-08-29 Thread Neil Clark
doh - meant application.log ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives:

RE: Macromedia strong arms developers into 5.0 upgrade

2001-08-29 Thread Will Swain
Nope Kola, you are not alone!!! -Original Message- From: Kola Oyedeji [mailto:[EMAIL PROTECTED]] Sent: 29 August 2001 12:00 To: CF-Talk Subject: RE: Macromedia strong arms developers into 5.0 upgrade Interestingly, I thought it was just me who stopped using the official forums since

Re: TextArea

2001-08-29 Thread Neil H.
I inserted a #chr(10)# and got number 1. Now I want to prepend a gt; to the front of each line. Basically like Outlook Express or any other mail program does to a mail (see below :) ) Thanks, Neil - Original Message - From: Will Swain [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED]

RE: Macromedia strong arms developers into 5.0 upgrade

2001-08-29 Thread Justin Greene
We are looking at this as an option. I believe the issue (I am not the programmer, just the interface) is that some type of modules (mod_ssl for example) must have support compiled into Apache under the standard API and with EAPI they are supported at runtime. Using EAPI allows greater

Re: Macromedia strong arms developers into 5.0 upgrade

2001-08-29 Thread Earl, George
This is a repeating pattern. Remember the 'early' days of the Internet, around 1993 - 1997 or so, before the PC boom when Windows/Winsock/AOL made the Internet available to the masses? In those days listservs and newsgroups used to be chock full of good, knowledgeable people and short on noise.

RE: Apache 1.3.20 and EAPI requirements? (was: MM strongarms)

2001-08-29 Thread JSchlosser
Bite your tongue, Maureen. Some of us get hey-you'd into things. Our network guy is super, but he just got the web server dumped on him. JoAnn A. Schlosser Senior Consultant Association Management Software Grant Thornton LLP Washington, D. C. 703.837.4428 -Original Message- From:

Re: Studio 5.0 release date

2001-08-29 Thread freddy
I was opening the server.log However no matter the reason (for having the 3meg file) it opens fine in 4.5.x so me thinks it is a bug. CF studio is my text editor of choice... so when I want to open a text file I use it. Thanks Frederic Neil Clark wrote: Maybe you should question why you

Re: CF server 5.0 difference encountered in cfexecute

2001-08-29 Thread Larry W. Virden
from: Raymond Camden [EMAIL PROTECTED] Do you have an example of this? Ie, are you calling a standard windows program that I can test here as well. We are calling Unix programs that generate errors on stderr and regular output on stdout . -- Never apply a Star Trek solution to a Babylon 5

RE: add on-click event to href within block of text

2001-08-29 Thread John Lucas
Thanks. I really dont want to dynamically add cfif statements to all hrefs within the text block and then write that to the database, I'd rather keep it straight html. The problem is that these text blocks would be set up by non-technical users which is the same reason I can't have them add the

RE: Macromedia strong arms developers into 5.0 upgrade

2001-08-29 Thread Carlisle, Eric
Just thought I'd throw this in... Similar case for me. I'll summarize. CFMail has issues in 4.5 that aren't resolved in service packs or hotfixes (zero byte issue, primarily). Macromedia's support for this starts and ends at upgrade to 5 (and man alive, did I ever try to for another solution).

RE: Which FTP server for Win 2k

2001-08-29 Thread Cary Gordon
War FTP has some vulnerabilities that have not been addressed. I would avoid it. At 02:22 PM 8/28/2001 -0700, you wrote: War FTP Daemon is free, but it's a pain to set up. Serv-U is a great product, but it's not free. G6 (Now Bulletproof) is also quite the popular server.

Re: Studio 5.0 release date

2001-08-29 Thread freddy
Or maybe the upgrade should include ALL the functionality of the previous version. I DO NOT code 3 meg files I just attempted to open them... I did not expect that pointing out a deficiency would have you attacking me. Why not lighten up a bit? If I were writing an app and I was making it

RE: add on-click event to href within block of text

2001-08-29 Thread C. Hatton Humphrey
Thanks. I really dont want to dynamically add cfif statements to all hrefs within the text block and then write that to the database, I'd rather keep it straight html. The problem is that these text blocks would be set up by non-technical users which is the same reason I can't have them

RE: Studio 5.0 release date

2001-08-29 Thread Neil Clark
h, hark at him :-) chill with the still my friend.It was a joke.. jee Humour by-pass or what?! ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ:

RE: Studio 5.0 release date

2001-08-29 Thread Thomas Chiverton
Sorry to have sounded so harsh, but I didnt think anyone would actualy use Studio as a general purpose text editor... ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ:

Ad Agency Extranets?

2001-08-29 Thread Cameron Childress
I'm curious to know if anyone knows of any good intra/extranet products for Ad Agencies. A good solution would be designed to allow remote client reviews of audio, video, and graphics, as well as the ability to give online feedback to these items. Anyone working with large agencies out there?

Under the hood of AOL 6

2001-08-29 Thread BEN MORRIS
All, Can anyone tell me what browser is used by AOL 6. Is it IE 5.5? I am getting reports of display errors in AOL 6 that I can't seem to duplicate on IE. Thanks for any help... --- Ben Morris Web Site Developer American Federation of Government

RE: Ad Agency Extranets?

2001-08-29 Thread Neil Clark
There is one on the Dev Exhange done by Rocket 12 I think, but it has a broken link for download. N ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ:

RE: Under the hood of AOL 6

2001-08-29 Thread Kelly Matthews
I thought they went w/ Netscape... -Original Message- From: BEN MORRIS [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 29, 2001 9:04 AM To: CF-Talk Subject: Under the hood of AOL 6 All, Can anyone tell me what browser is used by AOL 6. Is it IE 5.5? I am getting reports of

Apache, Cold Fusion and EAPI

2001-08-29 Thread Justin Greene
I did some more research to try to get a sense of the timeline and have found that the EAPI in Apache has been available since at least 1.3.14 (the docs are a little vague on when it was introduced). Apache is now on version 1.3.20. The specific problem that we are having is that mod_ssl

Re: SQL syntax again

2001-08-29 Thread tom muck
Thanks, that's very close to what I eventually used. There are actually no duplicate records. The example was simplified and the other fields weren't shown, but I have to match on fields that may contain duplicate values. tom [EMAIL PROTECTED] wrote in message

Defining privleges

2001-08-29 Thread Chad McCue
Quick question, I am creating an admin section that will have multiple admins. When one admin is logged into a certain section, I cannont allow anyother admin to log into that same section. I am doing this by having a variable set when the user logs in. When he logs out that variable is

RE: Under the hood of AOL 6

2001-08-29 Thread Joshua Tipton
No, they bought netscape. In aol 6 it is ie 5 because if you upgrade your browser to 5.5 then you cannot view web pages within aol. Joshua Tipton -Original Message- From: Kelly Matthews [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 29, 2001 9:15 AM To: CF-Talk Subject: RE: Under

RE: Apache, Cold Fusion and EAPI

2001-08-29 Thread Thomas Chiverton
required and thus Cold Fusion is using the wrong API (of mod_ssl is using the wrong API, depending on your point of view). Cant you mix and match API and EAPI at the same time ? ~~ Structure your ColdFusion code with Fusebox. Get the official

i/o error in cf admin browse function (was Macromedia strong arms developers into 5.0 upgrade)

2001-08-29 Thread freddy
Dave, Your fix for the cf admin and rds did not work for me. I no longer get the rds error 404 I now get connection cannot be established. I still get the same error in the administrator. Thanks anyway, Frederic ~~ Structure your ColdFusion

AussieWebHosting.com/AussieHosts.com

2001-08-29 Thread Kay Smoljak
Hi all, Has anyone had any experience with this company? They are starting up ColdFusion hosting in Australia, and sound pretty good. Would be interested in any comments - good bad or indifferent! - that anyone had. Reliability? Customer service? Value? Thanks, K.

RE: Apache, Cold Fusion and EAPI

2001-08-29 Thread Justin Greene
I have been doing this in my development environment for over a month and am getting warnings in the Apache error log (about the mix) and sporadic blank pages. I do not know that the latter is caused by mixing, however, I do not have the problem in production, which is also 1.3.20, but standard

shopping cart / online store

2001-08-29 Thread Brian Almeter
This is a multi-part message in MIME format. --=_NextPart_000_002D_01C13071.8036D780 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 7bit Hello Does anybody know of a good resource for planning, developing, and building an online store front with ColdFusion?

http://www.cfdev.com

2001-08-29 Thread Rich Tretola
If the owner or webmaster of http://www.cfdev.com is on this list, check your site. It is crashing. Thanks, Rich ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ:

RE: AussieWebHosting.com/AussieHosts.com

2001-08-29 Thread C. Hatton Humphrey
Some thoughts here. First of all, HostSearch ratings page: http://www.hostsearch.com/showcomment.asp?Companycode=2908 Summary: 9.7 by 12 voters. Something that strikes me as odd, they look like a Linux/BSD hosting company. That's wonderful... but I only saw a reference to Cold Fusion on the

RE: http://www.cfdev.com

2001-08-29 Thread Pete Freitag
Thanks we are in the process of resolving the problem. -Original Message- From: Rich Tretola [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 29, 2001 10:21 AM To: CF-Talk Subject: http://www.cfdev.com If the owner or webmaster of http://www.cfdev.com is on this list, check your

caching stored proc data

2001-08-29 Thread BT
Can you to a cache of a stored proc instead of a cfquery? ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives:

SQl Server DB Error

2001-08-29 Thread Bruce Sorge
I am receiving this error: ODBC Error Code = 37000 (Syntax error or access violation) [Microsoft][ODBC SQL Server Driver][SQL Server]Can't allocate space for object '-483' in database 'tempdb' because the 'system' segment is full. If you ran out of space in Syslogs, dump the transaction log.

RE: caching stored proc data

2001-08-29 Thread Rich Wild
yup. cfquery name=thisqry dsn=#dsn# cacchedwithin=#createtimespan(1,0,0,0)# EXEC myStoredproc 'mystr' /cfquery remember you can't do this if the SP returns multiple recordsets though... -Original Message- From: BT [mailto:[EMAIL PROTECTED]] Sent: 29 August 2001 15:22 To: CF-Talk

MS SQL 7/2k File Size

2001-08-29 Thread BEN MORRIS
List, Does anyone know of a way in SQL (as opposed to enterprise manager) to get the file size of a MS SQL database? Thanks in advance, Ben Morris ~~ Structure your ColdFusion code with Fusebox. Get the official book at

SQL Error

2001-08-29 Thread Bruce Sorge
Never mind. I figured it out. My tempdb was out of room. I just had to create a new device on the SQL Server and then alter the tempdb to use the new device that I created. Man, I cannot wait until we upgrade to SQL 2K (Currently are on SQL 6.5)

RE: MS SQL 7/2k File Size

2001-08-29 Thread DeVoil, Nick
Does anyone know of a way in SQL (as opposed to enterprise manager) to get the file size of a MS SQL database? sp_helpdb() Nick ** Information in this email is confidential and may be privileged. It is intended for the

ColdFusion 5.0 Applets

2001-08-29 Thread Ricardo Villalobos
Did Macromedia change the java applets in version 5.0? It seems to me like they upgraded them to Java 1.3.1 but I wanted to verify with you guys... Best Regards! Ricardo Villalobos Dimasys, Inc. FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives:

RE: wrong state

2001-08-29 Thread ChristianWatt
I tried using CFPOP to delete specific messages in a loop and it did not work well at all. It would delete messages it shouldn't have and not delete everything it should have. I was processing anywhere from 5 - 1000 messages at time, and nothing did the trick. I ended up using perl and it

cftree

2001-08-29 Thread Joshua Tipton
I have a tree and then a treeitem. WIth in the tree there is a folder of class. Underneath class is an element that I would like to be a hyper link. Here is how I set it up but it made the class the hyperlink. Little help here. Joshua Tipton cftree name=Installed_Hardware

creating excel file in the REQUESTED format

2001-08-29 Thread Deanna Schneider
Hi Folks, I have a query that pulls data on various items for about 72 counties, quarterly for the last five years. I'm creating a downloadable excel file, and the client has requested that the data be presented like so: INDICATOR COUNTYNAME1, COUNTYNAME2, COUNTYNAME3 fs1 (date)

CF Hosting

2001-08-29 Thread BEN MORRIS
Fellow Developers, I am looking for a good (cheap) CF host for my personal sites, anyone have praise/horror stories for: CFXHosting.com or CFM-Resources.com Or even better, does anyone know of a page that actually lists cf hosts with user ratings? I have seen rated web hosts, and lists of CF

Re: creating excel file in the REQUESTED format

2001-08-29 Thread Critter
Hello Deanna, Option 1. there is a tag in the gallery that will output to a csv file, it has some errors in it, so those will need to be fixedbut other than that it works ok. Option 2. you could just loop thru the data, output the query.fieldnames, then loop thru the recordset and build

RE: MS SQL 7/2k File Size

2001-08-29 Thread Chris Sinkwitz
There will be a file most likely in your D:\MSSQL7\DATA folder that will be a .mdf file. That is your database, look at the properties of that. If you don't know what the file would be named or can't figure it out you can look in Enterprise Manager right click on your database go to properties

Re: CF Hosting

2001-08-29 Thread Jeffry Houser
At 11:27 AM 08/29/2001 -0400, you wrote: Fellow Developers, I am looking for a good (cheap) CF host for my personal sites, anyone have praise/horror stories for: CFXHosting.com Love 'em, love 'em, love 'em, love 'em Although, the admin who I used to work with mainly is no longer with

RE: ColdFusion 5.0 Applets

2001-08-29 Thread Mike Brunt
Yes they were upgraded and there can be issues with CFGrid when upgrading to 5.0. Knowledge Base 20371 lists various hotfixes including the CFGrid one. Kind Regards - Mike Brunt -Original Message- From: Ricardo Villalobos [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 29, 2001 7:53

RE: Defining privleges

2001-08-29 Thread Billy Cravens
Add a time stamp for each section (this will require doing this in the application.cfm). Each time the page is hit, set the timestamp - when a user tries to access an area, check to see if it appears that the last user has timed out, something like: cfif

RE: Activeedit 2.5

2001-08-29 Thread Billy Cravens
Ektron's eWebEdit claims Netscape compatibility. --- Billy Cravens Web Development, EDS [EMAIL PROTECTED] -Original Message- From: Chuck Hergenroeder [mailto:[EMAIL PROTECTED]] Sent: Monday, August 20, 2001 9:16 AM To: CF-Talk Subject: RE: Activeedit 2.5 I don't know this for a

Re: creating excel file in the REQUESTED format

2001-08-29 Thread BEN MORRIS
My experience w/ option 2: don't do it. I made a tag myself that looped through query.fieldnames and it was extremely slow. It worked fine with a few hundred records, but getting into 1500 records pretty much rendered it useless, I got memory errors and it took forever to process. Even

RE: creating excel file in the REQUESTED format

2001-08-29 Thread Cornillon, Matthieu
Here's a kludgy way to do it: 1) Make a CFM template with your CFQUERY tag below. 2) Add the following output code: CFOUTPUT QUERY=getfs #getfs.Column1#`#getfs.Column2#`#getfs.Column3#`#getfs.ColumnEtc#BR /CFOUTPUT NOTE: Those little apostrophe-looking things are the thing to the left of the

RE: creating excel file in the REQUESTED format

2001-08-29 Thread Jann VanOver
I've done this with a JAVA custom tag and it REALLY sped things up! I was writing 25,000 records in a reasonable amount of time! My tag takes a query (any query) and outputs it to an excel CSV file. I've never put it up to the tag gallery, but I've posted the source code on this list before. If

Message Board

2001-08-29 Thread John Paitel
Anyone know of a good, open source message board written in CF? I've found a few packages, but they are all encoded. I'd rather find an open source one that I can implement and also learn from. John ~~ Structure your ColdFusion code with

RE: creating excel file in the REQUESTED format

2001-08-29 Thread Cornillon, Matthieu
P.S. Sorry: my solution is, of course, a one-time thing. It's not intended for repeated, automated work. -Original Message- From: Cornillon, Matthieu Sent: Wednesday, August 29, 2001 12:09 PM To: [EMAIL PROTECTED] Subject: RE: creating excel file in the REQUESTED format Here's a

Re: creating excel file in the REQUESTED format

2001-08-29 Thread Simon Whittaker
Hi there, I have used HTML2Excel which I got from http://www.coldfusionnet.com - works very well and is easy to setup. This custom tag creates a dynamic Excel file from the generated content of a block of ColdFusion code. The generated content is first saved as an HTML file. Then it is opened

RE: creating excel file in the REQUESTED format

2001-08-29 Thread C. Hatton Humphrey
You might look into using RJustify, LJustify and CJustify inside a CFScript block to put the information into one big variable and then use CFFile to create your .csv file. Then link to it. Just a thought. Hatton Humphrey -Original Message- From: Deanna Schneider [mailto:[EMAIL

RE: Message Board

2001-08-29 Thread Raymond Camden
www.forumspot.org. It's the open source version of the Forums software Allaire used to sell. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is

RE: Message Board

2001-08-29 Thread Neil Clark
Anyone know of a good extranet type application for project tracking etc... document management et al? Open source would be good but no essential. ~~ Structure your ColdFusion code with Fusebox. Get the official book at

RE: creating excel file in the REQUESTED format

2001-08-29 Thread BEN MORRIS
Thanks for the offer! I'd certainly be interested in it. -Ben Morris Jann VanOver [EMAIL PROTECTED] 08/29/01 12:10PM I've done this with a JAVA custom tag and it REALLY sped things up! I was writing 25,000 records in a reasonable amount of time! My tag takes a query (any query) and outputs

Re: creating excel file in the REQUESTED format

2001-08-29 Thread Terry Troxel
I would love to see your tag as I have some inhouse needs for an Excel csv output. When I get home I will look for this thread on here awhile back that let you do formulas and formatting into an excel spreadsheet as I don't have it here in my office. Terry Troxel - Original Message -

RE: Activeedit 2.5 - Subthread Ektron

2001-08-29 Thread Trey Rouse
Neither product from ektron works with Netscape 6.1. (Just Verified Again) We use both empower 3.0 and ewebeditpro 2.0 and neither product is usable in Netscape 6.1. Be very wary of ektron solutions as they have not been tested in what I would call professional environments. We use the

Re: Message Board

2001-08-29 Thread Sean Daniels
On 8/29/01 12:12 PM John Paitel wrote: Anyone know of a good, open source message board written in CF? I've found a few packages, but they are all encoded. I'd rather find an open source one that I can implement and also learn from. I recently downloaded Simple Message Board

Filtering Form Input??

2001-08-29 Thread Shawn Grover
I've written a function that includes the following commands: // replace single quotes (') - for entry into SQL Server TargString = REReplaceNoCase(TargString, ['], chr(96), ALL); // Replace with [ TargString = REReplaceNoCase(TargString, [], [, ALL); // Replace with ] TargString

Re: creating excel file in the REQUESTED format

2001-08-29 Thread Simon Whittaker
Hello Again, Have just been told to have another look at th esite I mentioned in my email and it is no longer a custom tag download page - but have a look anyway, its quite amusing. Instead go to the devcenter and search for HTML2Excel or try this one

Re: Message Board

2001-08-29 Thread Eric Dawson
I have decided to work with openForum used to be something else ... Eric Dawson From: John Paitel [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: Message Board Date: Wed, 29 Aug 2001 09:12:05 -0700 Anyone know of a good, open source message board written

RE: creating excel file in the REQUESTED format

2001-08-29 Thread Eric Dawson
I'm not sure I understand - can you restate what you need? I have learned two Excel tricks that might help: one: output in HTML but set the mime type to excel. so that excel opens the file blah blah blah and does the conversion from html to excel. two: use web based query to transfer data into

CFMAIL Performance...

2001-08-29 Thread Ian Lurie
Hi all, I have a list of about 10,000 email addresses - a client wants to do a one-shot email to them (they're all opt-in addresses collected from their web site). It's not an ongoing thing, so Lyris or other systems probably aren't worth it. Can CFMAIL handle it? The client's on a dedicated

RE: creating excel file in the REQUESTED format

2001-08-29 Thread Tammy Hong
Yes I would like to see your tag too! I have thousands of records sometimes that need to be downloaded to an excel file but I haven't been able to get the server to do it without getting memory errors! Tammy -Original Message- From: Terry Troxel [mailto:[EMAIL PROTECTED]] Sent:

RE: i/o error in cf admin browse function (was Macromedia strong arms developers into 5.0 upgrade)

2001-08-29 Thread Dave Watts
Your fix for the cf admin and rds did not work for me. I no longer get the rds error 404 I now get connection cannot be established. I still get the same error in the administrator. What you might do, if you really want to fix the problem, is run a recording proxy to see what's being passed

Re: Message Board

2001-08-29 Thread BILL BROWN
My friend created a message board system that is Fuseboxed as well. There are different pricing packages, and, except for the least expensive one, they make the source available to you. http://www.eruditionzone.com/ The product is called CFBoards. Bill Brown [EMAIL PROTECTED] 8/29/01 9:12

RE: OT Suggestions for Email Servers

2001-08-29 Thread Chris Martinez
First off I would like to thank everyone for their input on this topic yesterday. I love this community. I think I have narrowed the field to one UNIX based system, qmail and a Windows solution: iMS. Qmail- The major concern with the qmail is compatiblity with existing systems that are built on

Re: Message Board

2001-08-29 Thread David Green
Hello List www.pysl.com This is a message board I downloaded from one of the CF sites for my kids soccer league. The Code was clean and easy to work with. I have modified it to use frames and added some java script to update the window frames and validate the fields. I can send code if you

RE: Message Board

2001-08-29 Thread Dave Feltenberger
shamelessplug We (Pipeline Interactive) build custom intranet and extranet applications... Check us out at www.pipelineinteractive.com. /shamelessplug -Original Message- From: Neil Clark [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 29, 2001 12:19 PM To: CF-Talk Subject: RE:

  1   2   3   >