RE: parent - child relations

2003-01-09 Thread webguy
Yes true. DB are a rational, rather than hierarchical data. LDAP is a closer match, and of course the file system is another. The problem with moving it to XML/other is that you can't do joins on the data. Many DB's have extensions to help with trees. It will be interesting to see what Microsoft

RE: JBoss CFMXJ2EE was a lot of other stuff

2003-01-09 Thread webguy
Hi Dick, did you try to use installer to a manual install Have a look here for details title:CFMX for J2EE: Manual Installation @ http://www.corfield.org/blog/2003_01_01_archive.html Let me know how you get on as I to try this out myself. WG [EMAIL PROTECTED] -Original

RE: Need book

2003-01-09 Thread webguy
There are lots of online resources for dos batch files E.G. http://directory.google.com/Top/Computers/Software/Operating_Systems/x86/DOS /Programming/Languages/Batch/?tc=1/ However dos batch files are very limited. There are a few other options out there. 1) install bash www.cygwin.com this is

RE: cf and exchange

2003-01-09 Thread webguy
You chould have a look at CDO http://www.microsoft.com/exchange/techinfo/development/55/CDO.asp although COM is a little slow/crap in MX. One why around this is to create web services in .NET and use them from CF MX. Also J.J. blogged something about this recently...

Re: Email Quandry

2003-01-09 Thread Jochem van Dieten
Michael Greenberg wrote: Im just concerned with 11,000 emails going out at once that it might bring the server down. Yes it is via SMTP. If the emails are identical you could send them to yourself and BCC them to a bunch of people at the same time (I think the limit is 39). Usual overzealous

RE: JBoss CFMXJ2EE was a lot of other stuff

2003-01-09 Thread webguy
The JBoss install negated my Tomcat install There is a version of jboss that uses tomcat, the standard uses JBossWeb. I'll mess around with it at the Weekend and post anything interesting. WG ~| Archives:

Re: OT: Need book

2003-01-09 Thread Thane Sherrington
At 04:37 PM 1/8/03 -0600, Phillip B wrote: I have to write some batch files for dos that will end up being dynamically written later by ColdFusion. Could someone give me some titles for batch writing books to help me along with this? What do you need to write? I don't think there are any books

RE: Crystal Reports 9 / Reporting Options for CF5/MX?

2003-01-09 Thread John Stanley
I have never user Crystal, but I can tell you that Actuate Reports work well with Cold Fusion and SQL, I speak from personal experience. Here is a link to their product :http://www.actuate.com/products/designers/erdpro/overview.asp -Original Message- From: Ben Koshy [SMTP:[EMAIL

CF 4.01 Problem

2003-01-09 Thread Tangorre, Michael
Hello all. I know CF 4.01 is acient, but gvt regs will not allow anything newer just yet. Anyways, we have a small issue with truncated data. We have a text area on a form that correctly allows for up 5000 characters. When the formis submitted, it all goes into the DB just fine. When pulling

Re: ORDER BY Clause and parsing

2003-01-09 Thread Candace Cottrell
Thanks to everyone who responded. I guess this is going to take a few minutes to do... Maybe I should write a cfc that does this??? For future posterity?? Candace K. Cottrell, Web Developer The Children's Medical Center One Children's Plaza Dayton, OH 45404 937-641-4293

RE: cf and exchange

2003-01-09 Thread Luis Lebron
I use cfpop and cfmail with our exchange server. I haven't had any trouble with them. Luis -Original Message- From: Turetsky, Seth [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 08, 2003 5:09 PM To: CF-Talk Subject: cf and exchange Anyone ever use CF to read mail off an exchange

RE: CF 4.01 Problem

2003-01-09 Thread webguy
Look in the ODBC setting in the admin section. Click the advanced setting for the datasource and make sure the enable long text box is checked. Its somelike the above ages since I saw 4.01 !! WG -Original Message- From: Tangorre, Michael [mailto:[EMAIL PROTECTED]] Sent: 09 January

RE: CF 4.01 Problem

