Re: CFMail Sanity Check - Where's the Macromedia rep

2004-07-04 Thread Matt Robertson
There was a time a LONG time ago when CF headers were an issue, but the A/S industry has progressed in sophistication well past this oversimplification. Do you know that for certain? No one knows anything for certain.BUT since my clients send literally thousands of mailpieces daily (large

Re: beta fckeditor out

2004-07-04 Thread Joe Rinehart
It's actually got some features in mozilla/gecko that aren't available in IE, like splitting table cells with the mouse, etc.For something that's free, it's pretty spiffy. -joe - Original Message - From: Claude Schneegans [EMAIL PROTECTED] Date: Sat, 03 Jul 2004 14:35:53 -0400 Subject:

RE: beta fckeditor out

2004-07-04 Thread Michael Kear
FCKEditor is one I've used - shows a lot of promise.But does it produce correct XHTML?(i.e. lower case tags, correct line breaks with the close slash .br / etc)The last few versions haven't.In fact it's changed valid XHTML into invalid by changing all the case characters to upper case. I'm still

Re: beta fckeditor out

2004-07-04 Thread Kay Smoljak
Michael Kear [EMAIL PROTECTED] wrote: I'm still looking for a choice of WYSIWYG editors that will produce valid XHTML.Up till now I have a list of zero. http://www.xstandard.com/ http://www.cfmentor.com/code/index.cfm?action=""> :) -- Kay Smoljak http://kay.smoljak.com [Todays Threads]

RE: beta fckeditor out

2004-07-04 Thread Michael Kear
Thanks Kay, it's amazing how frequently our paths cross on the net. I've looked at XStandard one, and it uses an ACTIVEX control which means it will fail to work when WinXPPro SP2 comes out in a few weeks, just like all flash will fail.All ActiveX controls will fail unless they are from

Re: beta fckeditor out

2004-07-04 Thread Kay Smoljak
On Sun, 4 Jul 2004 23:58:13 +1000, Michael Kear [EMAIL PROTECTED] wrote: Thanks Kay, it's amazing how frequently our paths cross on the net. Yeah, that means we must both be MAJOR nerds :) I've looked at XStandard one, and it uses an ACTIVEX control which means it will fail to work when

Re: beta fckeditor out

2004-07-04 Thread Rick Root
Michael Kear wrote: FCKEditor is one I've used - shows a lot of promise.But does it produce correct XHTML?(i.e. lower case tags, correct line breaks with the close slash .br / etc)The last few versions haven't.In fact it's changed valid XHTML into invalid by changing all the case characters

RE: Insert row into middle of existing query

2004-07-04 Thread Gaulin, Mark
Does cf's query of query support sql union?If so you could probably use that to create a new query from the old one that had the new record sorted to the correct position (assuming you could define the sort order using the fields in the query).Then put the new query into your session variable.This

Updating multiple records

2004-07-04 Thread Mark Leder
Hi all, I have a SQL 2000 db with about 3400 records, which I upsized from MSAccess. Each record has a unique memberID (1,2,3, and so on, from Access).I need to insert (in a new field) a UUID into each of the first 3300 records (the newer ones already have it).How would I go about doing it?

Re: Updating multiple records

2004-07-04 Thread Frank Mamone
Mark, Try this: cfloop index=memberID from=1 to=3300 cfquery name=updateRecords datasource=dsn UPDATE myTable SET controlID = '#createUUID()#' WHERE memberID = #memberID# /cfquery /cfloop -Frank - Original Message - From: Mark Leder [EMAIL PROTECTED] Date: Sun, 4 Jul 2004

RE: Updating multiple records

2004-07-04 Thread Mark Leder
Thanks, Frank. So simple, yet worked like a charm. Sometimes the easiest stuff is what I get tripped up on. Thanks, Mark _ From: Frank Mamone [mailto:[EMAIL PROTECTED] Sent: Sunday, July 04, 2004 12:17 PM To: CF-Talk Subject: Re: Updating multiple records Mark, Try this: cfloop

Displaying Results in Columns

2004-07-04 Thread Jillian Carroll
I'm hoping somebody out there can help.I need to display these results in two columns (currently just displaying in one). cfquery name=search datasource=#DSN# username=#db_username# password=#db_password# SELECT * FROM users WHERE dealership = #form.dealership# ORDER BY department /cfquery

RE: Displaying Results in Columns

2004-07-04 Thread Charlie Griefer
http://tutorial140.easycfm.com/ http://tutorial141.easycfm.com/ Either of those should help (the second one goes a bit further towards maintaining 'proper' HTML) :) -Original Message- From: Jillian Carroll [mailto:[EMAIL PROTECTED] Sent: Sunday, July 04, 2004 9:35 AM To: CF-Talk

Date/Time format problem

2004-07-04 Thread Andrew Grosset
I'm trying to input a date and time into a SQL 2000 database. The date is correctly updated but the time is always set to zeros. How do I get the time value (1 sec before midnight) to be updated? cfset thisDate=CreateDateTime(year(Now()), month(Now()), Day(Now()), 23, 59, 59) cfset

Testing for existence of a directory

2004-07-04 Thread Mark Leder
I want to create a directory on the fly. I'm intending to use cfdirectory action="" for that, and name it using a memberName (easy). However, I can't figure out how to test for the existence of a directory by that same name. The cfdirectory commands that I see will list the contents WITHIN a

RE: Testing for existence of a directory

2004-07-04 Thread Paul Vernon
cfif not DirectoryExists() cfdirectory action="" /cfif Paul [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: Displaying Results in Columns

2004-07-04 Thread Jillian Carroll
Charlie, Thank you for the links... but I'm still stuck.I understand completely how to sort the results into columns --except that I've got a cfoutput group going on in my results.I can't figure out how to look at the results 'as a whole'. Any tips? Something simple I'm just not seeing?

RE: Displaying Results in Columns

2004-07-04 Thread Charlie Griefer
Hi Jillian: The tutorials use the currentRow variable to determine where to end the current row and create the new row.When you're grouping, you (as you realize) can't use the currentRow var since it's not going to be incremental anymore.What you'd need to do is initialize a variable to 0, and

Re: Date/Time format problem

2004-07-04 Thread Andrew Grosset
Found the problem: use CF_SQL_Timestamp instead of CF_SQL_Date...in cfqueryparam: cfqueryparam cfsqltype=cf_sql_timestamp value=#paidDate# any other suggestions welcome, Andrew. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: Testing for existence of a directory

2004-07-04 Thread Mark Leder
Didn't think to look at the functions. I must be brain dead today. Thanks, Mark _ From: Paul Vernon [mailto:[EMAIL PROTECTED] Sent: Sunday, July 04, 2004 2:07 PM To: CF-Talk Subject: RE: Testing for existence of a directory cfif not DirectoryExists() cfdirectory action=""

SOT: How to organize projects in Eclipse

2004-07-04 Thread Dick Applebaum
I would appreciate it if some of you experienced Eclipse users would give me some advice on how toorganize folders/files/projects under eclipse. Because of its Java orientation, Java-language projects appear to be treated in a special way that does not apply to other languages: I am used to

Re: beta fckeditor out

2004-07-04 Thread Claude Schneegans
It's actually got some features in mozilla/gecko that aren't available in IE, like splitting table cells with the mouse, One could do this easily with IE as well. The trouble with Mozilla it finding where it is documented... -- ___ REUSE CODE! Use custom tags;

Re: beta fckeditor out

2004-07-04 Thread Jochem van Dieten
Claude Schneegans wrote: It's actually got some features in mozilla/gecko that aren't available in IE, like splitting table cells with the mouse, One could do this easily with IE as well. The trouble with Mozilla it finding where it is documented... In the source of course :-) Jochem

Havent seen this error before...

2004-07-04 Thread Cutter (CF-Talk)
I am now getting an odd error: Error Executing Database Query. Unknown Types value The error occurred in /home/httpd/[omitted]/system/cfcomponents/com/[omitted]/boutique/category.cfc: line 43 Called from /home/httpd/[omitted]/secure/editor/_cat.cfm: line 205 Called from

RE: beta fckeditor out

2004-07-04 Thread Peter Tilbrook
Um, I am running WinXp SP2 RC2 and it doesn't block Active X (or Flash) - it is just a LOT more wary about executing stuff than WinXP SP1. So far it seems to be pretty good. Peter Tilbrook Manager, ACT and Region ColdFusion Users Group - http://www.actcfug.com http://www.actcfug.com/ 4/73

RE: CFX_ConsoleCommand and CFX_Execute

2004-07-04 Thread Lewis Sellers
At 12:07 PM 6/2/2004, you wrote: Your install them as CFX custom tags. They do come with the DLL. you need. If you mail me off list I can send you an Updated DLL what will allow you to get Output 1 2 out in the return. Pardon? Cheers Mr Kev McCabe I'm trying to find an alternative to

Homesite+ snippets question

2004-07-04 Thread Seamus Campbell
Hi I've just got Homesite+. I cannot see a way to add a new folder in the top level in snippets. I can only add a new folder within another folder. Help please - this is really annoying me Seamus Seamus CampbellBoldacious WebDesign http://www.boldacious.com[EMAIL PROTECTED] ph 02 6297

Re: CFMail Sanity Check - Where's the Macromedia rep

2004-07-04 Thread stylo stylo
Having run mail servers and bought/used various server-level antispam products, I haven't seen anything that biases against CF Well, that's good to hear. I hope spamcop is included in that. My CF 6.1 does not place a message ID or a content-type (just checked). Your ISP is propping up CF and

RE: Homesite+ snippets question

2004-07-04 Thread Matthew Walker
Right click in the window. :-) Also, if you have other CF developers, the shared snippets feature is cool _ From: Seamus Campbell [mailto:[EMAIL PROTECTED] Sent: Monday, 5 July 2004 2:05 p.m. To: CF-Talk Subject: Homesite+ snippets question Hi I've just got Homesite+. I cannot see a way

[Reply To] RE: Homesite+ snippets question

2004-07-04 Thread Seamus Campbell
Yes - I know that - but there seems to be no way to add a new snippets folder at the top level ie NOT under an already existing snippet folder Seamus You wrote Right click in the window. :-) Also, if you have other CF developers, the shared snippets feature