2003-01-09 Thread Tangorre, Michael
that long text option is not an option in CF Admin 4.01 :-/ any other ideas :-) -Original Message- From: webguy [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 09, 2003 8:50 AM To: CF-Talk Subject: RE: CF 4.01 Problem Look in the ODBC setting in the admin section. Click the

RE: CF 4.01 Problem

2003-01-09 Thread Lofback, Chris
If you output the field into the page as plain text rather than into the textarea, are they all displayed? Maybe it's the textarea that is giving you the problem. Maybe try adjusting the wrap properties? And this may sound odd, but if you are retrieving the data with CFPROCPARAM, try appending

MS SQL obdc data source timeout settings

2003-01-09 Thread Smith, Matthew P -CONT(DYN)
A couple of questions regarding connection timeout settings for a MS SQL 2K obdc data source: While trying to run a backup job on the db, the job said that it was unable to go into single-user mode because of the cf connection. This was without any activity on the site, and profiler shows that

RE: Email Quandry

2003-01-09 Thread cfhelp
I have a scheduled task that sends out 30,000+ each day. I have a field in the database Sent I SELECT the TOP 1000 WHERE Sent = 0 Then loop through them and update each to Sent = 1 Then when the RecordCount LS 1000 I update the whole table setting the Sent back to 0. Rick -Original

RE: CF 4.01 Problem

2003-01-09 Thread Tangorre, Michael
not using a stored proc.. just a plain jane query. If you output the variable on the page, it is truncated.. if you do a count on the variable length, it returns 5000. odd. any other thoughts? Mike -Original Message- From: Lofback, Chris [mailto:[EMAIL PROTECTED]] Sent: Thursday,

page load times (not just on the server)...

2003-01-09 Thread cftalk
I am needing to find the page load times from the CLIENT side. Does anyone have a tool or know a way to do this? Brian Yager President - North Alabama Cold Fusion Users Group http://www.nacfug.com Ground-Based Midcourse Defense JPO Contractor CSC (256)313-9397 [EMAIL PROTECTED]

Re: CF 4.01 Problem

2003-01-09 Thread Jochem van Dieten
Tangorre, Michael wrote: not using a stored proc.. just a plain jane query. If you output the variable on the page, it is truncated.. if you do a count on the variable length, it returns 5000. odd. Are you doing the count in CF or in the database? Do they return the same? If so, at what

RE: CF 4.01 Problem

2003-01-09 Thread Tangorre, Michael
counted both in Cf and in the DB, both return 5,000. It cuts off at 255 characters when output in the text area. ideas? -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 09, 2003 9:30 AM To: CF-Talk Subject: Re: CF 4.01 Problem Tangorre,

Re: CF 4.01 Problem

2003-01-09 Thread Jochem van Dieten
Tangorre, Michael wrote: counted both in Cf and in the DB, both return 5,000. It cuts off at 255 characters when output in the text area. ideas? What character is there at position 255? Use Asc() to find out if there are some 0 or 255 values. Jochem

RE: Building and saving a query string

2003-01-09 Thread Luis Lebron
I ended up writing a function to strip the newlines cffunction name=StripNL returnType=string cfargument name=string type=string cfreturn replace(string, #chr(10)#, , all) /cffunction That did the trick. thanks, Luis -Original Message- From: John Paul Ashenfelter

What does this mean?

2003-01-09 Thread Kennerly, Rick H CIV
This is the CF log entry from the scheduler. I find it a little ambiguous. Was the Verity reindex successful...or merely rescheduled? Information,scheduler-3,01/09/03,07:12:00,,[Index Instructions] Executing at Thu Jan 09 07:12:00 EST 2003 Information,scheduler-3,01/09/03,07:12:00,,[Index

Re: ORDER BY Clause and parsing

2003-01-09 Thread Cutter (CF_Talk)
Something like this would be great for sorting book lists, song titles, DVD and video libraries... Cutter Candace Cottrell wrote: Thanks to everyone who responded. I guess this is going to take a few minutes to do... Maybe I should write a cfc that does this??? For future posterity??

Re: page load times (not just on the server)...

2003-01-09 Thread Cutter (CF_Talk)
Wouldn't that completely depend upon the speed of the client's connection? (Dial-Up, Lan, DSL, Cable, etc.)... Cutter cftalk wrote: I am needing to find the page load times from the CLIENT side. Does anyone have a tool or know a way to do this? Brian Yager President - North Alabama Cold

RE: CF 4.01 Problem

2003-01-09 Thread Debbie Dickerson
From most of the old cases, there were only a couple of reasons for this behavior: 1) Old/corrupted version of MDAC You may want to verify the version and validity of your MDAC version. Check the registry key at HKEY_LOCAL_MACHINE \SOFTWARE\Microsoft\DataAccess\FullInstallVer. Also use the

Re: page load times (not just on the server)...

2003-01-09 Thread cftalk
Yes it would...We need to see what the loading times are from different connections. We also want to see if we can improve on it. That is why I am looking for a tool. - Original Message - From: Cutter (CF_Talk) [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, January 09,

Re: page load times (not just on the server)...

2003-01-09 Thread Andrea Galmacci - awd*
Brian, this has nothing to do with CF but it's a nice tool - probably you already know about it... It's not browser dependent (stand alone programme) but it's connection dependent. http://www.alchemy-lab.com/products/eye/index.html HTH, Andrea - Original Message - From: cftalk [EMAIL

Can the native Oracle drivers on MX support an encrypted connection

2003-01-09 Thread Mark W. Breneman
Just looking for a simple yes or no before I go to a meeting later today. Can the native Oracle drivers on MX support an encrypted connection? Or in other words, can the native MX drivers encrypt the communications between CF server and the Oracle server? Thanks Mark W. Breneman -Macromedia

OT: Icons?

2003-01-09 Thread Kris Pilles
Does anyone know of a good source to get some high quality icons for one of our applications Thanks Kris Pilles Website Manager Western Suffolk BOCES 507 Deer Park Rd., Building C Phone: 631-549-4900 x 267 E-mail: [EMAIL PROTECTED]

RE: page load times (not just on the server)...

2003-01-09 Thread Lofback, Chris
If you are using CF Studio 5 (and maybe 4.x), have you looked at Document Weight on the Tools menu? Chris Lofback Sr. Web Developer TRX Integration 28051 US 19 N., Ste. C Clearwater, FL 33761 www.trxi.com -Original Message- From: cftalk [mailto:[EMAIL PROTECTED]] Sent: Thursday,

Re: Icons?

2003-01-09 Thread Andrea Galmacci - awd*
Try this http://www.idev.ch/ic/ Andrea - Original Message - From: Kris Pilles [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, January 09, 2003 4:07 PM Subject: OT: Icons? Does anyone know of a good source to get some high quality icons for one of our

UNSUBSCRIBE

2003-01-09 Thread Ryan Farrell
UNSUBSCRIBE ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq This

RE: UNSUBSCRIBE

2003-01-09 Thread Ryan Farrell
Nuts. The auto unsubscribe link at the bottom of the email isn't working. How do I unsubscribe? Thanks, Ryan -Original Message- From: Ryan Farrell [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 09, 2003 9:06 AM To: CF-Talk Subject: UNSUBSCRIBE UNSUBSCRIBE

RE: CF 4.01 Problem

2003-01-09 Thread Tangorre, Michael
not seing 0 or 255 values... -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 09, 2003 9:40 AM To: CF-Talk Subject: Re: CF 4.01 Problem Tangorre, Michael wrote: counted both in Cf and in the DB, both return 5,000. It cuts off at 255

Another Indirect Reference question

2003-01-09 Thread Robert Polickoski
Hello all, I have another indirect reference question... I am inside an instantiated CFC. The CFC has a variable called THIS.subMenuVisibility which is an array to hold 1 of 2 words, either Visible or Invisible. I amtrying to set elements of this array by indirect reference. The code to do

Unsubscribing

2003-01-09 Thread Ryan Farrell
Hey, folks! Since the auto unsubscribe link at the bottom of these email posts don't work, how do I unsubscribe? Thanks! Ryan ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: CF 4.01 Problem

2003-01-09 Thread Haggerty, Mike
Michael; Had this problem before. I imported the database from Access and the size of the field was NTEXT. Check your tables in SQL Server and make sure the text field is set to either varchar(5000) or TEXT. One of these should work. M -Original Message- From: Tangorre, Michael

RE: Unsubscribing

2003-01-09 Thread Robertson-Ravo, Neil (RX)
send a mail to the moderator... check the website -Original Message- From: Ryan Farrell [mailto:[EMAIL PROTECTED]] Sent: 09 January 2003 15:12 To: CF-Talk Subject: Unsubscribing Hey, folks! Since the auto unsubscribe link at the bottom of these email posts don't work, how do I

RE: CF 4.01 Problem

2003-01-09 Thread Tangorre, Michael
the field is already a text field.. -Original Message- From: Haggerty, Mike [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 09, 2003 10:15 AM To: CF-Talk Subject: RE: CF 4.01 Problem Michael; Had this problem before. I imported the database from Access and the size of the field

RE: page load times (not just on the server)...

2003-01-09 Thread Smith, Matthew P -CONT(DYN)
Off the top of my head, here's the only way I could see doing this: Convert EVERY link to a form.(yuck) Or assign an ID to each link and write a javascript function that monitors for clicks and compares all the ids to the id of the clicked link(or some such). Use javascript to set a hidden form

RE: BlueDragon J2EE on OSX - Working !!!

2003-01-09 Thread Samuel R. Neff
I'd ask them if they have examples of sites they know are using warez software... :-) At 03:48 PM 1/8/2003, you wrote: At 6:39 PM 1/7/3, Vince Bonfanti wrote: JRun 4 + CFMX = $900/CPU + $3400/CPU = $4300/CPU Tomcat + BlueDragon = Free + $1000/server = $1000/server Hmm... how do you respond

RE: Unsubscribing

2003-01-09 Thread John Stanley
Unfortunately, you can't. You are trapped in here with the rest of us, forever and ever and ever...hahahahahha -Original Message- From: Ryan Farrell [SMTP:[EMAIL PROTECTED]] Sent: Thursday, January 09, 2003 10:12 AM To: CF-Talk Subject: Unsubscribing Hey, folks!

Re: CF / Flash Question

2003-01-09 Thread Jason Miller
check out components and data grid. some fantastic resources working and sort with table data and recordsets here http://www.flash-db.com/Components/?swfID=21sComType=Custom also check out flashcomponents.net good luck jay miller Joshua Miller wrote: Thanks Jason, I'll check it out! I

RE: Unsubscribing

2003-01-09 Thread Ryan Farrell
NOOO ! -Original Message- From: John Stanley [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 09, 2003 9:27 AM To: CF-Talk Subject: RE: Unsubscribing Unfortunately, you can't. You are trapped in here with the rest

RE: CF / Flash Question

2003-01-09 Thread Samuel R. Neff
At 10:03 PM 1/8/2003, you wrote: here is the url to the flash wish form: http://www.macromedia.com/support/email/wishform/?6213=9 as far as the table, you could achieve something similar using the DataGrid component on DRK 1. It would involve using some custom cell renderers (there is an example

Re: CF MX cfobject

2003-01-09 Thread Samuel R. Neff
What does the COM object due? Perhaps there is a Java alternative that would work much better in CFMX. Make sure you've installed UR2. At 06:10 PM 1/8/2003, you wrote: I am having trouble getting this object to work via cold fusion. Works fine in asp. In ASP file 'Create ID3Edit object set

Re: Icons?

2003-01-09 Thread Pete Ruckelshaus
http://www.glyfx.com/ Nice stuff. - Original Message - From: Kris Pilles [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, January 09, 2003 10:07 AM Subject: OT: Icons? Does anyone know of a good source to get some high quality icons for one of our applications

Adding All to cfselect

2003-01-09 Thread Luis Lebron
I want to use cfselect to dynamically generate select boxes, however I also need to have an All option as part of the select. Is there any easy way to do this other than adding All to the database field? thanks, Luis R. Lebron Project Manager Sigmatech, Inc

client mangement in MX eliminates embedded form validation

2003-01-09 Thread E. Keith Dodd
Am trying to move several sites from CF5 to MX. Most have clientmanagement enabled. For administrative sections (where I know the browser/system client uses) I use the old embedded form validation (field_required, field_date, etc) in several places. Of course use scripted server-side error

RE: Adding All to cfselect

2003-01-09 Thread Luce, Greg
You can just put an option value=all selectedALL/option between the cfselect and the /cfselect tags. -Original Message- From: Luis Lebron [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 09, 2003 10:43 AM To: CF-Talk Subject: Adding All to cfselect I want to use cfselect to

RE: Adding All to cfselect

2003-01-09 Thread Mosh Teitelbaum
You can manually include any options you want between the start and end tags as in: CFSELECT ... OPTION VALUE=AllAll /CFSELECT Unfortunately, these manually added options will only appear at the bottom of the list. Alternatively, you can use JavaScript to add

RE: Adding All to cfselect

2003-01-09 Thread Luis Lebron
Thanks. -Original Message- From: Luce, Greg [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 09, 2003 10:00 AM To: CF-Talk Subject: RE: Adding All to cfselect You can just put an option value=all selectedALL/option between the cfselect and the /cfselect tags. -Original

RE: Adding All to cfselect

2003-01-09 Thread Tangorre, Michael
i think qforms might work for you better. Go read up on them at www.pengoworks.com the javascript API is very versatile and the container section may be able to help you out. Mike -Original Message- From: Luis Lebron [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 09, 2003 10:55 AM

RE: CF MX cfobject

2003-01-09 Thread Adrocknaphobia Jones
David, I had the same problems when I upgraded to MX. I was using CFXid3 or something like that, and it was using a COM object. The object for one reason or the other wouldn't always load, and when it did, it wasn't reliable. Sometimes locking up my treads. So I moved everything over to a java

RE: Adding All to cfselect

2003-01-09 Thread Luis Lebron
In my case I added OPTION VALUE=All selectAll to make it the default option. thanks, Luis -Original Message- From: Mosh Teitelbaum [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 09, 2003 10:00 AM To: CF-Talk Subject: RE: Adding All to cfselect You can manually include any

Re: JBoss CFMXJ2EE was a lot of other stuff

2003-01-09 Thread Sean A Corfield
On Thursday, Jan 9, 2003, at 03:06 US/Pacific, Dick Applebaum wrote: 1) Create a copy of the Server all named CFMX1 2) Start JBoss with ..././run.sh -c CFMX1 Or just deploy CFMX into the default/deploy area... 3) Copy/rename rds.war to CFMX1/deploy as CFIDE.war (so it will deploy as CFIDE)

RE: Email Quandry

2003-01-09 Thread Owens, Howard
We're purchasing (and may have already purchased) iMS. But here's what I've done in the past: START WITH A FORM SOMETHING LIKE THIS: cfparam name=form.startrow default=1 cfparam name=form.endrow default=300 cfparam name=FORM.SUBJECT default=some subject line cfparam name=FORM.comments default=

RE: Unsubscribing

2003-01-09 Thread Angel Stewart
Welcome to the CF-Talk List! Such a lovely List Such a lovely list (background) Plenty of room at the CF Talk List! Any time of year Any time of year (background) You can find it here You can find it here (background) Last thing I remember I was trying to unsubscribe! I had to find the link

RE: Unsubscribing

2003-01-09 Thread Lee Fuller
lol | -Original Message- | From: Angel Stewart [mailto:[EMAIL PROTECTED]] | Sent: Thursday, January 09, 2003 9:58 AM | To: CF-Talk | Subject: RE: Unsubscribing | | | Welcome to the CF-Talk List! | Such a lovely List | Such a lovely list (background) | Plenty of room at the CF Talk

RE: Unsubscribing

2003-01-09 Thread Mark A. Kruger - CFG
Angel, (lol) wow - you have some real talent there. -Original Message- From: Angel Stewart [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 09, 2003 11:58 AM To: CF-Talk Subject: RE: Unsubscribing Welcome to the CF-Talk List! Such a lovely List Such a lovely list (background) Plenty

RE: Unsubscribing

2003-01-09 Thread Jeffry Houser
I used to work at a place that had Potable Fridays. That meant the company president would buy us all alcohol after lunch. Are you have a potable Thursday, Gel? At 01:58 PM 1/9/2003 -0400, you wrote: Welcome to the CF-Talk List! Such a lovely List Such a lovely list (background) Plenty of

transactions and multiple datasources

2003-01-09 Thread jon hall
I have a set of db inserts involving two datasources and if there is a failure in the 2nd datasource, I need to roll back the transaction on the first datasource. In a perfect world I could somehow hold up the first transaction commit until the transaction on the second datasource has

TSQL Equivalent to Replace

2003-01-09 Thread Duane Boudreau
Is there a TSQL function equivalent to the CF replace function? Thanks, Duane ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

OT

2003-01-09 Thread Everett, Al
mirrors on the ceiling...pink champagne on ice...we are all prisoners here...of our own device ;-) Do you have any idea how SICK I am of hearing Hotel California? Almost as much as Paradise by the Dashboard Lights. ~|

Re: Unsubscribing

2003-01-09 Thread Bryan Stevenson
mirrors on the ceiling...pink champagne on ice...we are all prisoners here...of our own device ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED] -

OT: style sheet weirdness

2003-01-09 Thread Bryan Stevenson
Hi All, I've got a stylesheet with a bunch of text related elements in it. No matter which text element I place first in the list of elements, it will be ignored. For example: STYLE TYPE=text/css /* TEXT */ .Normal_Text_Black { font-family : Verdana, Geneva, Arial;

RE: Email Quandry

2003-01-09 Thread Matt Robertson
The code below will work fine for you. It will throttle down your mail send rate. As is it'll send your 11000 emails in 45 mins or so. This abomination was created when my ISP didn't want me sending more than about 600 msgs per hr on his shared server. I still use it to keep those overzealous

Re: JBoss CFMXJ2EE was a lot of other stuff

2003-01-09 Thread Dick Applebaum
On Thursday, January 9, 2003, at 09:39 AM, Sean A Corfield wrote: snip Anyway, I will read up more on JBoss and see if I can determine what I am doing wrong Good luck, I spent an hour reading the (huge) JBoss Getting Started PDF and couldn't figure it out :) I got similar results to you.

RE: Unsubscribing

2003-01-09 Thread Angel Stewart
*wry chuckle* Over here we have 'pot able' days all the time. And it doesn't mean alcohol. -Gel -Original Message- From: Jeffry Houser [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 09, 2003 2:37 PM To: CF-Talk Subject: RE: Unsubscribing I used to work at a place that had

Re: Unsubscribing

2003-01-09 Thread Michael Dinowitz
I appologise for not finishing up the unsubscribe portion of the link. It should be working now. ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: TSQL Equivalent to Replace

2003-01-09 Thread Duane Boudreau
Oops found it. Replace (doh!) Duane -Original Message- From: Duane Boudreau [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 09, 2003 1:40 PM To: CF-Talk Subject: TSQL Equivalent to Replace Is there a TSQL function equivalent to the CF replace function? Thanks, Duane

Re: TSQL Equivalent to Replace

2003-01-09 Thread ksuh
Uhhh, replace? - Original Message - From: Duane Boudreau [EMAIL PROTECTED] Date: Thursday, January 9, 2003 11:40 am Subject: TSQL Equivalent to Replace Is there a TSQL function equivalent to the CF replace function? Thanks, Duane

RE: UNSUBSCRIBE

2003-01-09 Thread Costas Piliotis
Link seems to work fine for me... Maybe the internet is broken... -Original Message- From: Ryan Farrell [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 09, 2003 7:08 AM To: CF-Talk Subject: RE: UNSUBSCRIBE Nuts. The auto unsubscribe link at the bottom of the email isn't working.

CFMX on J2EE for Linux Performance Brief

2003-01-09 Thread Stacy Young
There's a new performance brief on DesDev for CFMX. It seems CFMX for J2EE on Linux smokes all other platforms...and is even more impressive when compared to CF5 on Linux...now I wonder what the metrics would look like on RedHat Advanced server using BEA's JRockit JVM (although not supported) !!

Re: OT: style sheet weirdness

2003-01-09 Thread Jerry Johnson
What browser? It is working fine for me on ie6 Jerry Johnson [EMAIL PROTECTED] 01/09/03 01:50PM Hi All, I've got a stylesheet with a bunch of text related elements in it. No matter which text element I place first in the list of elements, it will be ignored.

Verity Error

2003-01-09 Thread Chris Alvarado
Well, I have a Verity issue. I am trying to remove a file from a verity collection and when I try this I get the following error, and due to the complete lack of documentation on CF + Varity I am stumped. Anyone want to take a stab? Error # -33 [ffdf] VdkCollectionSubmit Thanks all,

RE: Unsubscribing

2003-01-09 Thread Smith, Matthew P -CONT(DYN)
You guys cook at work sometimes? Matt -Original Message- From: Angel Stewart [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 09, 2003 1:13 PM To: CF-Talk Subject: RE: Unsubscribing *wry chuckle* Over here we have 'pot able' days all the time. And it doesn't mean alcohol. -Gel

Re: Unsubscribing

2003-01-09 Thread Michael Dinowitz
Now that the issue is fixed, can we please move the OT conversation about it to CF-Community where it's already being discussed. Thanks I appologise for not finishing up the unsubscribe portion of the link. It should be working now.

Re: OT: style sheet weirdness

2003-01-09 Thread Bryan Stevenson
IE 5.5 SP2 Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED] - Macromedia Associate Partner www.macromedia.com

BlueDragon J2EE on OSX - Working !!!

2003-01-09 Thread vince
I've read this several times, and I'm still trying to understand your point. If people steal JRun and CFMX/J2EE, then BlueDragon loses it's price advantage? If people steal BlueDragon, then they have an even greater price advantage over JRun/CFMX? There are people who will rip you off no matter

trigger problem

2003-01-09 Thread Richard Meredith-Hardy
Dear all Rather than looping over a list to insert multiple log rows, it occurred to me that I could have a 'dummy' column in the master table so one inserts all logs at once thus: UPDATE Mymaster SET mydummy = 4 WHERE mykey IN(5l,67,21) and then have a trigger in the 'Mymaster' table which

submit cfform without submit button

2003-01-09 Thread Jeremy Bunton
Hello all, I know this isn't strictly a CF issue but I am using CF at the momeny so here we go. I have a simple form with two text fields one for username and one for password. Here is the code. cfform action=checkin.cfm method=post enctype=multipart/form-data cfinput class=copy required=yes

RE: submit cfform without submit button

2003-01-09 Thread Timothy Heald
It's already the default in IE. In NN you need to look at the onKey events, should be like onKeyDown, onKeyUp, onKeyPress, something like that. Then when the event is triggered you kick of a script that does a form submit. Tim -Original Message- From: Jeremy Bunton [mailto:[EMAIL

OT: Hal Helms DevNotes

2003-01-09 Thread Stephenie
Has anyone used Hal Helms DevNotes on CFMX? I am having an issue that I can't figure out and wondered if it is due to the fact I have it installed on CFMX vs CF5 ~~ Stephenie Hamilton Macromedia Certified ColdFusion Professional CFXHosting --- Outgoing mail is certified Virus Free. Checked

Re: Nested Tree DHTML

2003-01-09 Thread Richard Meredith-Hardy
I have something like this (though not 215 seconds worth) and get around it by only running the nested queries when a change is made and it creates a hard page (which can be CFinserted as required) John Quarto-vonTivadar wrote: You mean the Joe Celko model? It's a great way to store tree data

RE: submit cfform without submit button

2003-01-09 Thread Adrocknaphobia Jones
Tell your boss I think he's an idiot. That such a usability no-no. Adam Wayne Lehman Web Systems Developer Johns Hopkins Bloomberg School of Public Health Distance Education Division -Original Message- From: Jeremy Bunton [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 09, 2003 3:07

JDBC Type2 to DB2 UDB OS/390

2003-01-09 Thread Earl, George
I successfully established a JDBC Type4 connection to DB2 UDB OS/390 using the driver supplied with CFMX. Now I'm trying to set up a JDBC Type2 connection. I added the class path for the JDBC driver files in CFMX Admin. I selected 'Other' from the Driver drop down list in the Add New Data Source

RE: submit cfform without submit button

2003-01-09 Thread Jeremy Bunton
I strongly agree, I have made that point, and he didn't think it was a big deal, but we'll see what he says now that I have it working. I am sure he will change his mind. Jeremy -Original Message- From: Adrocknaphobia Jones [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 09, 2003 3:33

Re: BlueDragon J2EE on OSX - Working !!!

2003-01-09 Thread S . Isaac Dealey
Besides all that, I've often felt that I'd rather have people steal my software than pay for my competitors. ;-) Even stolen software is free advertising. :) s. isaac dealey954-776-0046 new epoch http://www.turnkey.to lead architect, tapestry cms

RE: JDBC Type2 to DB2 UDB OS/390

2003-01-09 Thread Dave Watts
I successfully established a JDBC Type4 connection to DB2 UDB OS/390 using the driver supplied with CFMX. Now I'm trying to set up a JDBC Type2 connection. I added the class path for the JDBC driver files in CFMX Admin. I selected 'Other' from the Driver drop down list in the Add New

Re: JDBC Type2 to DB2 UDB OS/390

2003-01-09 Thread Jochem van Dieten
Earl, George wrote: I successfully established a JDBC Type4 connection to DB2 UDB OS/390 using the driver supplied with CFMX. Now I'm trying to set up a JDBC Type2 connection. I added the class path for the JDBC driver files in CFMX Admin. I selected 'Other' from the Driver drop down list in

RE: cf and exchange

2003-01-09 Thread Turetsky, Seth
Luis and webguy, I would like to stick with Cf if possible to do this. But I'm not even sure if it is at our company, do you know what service needs to be running on exchange for cfpop to work thanks, seth -Original Message- From: Luis Lebron [mailto:[EMAIL PROTECTED]] Sent: Thursday,

RE: cf and exchange

2003-01-09 Thread Dave Watts
I would like to stick with Cf if possible to do this. But I'm not even sure if it is at our company, do you know what service needs to be running on exchange for cfpop to work Just connect to the Exchange server with any POP3 client, and see if that works. If it does, you should be able to

RE: submit cfform without submit button

2003-01-09 Thread Owens, Howard
So many times ... clients or bosses have asked me for things that I knew was wrong, but I've given it to them ... and then ... they don't like it. Sometimes battles are won by not fighting them. H. -Original Message- From: Jeremy Bunton [SMTP:[EMAIL PROTECTED]] Sent: Thursday,

Re: OT: style sheet weirdness

2003-01-09 Thread Christian Cantrell
Try removing the semicolons from the last properites in each of your classes. For instance: .Normal_Text_Black { font-family: Verdana, Geneva, Arial; font-size: 12px; color: 00 } (No semicolon after color.) Christian On Thursday, January 9, 2003, at 01:50 PM, Bryan

transactions and multiple datasources

2003-01-09 Thread Mike Alberts
According to Mastering ColdFusion 5: Within a transaction block, you can write queries to more than one database; however, you must commit or rollback the transaction to one database before writing a query to another database. Not what you want to hear I'm sure, but sounds like it can't be

CFMX App Server Error

2003-01-09 Thread Jeff D. Chastain
Okay, this is getting really frustrating. Whenever I start my machine, the CFMX App Server service is terminating with a 'service-specific error 2'. Sometimes if I do a restart on my machine I can get it to start and work - other times, no joy. I have uninstalled CFMX and reinstalled it. I

cfc best practice questions

2003-01-09 Thread mynews
OK, I just upgraded to CFMX and I am trying to figure out the best way to handle a form. Usually, in an admin area, I have an action page that handles the add/update/delete for data in a table. This is the action page for the add update form. As an example I may have 3 pages: view

SOLVED Re: OT: style sheet weirdness

2003-01-09 Thread Bryan Stevenson
OK...the issue was the use of underscores in the style element names...Netscape doesn't like it (at least ver. 4.07) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED]

  1   2   >