Re: QUERY IN performance hit

2002-12-23 Thread Jochem van Dieten
Cedric Villat wrote:
 I'm doing a query like this:
 
 cfquery name=updateTicket datasource=#request.dsn#
 username=#request.dbuser# password=#request.dbpass#
   UPDATE Tickets
   SET  folder = cfqueryparam cfsqltype=CF_SQL_INTEGER
 value=#getEscalationInfo.eFolder#,
 dateUpdated = cfqueryparam cfsqltype=CF_SQL_TIMESTAMP
 value=#CreateODBCDateTime(Now())#
   WHERE ticketID IN (cfqueryparam cfsqltype=CF_SQL_VARCHAR
 value=#tickList# list=Yes)
  /cfquery
 
 The tickList can contain 20-30,000+ items, and performing this query takes
 forever. What can I do to improve this a bit more? Perhaps doing multiple
 updates within the cfquery or doing ticketID = #List[1]# OR ticketIS =
 #List[2]# etc? Any ideas?

I don't think that the translation to ... OR  is going to help, most 
databases do that internal anyway. Best would be if you got the ticklist 
from the same database, then you could just use a join.

Jochem

~|
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
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



Re: Page Breaks for Printing

2002-12-23 Thread James Smith
I have been using this for some time and have a question I have been meaning
to ask from day 1 but never got round to it ;-)

If the document is say 2 pages long and the first page (before the CSS page
break) is short, say 50% page height, it prints alligned to the BOTTOM of
the page, page 2 then prints top alligned.  Anyone know how to fix this?

--
James Smith
[EMAIL PROTECTED]

- Original Message -
From: Jason Lees (National Express) [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Thursday, December 19, 2002 2:11 PM
Subject: RE: Page Breaks for Printing


 We use page breaks, and its a simple tag extention of the classic
paragraph
 Tag

 p STYLE=page-break-before: always

 The Complication is deciding on the location to place the Tag.

 Jason Lees
 Development Team Leader
 National Express Coaches Ltd.



 -Original Message-
 From: Chad [mailto:[EMAIL PROTECTED]]
 Sent: 19 December 2002 14:03
 To: CF-Talk
 Subject: Page Breaks for Printing


 Has anyone figured out how to make page breaks for printing?

 I.E. have the user click one button to print all of the new orders.
 Each order on a separate piece of 8.5x11 paper.

 Javascript?  Generate a PDF?

 Thanks!


 
~|
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
Get the mailserver that powers this list at http://www.coolfusion.com



Re: Random SQL statement

2002-12-23 Thread James Smith
Could you not use something like

Query1
SELECT yourIDField
FROM yourTableName

Query2
SELECT yourIDField
FROM yourTableName
WHERE yourIDField = #randRange(1,Query1.recordCount)#

If the list of items is fairly stable you could drop Query1 and change the
last line of query2 to
WHERE yourIDField = #randRange(1,600)#

--
James Smith
[EMAIL PROTECTED]

- Original Message -
From: Chad [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, December 18, 2002 5:08 PM
Subject: Random SQL statement


 I have a table with a Unique ID field and I would like to do a random
 select on the table UID.

 Basically I want to send the user to a page that displays that random
 record.

 Does SQL have a random function?  I cant find anything in my books.
 SELECT rand(ID)
 FROM table

 Or should I select all records from the table and use CF to pick a
 random record from the dataset?

 Thanks,
 Chad

 
~|
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 list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



MS CF?

2002-12-23 Thread Len Conrad
http://theregister.co.uk/content/4/28667.html




~|
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
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: Print size for CF pages

2002-12-23 Thread Anthony Wong
Would be interested to see if CSS would be able to solve this printing
issue. Wrapping may not be required in this case cos the result is displayed
on tables with lots of columns(that's when the print area only covers half
of the these columns)

I think PDF is a nice solution but the problem is that client is only
interested in free solutions and it must work in Linux environment(CFMX is
on Linux). I've searched high and low and definitely not an easy one to
find.

Do check out www.pdfzone.com. Saw a couple but it's not what i was looking
for.

-Ant

-Original Message-
From: Jason Miller [mailto:[EMAIL PROTECTED]]
Sent: Friday, December 20, 2002 4:00 PM
To: CF-Talk
Subject: Re: Print size for CF pages


Sorry I can't be more specific - but there is a CSS style that helps
control print versions. I know it specifically addresses fonts and some
colors - maybe sizes too. I would check w3c.org for more specifics.
I just got caught in a half hour black hole and couldn't find
specifically what I was looking for in regards to printing. I need to
control this myself as well so would appreciate if you shared.

One thing I have considered is a print friendly button that compiles the
page requested (on the fly or daily/weekly ) rips to a PDF for perfect
printing.


Jay

Anthony Wong wrote:

I've noticed that when the content of a page goes beyond a certain browser
width, the print out will cut off those extended areas. Is there a work
around to ensure that all the contents in the browser are printed?

Am using IE.

Thanks.

-Ant



~|
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
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



Re: MS CF?

2002-12-23 Thread James Smith
All I can say is Please God NO

Microsoft bashing asside (I use it on my desktop) I really don't want to see
this happen to the MM products, the last thing they need is to be taken from
useful, user friendly tools and turned into bloated, buggy, unstable cr**.

Just my 2p.

--
James Smith
[EMAIL PROTECTED]

- Original Message -
From: Len Conrad [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Monday, December 23, 2002 10:06 AM
Subject: MS CF?


 http://theregister.co.uk/content/4/28667.html




 
~|
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
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



Re: MS CF?

2002-12-23 Thread Michael Dinowitz
There is a gem in the article though. This mention:
 The ColdFusion web application server is regarded as superior to Microsoft's
Active Server Pages (ASPs) and even Santa Clara, California-based Sun's Java
Server Pages (JSPs) because of its simplicity, power and completeness.
ColdFusion MX, meanwhile, uses ColdFusion Mark-up Language (CFML) tags that
compile to Java. 
That being said, this thread is going to spawn into a whole MS bashing debate
and is best moved to a non-technical list such as CF-OT.


 All I can say is Please God NO

 Microsoft bashing asside (I use it on my desktop) I really don't want to see
 this happen to the MM products, the last thing they need is to be taken from
 useful, user friendly tools and turned into bloated, buggy, unstable cr**.

 Just my 2p.

 --
 James Smith
 [EMAIL PROTECTED]

 - Original Message -
 From: Len Conrad [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Monday, December 23, 2002 10:06 AM
 Subject: MS CF?


  http://theregister.co.uk/content/4/28667.html
 
 
 
 
 
 
~|
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 list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: MS CF?

2002-12-23 Thread Les Mizzell
 
: http://theregister.co.uk/content/4/28667.html


I'll have to kill myself if this happens. Really.
~|
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 list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: MS CF?

2002-12-23 Thread Robertson-Ravo, Neil (RX)
I doubt this will happen, Microsoft have no need to look at CF or
Macromedia; its not their bag MM are of no threat to MS this is
reflected in the two turnovers..Billions v's Millions.

-Original Message-
From: Les Mizzell [mailto:[EMAIL PROTECTED]]
Sent: 23 December 2002 10:12
To: CF-Talk
Subject: RE: MS CF?


 
: http://theregister.co.uk/content/4/28667.html


I'll have to kill myself if this happens. Really.

~|
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
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: MS CF?

2002-12-23 Thread Jason Lees (National Express)
If it happens it happens, being a developer I'll use whatever tool's I'm
told to use either by Clients or the company I work for at the time.

As for if MS buys MM personally I can see it happening, based on the
aqusitions its made over the years, and also the fact that the only tools MS
have for web design are Front Page and ASP.Net, and they arnt the easiest to
use.

Well thats my two penneth. 

Jason Lees
Development Team Leader
National Express Coaches Ltd.



-Original Message-
From: Len Conrad [mailto:[EMAIL PROTECTED]]
Sent: 23 December 2002 10:07
To: CF-Talk
Subject: MS CF?


http://theregister.co.uk/content/4/28667.html





~|
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 list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



Re: Page Breaks for Printing

2002-12-23 Thread Jochem van Dieten
Quoting James Smith [EMAIL PROTECTED]:
 
 If the document is say 2 pages long and the first page (before the CSS
 page break) is short, say 50% page height, it prints alligned to the
 BOTTOM of the page, page 2 then prints top alligned.  Anyone know how
 to fix this?

Show the stylesheet. And if you still have layout left in your HTML, we
need that too.

Jochem

-- 
Friends don't let friends use table-based layouts.
~|
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
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



Re: MS CF?

2002-12-23 Thread Jon Hall
I'll believe it when I see it. Anyway, if Microsoft has you in their
sights...you know you have to be doing something right.

Of course, Microsoft isn't allowed to distribute any Java technology
without making nice with Sun, because of the lawsuit, and we all know
that isn't going to happen.
So if Microsoft were to buy Macromedia, they would have to either kill
CF, sell it off, or perhaps keep the name and rewrite the engine as
a .Net app. None of which make me exactly happy...except maybe the
chance to replace Studio with VS.Net ;)

Oh well...one thing is for sure, Macromedia's stock is going to get a
nice push for a bit if Wall Street catches this rumor.

-- 
jon
mailto:[EMAIL PROTECTED]

Monday, December 23, 2002, 5:06:31 AM, you wrote:

LC http://theregister.co.uk/content/4/28667.html

~|
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 list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



Re: MS CF?

2002-12-23 Thread Jochem van Dieten
Quoting Len Conrad [EMAIL PROTECTED]:

 http://theregister.co.uk/content/4/28667.html

Last month it was Apple, next month it probably is Adobe (unless
everybody will be busy reporting real news).

shrug

Jochem

-- 
Friends don't let friends use table-based layouts.
~|
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 list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



Re: Architecture advice please ...

2002-12-23 Thread Jochem van Dieten
Quoting Michael Kear [EMAIL PROTECTED]:
 
 We have one main site, (I'll call it MAINSITE) which consists of a
 shop and lots of .asp and html pages, and a couple of cold-fusion
 based separate smaller sites.  NO problem so far, but the MAINSITE has
 lots of interactive ColdFusion pages, which are integrated with the
 site.  
 
 New Server: 
 MAIN SITE
 - SQL 2000 (Only the .asp content database is installed, NO databases
 used by cold fusion installed here)
 - SITE SERVER administering the site
 - MAIL -ENABLE
 - SSL - MAIN SITE - ReNew  Reactivated.
 - IP Address will takes over for the site
 
 1) CHOICE-LIVE - OLD CHOICE (Current SERVER)
 - SQL  7 as it is no change (including its DATABASE NO Change)
 - INETINFO  NO Change
 - COLD FUSION  No Change
 - SITE SERVER + Commerce - DISABLE
 - MAIL - DISABLE 
 - ONLY IP Address will be changed.
 - SSL for Subsidiary sites No Change
 
 The problem with this configuration seems to me to be that relative
 links to the main site on  the interactive pages wont work and will
 all have to be changed to absolute links, and none of the cfincludes
 will work now.  Is there a better way to set it up?

I presume you have already told your clients sysadmin this, and that he:
- thinks they won't break
- thinks changing is easy

Insist on decent testing before moving to production, that will show if
things break or not. If they break, make sure you have a quote for
fixing the broken parts ready.

If I had to set it up, I would keep websites on 1 server and databases
on another one, unless there are pressing requirements/circumstances
that you have not described. Depending on load email would probably go
on the database server, with some very tight access control lists on the
firewall/router for that server.

Jochem

-- 
Friends don't let friends use table-based layouts.
~|
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
Get the mailserver that powers this list at http://www.coolfusion.com



RE: QUERY IN performance hit

2002-12-23 Thread Ryan Emerle
Well, by using a list like that, you are kind of defeating the indexing mechanism of 
the SQL server.  You could try to simplify the list by grouping it in large sequential 
chunks and using the BETWEEN operator.

You also want to make sure that TicketID is indexed (if not the primary key).

HTH
--
Ryan Emerle

-Original Message-
From: Cedric Villat [mailto:[EMAIL PROTECTED]]
Sent: Sunday, December 22, 2002 9:35 PM
To: CF-Talk
Subject: QUERY IN performance hit


I'm doing a query like this:

cfquery name=updateTicket datasource=#request.dsn#
username=#request.dbuser# password=#request.dbpass#
  UPDATE Tickets
  SET  folder = cfqueryparam cfsqltype=CF_SQL_INTEGER
value=#getEscalationInfo.eFolder#,
dateUpdated = cfqueryparam cfsqltype=CF_SQL_TIMESTAMP
value=#CreateODBCDateTime(Now())#
  WHERE ticketID IN (cfqueryparam cfsqltype=CF_SQL_VARCHAR
value=#tickList# list=Yes)
 /cfquery

The tickList can contain 20-30,000+ items, and performing this query takes
forever. What can I do to improve this a bit more? Perhaps doing multiple
updates within the cfquery or doing ticketID = #List[1]# OR ticketIS =
#List[2]# etc? Any ideas?

Cedric



~|
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
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



DateFormat in CFMX

2002-12-23 Thread Randell B Adkins
Is there a dateformat issue using CFMX that was addressed in
some update/patch, or some means??

When doing a directory listing, some directories will report
fine and format the date accordingly using the DateFormat
function. However, there are some directories which will
throw an error. Nothing special regarding the directory.

Thanks in Advance!



~|
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
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



Re: DateFormat in CFMX

2002-12-23 Thread Randell B Adkins
After checking the archives, there did seem to be
an issue with this. 

Rob Rohan - Did you determine what the problem was as
well as a fix?

Sean A Corfield - Any ideas on it? It works on some directories
but noth others.

Thanks!!



 [EMAIL PROTECTED] 12/23/02 08:32AM 
Is there a dateformat issue using CFMX that was addressed in
some update/patch, or some means??

When doing a directory listing, some directories will report
fine and format the date accordingly using the DateFormat
function. However, there are some directories which will
throw an error. Nothing special regarding the directory.

Thanks in Advance!




~|
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
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



Re: DateFormat in CFMX

2002-12-23 Thread Taz
What's the error? Could you give us some examples of data that works and
data that throws errors?

Perhaps the locale of the system is conflicting. For example you may find
that dates such as 02/03/2002 are working but 14/03/2002 are not because its
mixing up the day/month as month/day (taking non-US dates as example)

Taz


 Is there a dateformat issue using CFMX that was addressed in
 some update/patch, or some means??

 When doing a directory listing, some directories will report
 fine and format the date accordingly using the DateFormat
 function. However, there are some directories which will
 throw an error. Nothing special regarding the directory.

~|
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 list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: DateFormat in CFMX

2002-12-23 Thread Raymond Camden
What locale are you under?

===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc

Email: [EMAIL PROTECTED]
WWW  : www.camdenfamily.com/morpheus
Yahoo IM : morpheus

My ally is the Force, and a powerful ally it is. - Yoda 

 -Original Message-
 From: Randell B Adkins [mailto:[EMAIL PROTECTED]] 
 Sent: Monday, December 23, 2002 7:53 AM
 To: CF-Talk
 Subject: Re: DateFormat in CFMX
 
 
 After checking the archives, there did seem to be
 an issue with this. 
 
 Rob Rohan - Did you determine what the problem was as
 well as a fix?
 
 Sean A Corfield - Any ideas on it? It works on some 
 directories but noth others.
 
 Thanks!!
 
 
 
  [EMAIL PROTECTED] 12/23/02 08:32AM 
 Is there a dateformat issue using CFMX that was addressed in 
 some update/patch, or some means??
 
 When doing a directory listing, some directories will report 
 fine and format the date accordingly using the DateFormat 
 function. However, there are some directories which will 
 throw an error. Nothing special regarding the directory.
 
 Thanks in Advance!
 
 
 
 
 
~|
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
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



Re: DateFormat in CFMX

2002-12-23 Thread Randell B Adkins
As simply as it is:
cfdirectory directory=C:\ action=LIST name=test filter=*.

cfoutput query=test
#name#  - #LSDateFormat(DateLastModified, DD, )#br
/cfoutput

Some directories would return (as expected):
Directory1 - December 12, 2002
Directory2 - December 12, 2002
Directory3 - December 12, 2002

Then lets say the 4th Directory would error out:
Directory1 - 

Error:
The value Tuesday, 17 December 2002 05:21:09 PM EST
could not be converted to a date.

Why would directories 1-3 process fine and Directory 4
error out? All are using the same DateFormat function
with the DateLastModified attribute from the CFDirectory
function.






 [EMAIL PROTECTED] 12/23/02 08:57AM 
What's the error? Could you give us some examples of data that works
and
data that throws errors?

Perhaps the locale of the system is conflicting. For example you may
find
that dates such as 02/03/2002 are working but 14/03/2002 are not
because its
mixing up the day/month as month/day (taking non-US dates as example)

Taz


 Is there a dateformat issue using CFMX that was addressed in
 some update/patch, or some means??

 When doing a directory listing, some directories will report
 fine and format the date accordingly using the DateFormat
 function. However, there are some directories which will
 throw an error. Nothing special regarding the directory.


~|
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 list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: DateFormat in CFMX

2002-12-23 Thread Randell B Adkins
In this case, English (US). 

But could be lets say English (New Zealand)
or really any other Locale.

Would using the LSDateFormat function be better
if the Locale could vary?



 [EMAIL PROTECTED] 12/23/02 09:05AM 
What locale are you under?

===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc

Email: [EMAIL PROTECTED] 
WWW  : www.camdenfamily.com/morpheus 
Yahoo IM : morpheus

My ally is the Force, and a powerful ally it is. - Yoda 

 -Original Message-
 From: Randell B Adkins [mailto:[EMAIL PROTECTED]] 
 Sent: Monday, December 23, 2002 7:53 AM
 To: CF-Talk
 Subject: Re: DateFormat in CFMX
 
 
 After checking the archives, there did seem to be
 an issue with this. 
 
 Rob Rohan - Did you determine what the problem was as
 well as a fix?
 
 Sean A Corfield - Any ideas on it? It works on some 
 directories but noth others.
 
 Thanks!!
 
 
 
  [EMAIL PROTECTED] 12/23/02 08:32AM 
 Is there a dateformat issue using CFMX that was addressed in 
 some update/patch, or some means??
 
 When doing a directory listing, some directories will report 
 fine and format the date accordingly using the DateFormat 
 function. However, there are some directories which will 
 throw an error. Nothing special regarding the directory.
 
 Thanks in Advance!
 
 
 
 
 

~|
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
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: DateFormat in CFMX

2002-12-23 Thread Raymond Camden
I'm not saying it could cause an issue, but it does affect how the date
parsing works - I'm just trying to narrow down the posibilities. As it
stands, I ran this:

cfoutput#dateformat('Tuesday, 17 December 2002 05:21:09 PM
EST')#/cfoutput

and got an error on my box. Looks like it may be a bug unless I'm
missing something.

===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc

Email: [EMAIL PROTECTED]
WWW  : www.camdenfamily.com/morpheus
Yahoo IM : morpheus

My ally is the Force, and a powerful ally it is. - Yoda 

 -Original Message-
 From: Randell B Adkins [mailto:[EMAIL PROTECTED]] 
 Sent: Monday, December 23, 2002 8:11 AM
 To: CF-Talk
 Subject: RE: DateFormat in CFMX
 
 
 In this case, English (US). 
 
 But could be lets say English (New Zealand)
 or really any other Locale.
 
 Would using the LSDateFormat function be better
 if the Locale could vary?
 
 
 
  [EMAIL PROTECTED] 12/23/02 09:05AM 
 What locale are you under?
 
 ==
 =
 Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
 
 Email: [EMAIL PROTECTED] 
 WWW  : www.camdenfamily.com/morpheus 
 Yahoo IM : morpheus
 
 My ally is the Force, and a powerful ally it is. - Yoda 
 
  -Original Message-
  From: Randell B Adkins [mailto:[EMAIL PROTECTED]]
  Sent: Monday, December 23, 2002 7:53 AM
  To: CF-Talk
  Subject: Re: DateFormat in CFMX
  
  
  After checking the archives, there did seem to be
  an issue with this.
  
  Rob Rohan - Did you determine what the problem was as
  well as a fix?
  
  Sean A Corfield - Any ideas on it? It works on some
  directories but noth others.
  
  Thanks!!
  
  
  
   [EMAIL PROTECTED] 12/23/02 08:32AM 
  Is there a dateformat issue using CFMX that was addressed in
  some update/patch, or some means??
  
  When doing a directory listing, some directories will report
  fine and format the date accordingly using the DateFormat 
  function. However, there are some directories which will 
  throw an error. Nothing special regarding the directory.
  
  Thanks in Advance!
  
  
  
  
  
 
 
~|
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 list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: DateFormat in CFMX

2002-12-23 Thread Randell B Adkins
I agree. Running the line as you did, does result in an error
with the class: java.util.Date

Can anyone from Macromedia chime in on this???



 [EMAIL PROTECTED] 12/23/02 09:21AM 
I'm not saying it could cause an issue, but it does affect how the
date
parsing works - I'm just trying to narrow down the posibilities. As it
stands, I ran this:

cfoutput#dateformat('Tuesday, 17 December 2002 05:21:09 PM
EST')#/cfoutput

and got an error on my box. Looks like it may be a bug unless I'm
missing something.

===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc

Email: [EMAIL PROTECTED] 
WWW  : www.camdenfamily.com/morpheus 
Yahoo IM : morpheus

My ally is the Force, and a powerful ally it is. - Yoda 

 -Original Message-
 From: Randell B Adkins [mailto:[EMAIL PROTECTED]] 
 Sent: Monday, December 23, 2002 8:11 AM
 To: CF-Talk
 Subject: RE: DateFormat in CFMX
 
 
 In this case, English (US). 
 
 But could be lets say English (New Zealand)
 or really any other Locale.
 
 Would using the LSDateFormat function be better
 if the Locale could vary?
 
 
 
  [EMAIL PROTECTED] 12/23/02 09:05AM 
 What locale are you under?
 
 ==
 =
 Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
 
 Email: [EMAIL PROTECTED] 
 WWW  : www.camdenfamily.com/morpheus 
 Yahoo IM : morpheus
 
 My ally is the Force, and a powerful ally it is. - Yoda 
 
  -Original Message-
  From: Randell B Adkins [mailto:[EMAIL PROTECTED]] 
  Sent: Monday, December 23, 2002 7:53 AM
  To: CF-Talk
  Subject: Re: DateFormat in CFMX
  
  
  After checking the archives, there did seem to be
  an issue with this.
  
  Rob Rohan - Did you determine what the problem was as
  well as a fix?
  
  Sean A Corfield - Any ideas on it? It works on some
  directories but noth others.
  
  Thanks!!
  
  
  
   [EMAIL PROTECTED] 12/23/02 08:32AM 
  Is there a dateformat issue using CFMX that was addressed in
  some update/patch, or some means??
  
  When doing a directory listing, some directories will report
  fine and format the date accordingly using the DateFormat 
  function. However, there are some directories which will 
  throw an error. Nothing special regarding the directory.
  
  Thanks in Advance!
  
  
  
  
  
 
 

~|
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
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: DateFormat in CFMX

2002-12-23 Thread Raymond Camden
Of course, if you actually convert the string to a real date ob, it
works just fine...

cfoutput#dateformat(parseDateTime('Tuesday, 17 December 2002 05:21:09
PM EST'))#/cfoutput

===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc

Email: [EMAIL PROTECTED]
WWW  : www.camdenfamily.com/morpheus
Yahoo IM : morpheus

My ally is the Force, and a powerful ally it is. - Yoda 

 -Original Message-
 From: Randell B Adkins [mailto:[EMAIL PROTECTED]] 
 Sent: Monday, December 23, 2002 8:26 AM
 To: CF-Talk
 Subject: RE: DateFormat in CFMX
 
 
 I agree. Running the line as you did, does result in an error 
 with the class: java.util.Date
 
 Can anyone from Macromedia chime in on this???
 
 
 
  [EMAIL PROTECTED] 12/23/02 09:21AM 
 I'm not saying it could cause an issue, but it does affect 
 how the date parsing works - I'm just trying to narrow down 
 the posibilities. As it stands, I ran this:
 
 cfoutput#dateformat('Tuesday, 17 December 2002 05:21:09 PM 
 EST')#/cfoutput
 
 and got an error on my box. Looks like it may be a bug unless 
 I'm missing something.
 
 ==
 =
 Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
 
 Email: [EMAIL PROTECTED] 
 WWW  : www.camdenfamily.com/morpheus 
 Yahoo IM : morpheus
 
 My ally is the Force, and a powerful ally it is. - Yoda 
 
  -Original Message-
  From: Randell B Adkins [mailto:[EMAIL PROTECTED]]
  Sent: Monday, December 23, 2002 8:11 AM
  To: CF-Talk
  Subject: RE: DateFormat in CFMX
  
  
  In this case, English (US).
  
  But could be lets say English (New Zealand)
  or really any other Locale.
  
  Would using the LSDateFormat function be better
  if the Locale could vary?
  
  
  
   [EMAIL PROTECTED] 12/23/02 09:05AM 
  What locale are you under?
  
  ==
  =
  Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
  
  Email: [EMAIL PROTECTED] 
  WWW  : www.camdenfamily.com/morpheus 
  Yahoo IM : morpheus
  
  My ally is the Force, and a powerful ally it is. - Yoda
  
   -Original Message-
   From: Randell B Adkins [mailto:[EMAIL PROTECTED]]
   Sent: Monday, December 23, 2002 7:53 AM
   To: CF-Talk
   Subject: Re: DateFormat in CFMX
   
   
   After checking the archives, there did seem to be
   an issue with this.
   
   Rob Rohan - Did you determine what the problem was as
   well as a fix?
   
   Sean A Corfield - Any ideas on it? It works on some 
 directories but 
   noth others.
   
   Thanks!!
   
   
   
[EMAIL PROTECTED] 12/23/02 08:32AM 
   Is there a dateformat issue using CFMX that was addressed in some 
   update/patch, or some means??
   
   When doing a directory listing, some directories will report fine 
   and format the date accordingly using the DateFormat function. 
   However, there are some directories which will throw an error. 
   Nothing special regarding the directory.
   
   Thanks in Advance!
   
   
   
   
   
  
  
 
 
~|
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
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: DateFormat in CFMX

2002-12-23 Thread Randell B Adkins
Actually I found the resolution based on the Locale of the system.

I had to use the LSDateFormat/ LSTimeFormat in conjunction with 
the parseDateTime.

So far my testing has came back positive. More testing to go!

Thanks Ray!



 [EMAIL PROTECTED] 12/23/02 09:35AM 
Of course, if you actually convert the string to a real date ob, it
works just fine...

cfoutput#dateformat(parseDateTime('Tuesday, 17 December 2002
05:21:09
PM EST'))#/cfoutput

===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc

Email: [EMAIL PROTECTED] 
WWW  : www.camdenfamily.com/morpheus 
Yahoo IM : morpheus

My ally is the Force, and a powerful ally it is. - Yoda 

 -Original Message-
 From: Randell B Adkins [mailto:[EMAIL PROTECTED]] 
 Sent: Monday, December 23, 2002 8:26 AM
 To: CF-Talk
 Subject: RE: DateFormat in CFMX
 
 
 I agree. Running the line as you did, does result in an error 
 with the class: java.util.Date
 
 Can anyone from Macromedia chime in on this???
 
 
 
  [EMAIL PROTECTED] 12/23/02 09:21AM 
 I'm not saying it could cause an issue, but it does affect 
 how the date parsing works - I'm just trying to narrow down 
 the posibilities. As it stands, I ran this:
 
 cfoutput#dateformat('Tuesday, 17 December 2002 05:21:09 PM 
 EST')#/cfoutput
 
 and got an error on my box. Looks like it may be a bug unless 
 I'm missing something.
 
 ==
 =
 Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
 
 Email: [EMAIL PROTECTED] 
 WWW  : www.camdenfamily.com/morpheus 
 Yahoo IM : morpheus
 
 My ally is the Force, and a powerful ally it is. - Yoda 
 
  -Original Message-
  From: Randell B Adkins [mailto:[EMAIL PROTECTED]] 
  Sent: Monday, December 23, 2002 8:11 AM
  To: CF-Talk
  Subject: RE: DateFormat in CFMX
  
  
  In this case, English (US).
  
  But could be lets say English (New Zealand)
  or really any other Locale.
  
  Would using the LSDateFormat function be better
  if the Locale could vary?
  
  
  
   [EMAIL PROTECTED] 12/23/02 09:05AM 
  What locale are you under?
  
  ==
  =
  Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
  
  Email: [EMAIL PROTECTED] 
  WWW  : www.camdenfamily.com/morpheus 
  Yahoo IM : morpheus
  
  My ally is the Force, and a powerful ally it is. - Yoda
  
   -Original Message-
   From: Randell B Adkins [mailto:[EMAIL PROTECTED]] 
   Sent: Monday, December 23, 2002 7:53 AM
   To: CF-Talk
   Subject: Re: DateFormat in CFMX
   
   
   After checking the archives, there did seem to be
   an issue with this.
   
   Rob Rohan - Did you determine what the problem was as
   well as a fix?
   
   Sean A Corfield - Any ideas on it? It works on some 
 directories but 
   noth others.
   
   Thanks!!
   
   
   
[EMAIL PROTECTED] 12/23/02 08:32AM 
   Is there a dateformat issue using CFMX that was addressed in some

   update/patch, or some means??
   
   When doing a directory listing, some directories will report fine

   and format the date accordingly using the DateFormat function. 
   However, there are some directories which will throw an error. 
   Nothing special regarding the directory.
   
   Thanks in Advance!
   
   
   
   
   
  
  
 
 

~|
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 list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



Re: CFMX / JVM

2002-12-23 Thread Alex Hubner
Hello friends,

What JVM should I use? Client or Server JVM? Which one is faster/reliable/better for a 
production server? I've 
noticed that the default behaviour for CFMX is to set the Client JVM. But when I 
rename the Client jvm.dll to 
anything different it sets the Server one.

Java VM Name:  Java HotSpot(TM) Server VM 
Java VM Name:  Java HotSpot(TM) Client VM

Which one is best? There's no difference at all for CFMX? The same is valid for JRun?

Thanks and happy holidays from Brazil!
Alex
 

On Fri, 20 Dec 2002 10:01:09 -0500, Frank Mamone [EMAIL PROTECTED] escreveu :

 De: Frank Mamone [EMAIL PROTECTED]
 Data: Fri, 20 Dec 2002 10:01:09 -0500
 Para: CF-Talk [EMAIL PROTECTED]
 Assunto: Re: CFMX / JVM
 
 Where would I point the Classpath?
 - Original Message -
 From: Jesse Houwing [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Friday, December 20, 2002 4:33 AM
 Subject: Re: CFMX / JVM
 
 
  Joe Eugene wrote:
 
  I dont think there is a written procedure..
  
  1. Downloads J2SE 1.4.0.
  2. Install.
  3. In the admin point JVM to new install java runtime(jre).
  4. Recycle CFMX service and u are good to go..
  
  Try this.. write a loop time code or some.. and run it under different
 JVM's
  swtiching back and forth.. 1.4.0 is about 30-40% faster.
  
  
  
  Note that you can't stop Coldfusion MX from the services panel if you
  change the JVM from the administrator. You need to manually kill
  jrun.exe or reboot.
 
  Jesse
 
  
 
~|
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
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: DateFormat in CFMX

2002-12-23 Thread Alex Hubner
I have similiar problems with LSCurrency and DateFormat. As far as I can say, these 
formating problems are all 
related to the JVM itself, not the ColdFusion Server.

Some references:

http://webforums.macromedia.com/coldfusion/messageview.cfm?
catid=144threadid=454691highlight_key=ykeyword1=LSCurrency

http://webforums.macromedia.com/coldfusion/messageview.cfm?
catid=144threadid=435590highlight_key=ykeyword1=LSCurrency

[]'s
Alex


On Mon, 23 Dec 2002 09:53:27 -0500, Randell B Adkins [EMAIL PROTECTED] escreveu :

 De: Randell B Adkins [EMAIL PROTECTED]
 Data: Mon, 23 Dec 2002 09:53:27 -0500
 Para: CF-Talk [EMAIL PROTECTED]
 Assunto: RE: DateFormat in CFMX
 
 Actually I found the resolution based on the Locale of the system.
 
 I had to use the LSDateFormat/ LSTimeFormat in conjunction with 
 the parseDateTime.
 
 So far my testing has came back positive. More testing to go!
 
 Thanks Ray!
 
 
 
  [EMAIL PROTECTED] 12/23/02 09:35AM 
 Of course, if you actually convert the string to a real date ob, it
 works just fine...
 
 cfoutput#dateformat(parseDateTime('Tuesday, 17 December 2002
 05:21:09
 PM EST'))#/cfoutput
 
 ===
 Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
 
 Email: [EMAIL PROTECTED] 
 WWW  : www.camdenfamily.com/morpheus 
 Yahoo IM : morpheus
 
 My ally is the Force, and a powerful ally it is. - Yoda 
 
  -Original Message-
  From: Randell B Adkins [mailto:[EMAIL PROTECTED]] 
  Sent: Monday, December 23, 2002 8:26 AM
  To: CF-Talk
  Subject: RE: DateFormat in CFMX
  
  
  I agree. Running the line as you did, does result in an error 
  with the class: java.util.Date
  
  Can anyone from Macromedia chime in on this???
  
  
  
   [EMAIL PROTECTED] 12/23/02 09:21AM 
  I'm not saying it could cause an issue, but it does affect 
  how the date parsing works - I'm just trying to narrow down 
  the posibilities. As it stands, I ran this:
  
  cfoutput#dateformat('Tuesday, 17 December 2002 05:21:09 PM 
  EST')#/cfoutput
  
  and got an error on my box. Looks like it may be a bug unless 
  I'm missing something.
  
  ==
  =
  Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
  
  Email: [EMAIL PROTECTED] 
  WWW  : www.camdenfamily.com/morpheus 
  Yahoo IM : morpheus
  
  My ally is the Force, and a powerful ally it is. - Yoda 
  
   -Original Message-
   From: Randell B Adkins [mailto:[EMAIL PROTECTED]] 
   Sent: Monday, December 23, 2002 8:11 AM
   To: CF-Talk
   Subject: RE: DateFormat in CFMX
   
   
   In this case, English (US).
   
   But could be lets say English (New Zealand)
   or really any other Locale.
   
   Would using the LSDateFormat function be better
   if the Locale could vary?
   
   
   
[EMAIL PROTECTED] 12/23/02 09:05AM 
   What locale are you under?
   
   ==
   =
   Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
   
   Email: [EMAIL PROTECTED] 
   WWW  : www.camdenfamily.com/morpheus 
   Yahoo IM : morpheus
   
   My ally is the Force, and a powerful ally it is. - Yoda
   
-Original Message-
From: Randell B Adkins [mailto:[EMAIL PROTECTED]] 
Sent: Monday, December 23, 2002 7:53 AM
To: CF-Talk
Subject: Re: DateFormat in CFMX


After checking the archives, there did seem to be
an issue with this.

Rob Rohan - Did you determine what the problem was as
well as a fix?

Sean A Corfield - Any ideas on it? It works on some 
  directories but 
noth others.

Thanks!!



 [EMAIL PROTECTED] 12/23/02 08:32AM 
Is there a dateformat issue using CFMX that was addressed in some
 
update/patch, or some means??

When doing a directory listing, some directories will report fine
 
and format the date accordingly using the DateFormat function. 
However, there are some directories which will throw an error. 
Nothing special regarding the directory.

Thanks in Advance!





   
   
  
  
 
 
~|
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
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: DateFormat in CFMX

2002-12-23 Thread Randell B Adkins
For the DateFormat issue, what worked for me was
the combining of two functions:
LSDateFormat(parseDateTime(dtString,mm/dd/)

Now sure about the LSCurrency. 

What error are you receiving with LSCurrency?
Becareful as there is also LSEuroCurrency


 [EMAIL PROTECTED] 12/23/02 10:23AM 
I have similiar problems with LSCurrency and DateFormat. As far as I
can say, these formating problems are all 
related to the JVM itself, not the ColdFusion Server.

Some references:

http://webforums.macromedia.com/coldfusion/messageview.cfm? 
catid=144threadid=454691highlight_key=ykeyword1=LSCurrency

http://webforums.macromedia.com/coldfusion/messageview.cfm? 
catid=144threadid=435590highlight_key=ykeyword1=LSCurrency

[]'s
Alex


On Mon, 23 Dec 2002 09:53:27 -0500, Randell B Adkins
[EMAIL PROTECTED] escreveu :

 De: Randell B Adkins [EMAIL PROTECTED]
 Data: Mon, 23 Dec 2002 09:53:27 -0500
 Para: CF-Talk [EMAIL PROTECTED]
 Assunto: RE: DateFormat in CFMX
 
 Actually I found the resolution based on the Locale of the system.
 
 I had to use the LSDateFormat/ LSTimeFormat in conjunction with 
 the parseDateTime.
 
 So far my testing has came back positive. More testing to go!
 
 Thanks Ray!
 
 
 
  [EMAIL PROTECTED] 12/23/02 09:35AM 
 Of course, if you actually convert the string to a real date ob, it
 works just fine...
 
 cfoutput#dateformat(parseDateTime('Tuesday, 17 December 2002
 05:21:09
 PM EST'))#/cfoutput
 

===
 Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
 
 Email: [EMAIL PROTECTED] 
 WWW  : www.camdenfamily.com/morpheus 
 Yahoo IM : morpheus
 
 My ally is the Force, and a powerful ally it is. - Yoda 
 
  -Original Message-
  From: Randell B Adkins [mailto:[EMAIL PROTECTED]] 
  Sent: Monday, December 23, 2002 8:26 AM
  To: CF-Talk
  Subject: RE: DateFormat in CFMX
  
  
  I agree. Running the line as you did, does result in an error 
  with the class: java.util.Date
  
  Can anyone from Macromedia chime in on this???
  
  
  
   [EMAIL PROTECTED] 12/23/02 09:21AM 
  I'm not saying it could cause an issue, but it does affect 
  how the date parsing works - I'm just trying to narrow down 
  the posibilities. As it stands, I ran this:
  
  cfoutput#dateformat('Tuesday, 17 December 2002 05:21:09 PM 
  EST')#/cfoutput
  
  and got an error on my box. Looks like it may be a bug unless 
  I'm missing something.
  
  ==
  =
  Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
  
  Email: [EMAIL PROTECTED] 
  WWW  : www.camdenfamily.com/morpheus 
  Yahoo IM : morpheus
  
  My ally is the Force, and a powerful ally it is. - Yoda 
  
   -Original Message-
   From: Randell B Adkins [mailto:[EMAIL PROTECTED]] 
   Sent: Monday, December 23, 2002 8:11 AM
   To: CF-Talk
   Subject: RE: DateFormat in CFMX
   
   
   In this case, English (US).
   
   But could be lets say English (New Zealand)
   or really any other Locale.
   
   Would using the LSDateFormat function be better
   if the Locale could vary?
   
   
   
[EMAIL PROTECTED] 12/23/02 09:05AM 
   What locale are you under?
   
   ==
   =
   Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
   
   Email: [EMAIL PROTECTED] 
   WWW  : www.camdenfamily.com/morpheus 
   Yahoo IM : morpheus
   
   My ally is the Force, and a powerful ally it is. - Yoda
   
-Original Message-
From: Randell B Adkins [mailto:[EMAIL PROTECTED]] 
Sent: Monday, December 23, 2002 7:53 AM
To: CF-Talk
Subject: Re: DateFormat in CFMX


After checking the archives, there did seem to be
an issue with this.

Rob Rohan - Did you determine what the problem was as
well as a fix?

Sean A Corfield - Any ideas on it? It works on some 
  directories but 
noth others.

Thanks!!



 [EMAIL PROTECTED] 12/23/02 08:32AM 
Is there a dateformat issue using CFMX that was addressed in
some
 
update/patch, or some means??

When doing a directory listing, some directories will report
fine
 
and format the date accordingly using the DateFormat function.

However, there are some directories which will throw an error.

Nothing special regarding the directory.

Thanks in Advance!





   
   
  
  
 
 

~|
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
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: CFGurus ... your advice sought

2002-12-23 Thread Craig Dudley
Howard,

Why not simply copy the files instead of moving them? You can run a
scheduled task to clean up your processing directory once a day or
something.

Craig.

-Original Message-
From: Owens, Howard [mailto:[EMAIL PROTECTED]] 
Sent: 21 December 2002 01:33
To: CF-Talk
Subject: RE: CFGurus ... your advice sought

Hey, my boss ... who's not even a programmer ... came up with a good
idea
. check the file size before processing, and move big files to another
folder for manual processing later.  

I decided to go in that direction.  It this case, it's a workable
solution.

H.


 -Original Message-
 From: Owens, Howard [SMTP:[EMAIL PROTECTED]]
 Sent: Friday, December 20, 2002 3:19 PM
 To:   CF-Talk
 Subject:  RE: CFGurus ... your advice sought
 
 I've thought storing the info in a database record ...
 
 Would there be some way to use CFCatch to say ... ok, record this
error
 and
 move on ... keeping looping through the directory ... pick up the next
 image
 in line and work with it ...
 
 ?
 
 
 
  -Original Message-
  From:   Fregas [SMTP:[EMAIL PROTECTED]]
  Sent:   Friday, December 20, 2002 1:24 PM
  To: CF-Talk
  Subject:Re: CFGurus ... your advice sought
  
  The type of app you are trying to make would be better suited to a
NET
  windows service I think since you need this to run on a scheduled
basis
  and
  synchronize when things happen.  However, I realize that might not
be
  desireable or possible.
  
  I have some ideas but let me get some more info.  Could you maybe
 database
  which files completed successfully and which were Bad?  If so, you
 could
  have this occur in two scheduled tasks.  The first would conver the
 images
  and store their filenames in a database (or XML or WDDX) as to
whether
 the
  conversion was successful.  The second task could run one minute or
5
  minutes later (hopefully, imagemagic will have removed its lock on
the
  files
  by then) and attempt to either move or delete all files that the
 database
  says are completed or bad.   If it succeeds, it could then mark
the
  database record for each file as complete or just delete the record.
If
  you
  want, you could even put a CFTRY/CFCATCH block around the second
task
 and
  do
  some kind of logging or something on files that are unable to be
cleaned
  up.
  
  Fregas
  
 

~|
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
Get the mailserver that powers this list at http://www.coolfusion.com



OT: old cf 5 win-pro licence

2002-12-23 Thread Uwe Degenhardt
Please send me a mail
off list, if someone wants
to sell an old cf 5 win-pro licence.
Thanks.
Uwe

~|
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
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: DateFormat in CFMX

2002-12-23 Thread Alex Hubner
Good tip! Thanks.

The issue with the LSCurrency is that it simple do not show it correctly for 
Brazilian. Take a look on this Paul tests:

http://tessaban.tei.or.th/unicode/javaNumbers.cfm

The Brazilian currency should be R$ 404,20 not R$ 404,2

Anyway... just waiting for SUN to fix it.

[]'s!
Alex


On Mon, 23 Dec 2002 10:44:53 -0500, Randell B Adkins [EMAIL PROTECTED] escreveu :

 De: Randell B Adkins [EMAIL PROTECTED]
 Data: Mon, 23 Dec 2002 10:44:53 -0500
 Para: CF-Talk [EMAIL PROTECTED]
 Assunto: RE: DateFormat in CFMX
 
 For the DateFormat issue, what worked for me was
 the combining of two functions:
 LSDateFormat(parseDateTime(dtString,mm/dd/)
 
 Now sure about the LSCurrency. 
 
 What error are you receiving with LSCurrency?
 Becareful as there is also LSEuroCurrency
 
 
  [EMAIL PROTECTED] 12/23/02 10:23AM 
 I have similiar problems with LSCurrency and DateFormat. As far as I
 can say, these formating problems are all 
 related to the JVM itself, not the ColdFusion Server.
 
 Some references:
 
 http://webforums.macromedia.com/coldfusion/messageview.cfm? 
 catid=144threadid=454691highlight_key=ykeyword1=LSCurrency
 
 http://webforums.macromedia.com/coldfusion/messageview.cfm? 
 catid=144threadid=435590highlight_key=ykeyword1=LSCurrency
 
 []'s
 Alex
 
 
 On Mon, 23 Dec 2002 09:53:27 -0500, Randell B Adkins
 [EMAIL PROTECTED] escreveu :
 
  De: Randell B Adkins [EMAIL PROTECTED]
  Data: Mon, 23 Dec 2002 09:53:27 -0500
  Para: CF-Talk [EMAIL PROTECTED]
  Assunto: RE: DateFormat in CFMX
  
  Actually I found the resolution based on the Locale of the system.
  
  I had to use the LSDateFormat/ LSTimeFormat in conjunction with 
  the parseDateTime.
  
  So far my testing has came back positive. More testing to go!
  
  Thanks Ray!
  
  
  
   [EMAIL PROTECTED] 12/23/02 09:35AM 
  Of course, if you actually convert the string to a real date ob, it
  works just fine...
  
  cfoutput#dateformat(parseDateTime('Tuesday, 17 December 2002
  05:21:09
  PM EST'))#/cfoutput
  
 
 ===
  Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
  
  Email: [EMAIL PROTECTED] 
  WWW  : www.camdenfamily.com/morpheus 
  Yahoo IM : morpheus
  
  My ally is the Force, and a powerful ally it is. - Yoda 
  
   -Original Message-
   From: Randell B Adkins [mailto:[EMAIL PROTECTED]] 
   Sent: Monday, December 23, 2002 8:26 AM
   To: CF-Talk
   Subject: RE: DateFormat in CFMX
   
   
   I agree. Running the line as you did, does result in an error 
   with the class: java.util.Date
   
   Can anyone from Macromedia chime in on this???
   
   
   
[EMAIL PROTECTED] 12/23/02 09:21AM 
   I'm not saying it could cause an issue, but it does affect 
   how the date parsing works - I'm just trying to narrow down 
   the posibilities. As it stands, I ran this:
   
   cfoutput#dateformat('Tuesday, 17 December 2002 05:21:09 PM 
   EST')#/cfoutput
   
   and got an error on my box. Looks like it may be a bug unless 
   I'm missing something.
   
   ==
   =
   Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
   
   Email: [EMAIL PROTECTED] 
   WWW  : www.camdenfamily.com/morpheus 
   Yahoo IM : morpheus
   
   My ally is the Force, and a powerful ally it is. - Yoda 
   
-Original Message-
From: Randell B Adkins [mailto:[EMAIL PROTECTED]] 
Sent: Monday, December 23, 2002 8:11 AM
To: CF-Talk
Subject: RE: DateFormat in CFMX


In this case, English (US).

But could be lets say English (New Zealand)
or really any other Locale.

Would using the LSDateFormat function be better
if the Locale could vary?



 [EMAIL PROTECTED] 12/23/02 09:05AM 
What locale are you under?

==
=
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc

Email: [EMAIL PROTECTED] 
WWW  : www.camdenfamily.com/morpheus 
Yahoo IM : morpheus

My ally is the Force, and a powerful ally it is. - Yoda

 -Original Message-
 From: Randell B Adkins [mailto:[EMAIL PROTECTED]] 
 Sent: Monday, December 23, 2002 7:53 AM
 To: CF-Talk
 Subject: Re: DateFormat in CFMX
 
 
 After checking the archives, there did seem to be
 an issue with this.
 
 Rob Rohan - Did you determine what the problem was as
 well as a fix?
 
 Sean A Corfield - Any ideas on it? It works on some 
   directories but 
 noth others.
 
 Thanks!!
 
 
 
  [EMAIL PROTECTED] 12/23/02 08:32AM 
 Is there a dateformat issue using CFMX that was addressed in
 some
  
 update/patch, or some means??
 
 When doing a directory listing, some directories will report
 fine
  
 and format the date accordingly using the DateFormat function.
 
 

Grouping

2002-12-23 Thread Jones, Becky
in my sql query, i have attorneys and secretaries that output.  an attorney can have 
multiple secretaries.  so i want to be able to group by the attorney's id at the top 
level so he only appears once.  and that works fine.
but in the same row, im outputting the secretary and her name could appear 2 or 3 
times.  i tried doing a second group on the secretary id and it isnt working.  does 
anyone have ideas?  i enclosed a snippet of the code.

thanks!

CFOUTPUT query=qrySResults group=Listing_ID
cfparam name=Switch default=
cfif switch EQ TRUE
tr bgcolor=99
cfset switch = False
cfelse
tr bgcolor=
cfset switch = True
/cfif
td class=BIOS width=25% align=left valign=top nowrap  
a class=BIOS href=biography.cfm?LID=#Listing_ID#
#FIRST_NM#  #MIDDLE_NM# #LAST_NM# #SUFFIX#/abr#POSITION_NM# /td
td class=BIOS width=10% align=left valign=middle#city#/td
td class=BIOS width=25% valign=top#PHONE_NUM# br 
 a class=BIOS 
href=mailto:#email_addr#;#email_addr#/a 
/td
td valign=middle class=BIOS
cfoutput group=relid#SECYFIRST# #SECYLAST#br/cfoutput/td/tr 
/cfoutput

Becky Jones
Web/Applications Specialist
Miles  Stockbridge
10 Light Street
Baltimore, MD  21202
410.385.3739 office, 410.385.3700 fax
443.324.8648 cell

~|
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
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



Re: Grouping

2002-12-23 Thread Randell B Adkins
If the Secretaries name appears multiple times, since your secondary
group
is on: relid

try outputting that along with the name and see if the relid changes.
If the name appears multiple times then I am sure the relID also
changes.

Could be something with the database.

It appears that in the query, the secretary is in the table multiple
times with a
different relID each time.



 [EMAIL PROTECTED] 12/23/02 11:11AM 
in my sql query, i have attorneys and secretaries that output.  an
attorney can have multiple secretaries.  so i want to be able to group
by the attorney's id at the top level so he only appears once.  and that
works fine.
but in the same row, im outputting the secretary and her name could
appear 2 or 3 times.  i tried doing a second group on the secretary id
and it isnt working.  does anyone have ideas?  i enclosed a snippet of
the code.

thanks!

CFOUTPUT query=qrySResults group=Listing_ID
cfparam name=Switch default=
cfif switch EQ TRUE
tr bgcolor=99
cfset switch = False
cfelse
tr bgcolor=
cfset switch = True
/cfif
td class=BIOS width=25% align=left valign=top
nowrap 
a class=BIOS href=biography.cfm?LID=#Listing_ID#
#FIRST_NM#  #MIDDLE_NM# #LAST_NM#
#SUFFIX#/abr#POSITION_NM#   /td
td class=BIOS width=10% align=left
valign=middle#city#  /td
td class=BIOS width=25% valign=top#PHONE_NUM#
bra
class=BIOS href=mailto:#email_addr#;#email_addr#/a 
/td
td valign=middle class=BIOS
cfoutput group=relid#SECYFIRST#
#SECYLAST#br/cfoutput/td/tr 
/cfoutput

Becky Jones
Web/Applications Specialist
Miles  Stockbridge
10 Light Street
Baltimore, MD  21202
410.385.3739 office, 410.385.3700 fax
443.324.8648 cell


~|
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
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



Regular expression question

2002-12-23 Thread Lofback, Chris
Is there a way to return just the string that a REFind matches?  I'm trying
to pull an email address out of a block of text.  I can find the beginning
using this:

REFindNoCase(['_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*\.(([a-z
]{2,3})|(aero|coop|info|museum|name)),BlockOfText)

But I don't see how to match the end.  It seems like I need to return the
\1 back reference, but how?

Thanks,
Chris Lofback
Sr. Web Developer

TRX Integration
28051 US 19 N., Ste. C
Clearwater, FL  33761
www.trxi.com

~|
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 list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



FSchedule Advice Please ...

2002-12-23 Thread koolsam
Does anyone have problems with cfschedule on CF5 Professional,  It work
perfectly on another server which has CF5 Enterprise.  I got connection
failure errors intermittently.

Thanks
Sam



~|
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
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: Regular expression question

2002-12-23 Thread Raymond Camden
Add the 3rd and 4th optional args - the 3rd arg, where to start, should
be set to 1, and the 4th, is a boolean that specifies if you want the
matched expressions returned. You will get a struct of two arrays, pos
and len, where pos[x] and len[x] is the position and length of the Xth
matched subexpression.

===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc

Email: [EMAIL PROTECTED]
WWW  : www.camdenfamily.com/morpheus
Yahoo IM : morpheus

My ally is the Force, and a powerful ally it is. - Yoda 

 -Original Message-
 From: Lofback, Chris [mailto:[EMAIL PROTECTED]] 
 Sent: Monday, December 23, 2002 10:22 AM
 To: CF-Talk
 Subject: Regular expression question
 
 
 Is there a way to return just the string that a REFind 
 matches?  I'm trying to pull an email address out of a block 
 of text.  I can find the beginning using this:
 
 REFindNoCase(['_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-
 9-]+)*\.(([a-z
 ]{2,3})|(aero|coop|info|museum|name)),BlockOfText)
 
 But I don't see how to match the end.  It seems like I need 
 to return the \1 back reference, but how?
 
 Thanks,
 Chris Lofback
 Sr. Web Developer
 
 TRX Integration
 28051 US 19 N., Ste. C
 Clearwater, FL  33761
 www.trxi.com
 
 
~|
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
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: Grouping

2002-12-23 Thread Jones, Becky
no the relid is the same as the name.  
that is why i thought it was wierd it wouldnt group on it.  
the secy name shows multiple time in the sql query tho.  but i would think it would 
still group by that id in the web code.

-Original Message-
From: Randell B Adkins [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 23, 2002 11:18 AM
To: CF-Talk
Subject: Re: Grouping


If the Secretaries name appears multiple times, since your secondary
group
is on: relid

try outputting that along with the name and see if the relid changes.
If the name appears multiple times then I am sure the relID also
changes.

Could be something with the database.

It appears that in the query, the secretary is in the table multiple
times with a
different relID each time.



 [EMAIL PROTECTED] 12/23/02 11:11AM 
in my sql query, i have attorneys and secretaries that output.  an
attorney can have multiple secretaries.  so i want to be able to group
by the attorney's id at the top level so he only appears once.  and that
works fine.
but in the same row, im outputting the secretary and her name could
appear 2 or 3 times.  i tried doing a second group on the secretary id
and it isnt working.  does anyone have ideas?  i enclosed a snippet of
the code.

thanks!

CFOUTPUT query=qrySResults group=Listing_ID
cfparam name=Switch default=
cfif switch EQ TRUE
tr bgcolor=99
cfset switch = False
cfelse
tr bgcolor=
cfset switch = True
/cfif
td class=BIOS width=25% align=left valign=top
nowrap 
a class=BIOS href=biography.cfm?LID=#Listing_ID#
#FIRST_NM#  #MIDDLE_NM# #LAST_NM#
#SUFFIX#/abr#POSITION_NM#   /td
td class=BIOS width=10% align=left
valign=middle#city#  /td
td class=BIOS width=25% valign=top#PHONE_NUM#
bra
class=BIOS href=mailto:#email_addr#;#email_addr#/a 
/td
td valign=middle class=BIOS
cfoutput group=relid#SECYFIRST#
#SECYLAST#br/cfoutput/td/tr 
/cfoutput

Becky Jones
Web/Applications Specialist
Miles  Stockbridge
10 Light Street
Baltimore, MD  21202
410.385.3739 office, 410.385.3700 fax
443.324.8648 cell



~|
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
Get the mailserver that powers this list at http://www.coolfusion.com



cfchart bug that brings the server down

2002-12-23 Thread Marius Milosav
We had discovered a really nasty bug.
If a  form has a cfchart tag and there are more that 16 items to be
displayed with cfchartseries the following error is thrown:
java.lang.ArrayIndexOutOfBoundsException.
Now if the user refreshes the screen where the error occurred a few times a
blank page is
shown and after that CFMX doesn't respond to any requests. Task manager
shows 0 for cpu and no
memory increase. Each page being requested shows a slight spike in the cpu,
an indication that the CFMX is still alive. It seems that the page with the
cfchart  on it has been stuck in the queue and no other page can be
processed and no error is being thrown, either on the screen or in the logs.
The only way to fix the problem is to restart the CFMX service.

The problem can be re-created very easy.
Has anybody seen this behavior?
Is MM aware of it? any fixes?

Thanks
Marius Milosav
www.scorpiosoft.com
It's not about technology, it's about people.
Virtual Company (VICO) Application Demo
www.scorpiosoft.com/vicodemo/login.cfm

~|
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 list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: cfchart bug that brings the server down

2002-12-23 Thread Stacy Young
Best thing is to report this here:
http://www.macromedia.com/support/email/wishform/?6213=3

Stace

-Original Message-
From: Marius Milosav [mailto:[EMAIL PROTECTED]] 
Sent: Monday, December 23, 2002 11:30 AM
To: CF-Talk
Subject: cfchart bug that brings the server down

We had discovered a really nasty bug.
If a  form has a cfchart tag and there are more that 16 items to be
displayed with cfchartseries the following error is thrown:
java.lang.ArrayIndexOutOfBoundsException.
Now if the user refreshes the screen where the error occurred a few times a
blank page is
shown and after that CFMX doesn't respond to any requests. Task manager
shows 0 for cpu and no
memory increase. Each page being requested shows a slight spike in the cpu,
an indication that the CFMX is still alive. It seems that the page with the
cfchart  on it has been stuck in the queue and no other page can be
processed and no error is being thrown, either on the screen or in the logs.
The only way to fix the problem is to restart the CFMX service.

The problem can be re-created very easy.
Has anybody seen this behavior?
Is MM aware of it? any fixes?

Thanks
Marius Milosav
www.scorpiosoft.com
It's not about technology, it's about people.
Virtual Company (VICO) Application Demo
www.scorpiosoft.com/vicodemo/login.cfm


~|
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
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: Grouping

2002-12-23 Thread Randell B Adkins
Can you provide an example of what the query is outputting?
To include the SQL code?


 [EMAIL PROTECTED] 12/23/02 11:29AM 
no the relid is the same as the name.  
that is why i thought it was wierd it wouldnt group on it.  
the secy name shows multiple time in the sql query tho.  but i would
think it would still group by that id in the web code.

-Original Message-
From: Randell B Adkins [mailto:[EMAIL PROTECTED]] 
Sent: Monday, December 23, 2002 11:18 AM
To: CF-Talk
Subject: Re: Grouping


If the Secretaries name appears multiple times, since your secondary
group
is on: relid

try outputting that along with the name and see if the relid changes.
If the name appears multiple times then I am sure the relID also
changes.

Could be something with the database.

It appears that in the query, the secretary is in the table multiple
times with a
different relID each time.



 [EMAIL PROTECTED] 12/23/02 11:11AM 
in my sql query, i have attorneys and secretaries that output.  an
attorney can have multiple secretaries.  so i want to be able to group
by the attorney's id at the top level so he only appears once.  and
that
works fine.
but in the same row, im outputting the secretary and her name could
appear 2 or 3 times.  i tried doing a second group on the secretary id
and it isnt working.  does anyone have ideas?  i enclosed a snippet of
the code.

thanks!

CFOUTPUT query=qrySResults group=Listing_ID
cfparam name=Switch default=
cfif switch EQ TRUE
tr bgcolor=99
cfset switch = False
cfelse
tr bgcolor=
cfset switch = True
/cfif
td class=BIOS width=25% align=left valign=top
nowrap 
a class=BIOS href=biography.cfm?LID=#Listing_ID#
#FIRST_NM#  #MIDDLE_NM# #LAST_NM#
#SUFFIX#/abr#POSITION_NM#   /td
td class=BIOS width=10% align=left
valign=middle#city#  /td
td class=BIOS width=25% valign=top#PHONE_NUM#
bra
class=BIOS href=mailto:#email_addr#;#email_addr#/a 
/td
td valign=middle class=BIOS
cfoutput group=relid#SECYFIRST#
#SECYLAST#br/cfoutput/td/tr 
/cfoutput

Becky Jones
Web/Applications Specialist
Miles  Stockbridge
10 Light Street
Baltimore, MD  21202
410.385.3739 office, 410.385.3700 fax
443.324.8648 cell




~|
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
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



Re: FSchedule Advice Please ...

2002-12-23 Thread Randell B Adkins
Sorry, CFSchedule here CF5 here runs fine.

 [EMAIL PROTECTED] 12/23/02 11:24AM 
Does anyone have problems with cfschedule on CF5 Professional,  It
work
perfectly on another server which has CF5 Enterprise.  I got
connection
failure errors intermittently.

Thanks
Sam




~|
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
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: MS CF?

2002-12-23 Thread Rob Rohan
Please tell me this isn't true.

Rob

http://treebeard.sourceforge.net
http://ruinworld.sourceforge.net
Scientia Est Potentia

-Original Message-
From: Len Conrad [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 23, 2002 2:07 AM
To: CF-Talk
Subject: MS CF?


http://theregister.co.uk/content/4/28667.html





~|
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
Get the mailserver that powers this list at http://www.coolfusion.com



RE: Print size for CF pages

2002-12-23 Thread Rob Rohan
Are you looking for this?
http://treebeard.sourceforge.net/cfx_treebeard.php

Rob

http://treebeard.sourceforge.net
http://ruinworld.sourceforge.net
Scientia Est Potentia

-Original Message-
From: Anthony Wong [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 23, 2002 2:09 AM
To: CF-Talk
Subject: RE: Print size for CF pages


Would be interested to see if CSS would be able to solve this printing
issue. Wrapping may not be required in this case cos the result is displayed
on tables with lots of columns(that's when the print area only covers half
of the these columns)

I think PDF is a nice solution but the problem is that client is only
interested in free solutions and it must work in Linux environment(CFMX is
on Linux). I've searched high and low and definitely not an easy one to
find.

Do check out www.pdfzone.com. Saw a couple but it's not what i was looking
for.

-Ant

-Original Message-
From: Jason Miller [mailto:[EMAIL PROTECTED]]
Sent: Friday, December 20, 2002 4:00 PM
To: CF-Talk
Subject: Re: Print size for CF pages


Sorry I can't be more specific - but there is a CSS style that helps
control print versions. I know it specifically addresses fonts and some
colors - maybe sizes too. I would check w3c.org for more specifics.
I just got caught in a half hour black hole and couldn't find
specifically what I was looking for in regards to printing. I need to
control this myself as well so would appreciate if you shared.

One thing I have considered is a print friendly button that compiles the
page requested (on the fly or daily/weekly ) rips to a PDF for perfect
printing.


Jay

Anthony Wong wrote:

I've noticed that when the content of a page goes beyond a certain browser
width, the print out will cut off those extended areas. Is there a work
around to ensure that all the contents in the browser are printed?

Am using IE.

Thanks.

-Ant




~|
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
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: MS CF?

2002-12-23 Thread Robertson-Ravo, Neil (RX)
its not

-Original Message-
From: Rob Rohan [mailto:[EMAIL PROTECTED]]
Sent: 23 December 2002 17:07
To: CF-Talk
Subject: RE: MS CF?


Please tell me this isn't true.

Rob

http://treebeard.sourceforge.net
http://ruinworld.sourceforge.net
Scientia Est Potentia

-Original Message-
From: Len Conrad [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 23, 2002 2:07 AM
To: CF-Talk
Subject: MS CF?


http://theregister.co.uk/content/4/28667.html






~|
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
Get the mailserver that powers this list at http://www.coolfusion.com



RE: Crystal Reports Enterprise 8.5 ohhhh the pain

2002-12-23 Thread Sean McCarthy
No I am not passing the login and pass in the url.  If you leave the params
blank it uses the nt auth.  Heres how I ended up getting it to work.

http://mybox.box.com/crystal/enterprise/viewer/viewrpt.cwr?apsauthtype=secWi
ndowsNTid=204


If you have any other techniques for this please let me know.

Thanks for your reply

Sean



-Original Message-
From: Frank Mamone [mailto:[EMAIL PROTECTED]]
Sent: Saturday, December 21, 2002 9:03 AM
To: CF-Talk
Subject: Re: Crystal Reports Enterprise 8.5 o the pain


Do you really want to pass the username and password in the URL?

I'm not sure how you are trying to implement your reports, but if you give
some details I may be able to help as we use reporting with CF/Crystal
extensively.

-Frank

- Original Message -
From: Sean McCarthy [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, December 17, 2002 11:12 PM
Subject: OT: Crystal Reports Enterprise 8.5 o the pain


 Hi,
 We are attempting to use Crystal Enterprise with windows auth.
 Everything is configured according to the docs they have provided but
 unfortunately the windows auth through iis works but the user is still
 prompted with the login box for crystal enterprise.  I can select 'nt
auth'
 from the crystal drop down enter no credentials and hit submit and it
knows
 who i am.  I believe everything is working properly but crystal needs to
 create some sort of cookie?through the submit from the crystal auth
 screen.


 How can I avoid this screen and just get directly to the report with my
auth
 information?  I guess how can I create the cookie on the fly when
accessing
 the url for the report?  Can I pass generic vars on the url to get it to
 pass and create the cookie?

 This is the only link I have successfully gotten to work:


http://servername/crystal/enterprise/admin/en/admin.cwr?action=logonaps=aps
 nameauth=secWindowsNTusr=pwd

 If I could do this when I call my report url that would be great.


 Thanks for any input you might have


 Sean
 

~|
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
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: cfchart bug that brings the server down

2002-12-23 Thread Josh
I have seen a similar bug where if more than a certain number of
cfchartseries are invoked, the server will crash.

--
Josh Trefethen
http://exciteworks.com

-Original Message-
From: Marius Milosav [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 23, 2002 9:30 AM
To: CF-Talk
Subject: cfchart bug that brings the server down


We had discovered a really nasty bug.
If a  form has a cfchart tag and there are more that 16 items to be
displayed with cfchartseries the following error is thrown:
java.lang.ArrayIndexOutOfBoundsException.
Now if the user refreshes the screen where the error occurred a few times a
blank page is
shown and after that CFMX doesn't respond to any requests. Task manager
shows 0 for cpu and no
memory increase. Each page being requested shows a slight spike in the cpu,
an indication that the CFMX is still alive. It seems that the page with the
cfchart  on it has been stuck in the queue and no other page can be
processed and no error is being thrown, either on the screen or in the logs.
The only way to fix the problem is to restart the CFMX service.

The problem can be re-created very easy.
Has anybody seen this behavior?
Is MM aware of it? any fixes?

Thanks
Marius Milosav
www.scorpiosoft.com
It's not about technology, it's about people.
Virtual Company (VICO) Application Demo
www.scorpiosoft.com/vicodemo/login.cfm


~|
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
Get the mailserver that powers this list at http://www.coolfusion.com



RE: DateFormat in CFMX

2002-12-23 Thread Rob Rohan
The dataformat issue we had was based on the fact we were using JRE 1.4 (we
think), so if you are not using 1.4 pay me no mind.

For some reason the mask gets pissed sometimes unless there is a space at
the end. For example a mask of mm/dd/ will say the date is invalid but
a mask of mm/dd/  will not. I do not know why the fix works (probably
has to do with some internal date parsing).

This doesn't seem to be fixed in updater 2 and I am not sure if it is an MX
error or a JRE error. I do know the dates changed quite a bit from JRE 1.2
to JRE 1.4 so...


Cheers,
Rob


-Original Message-
From: Randell B Adkins [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 23, 2002 5:53 AM
To: CF-Talk
Subject: Re: DateFormat in CFMX


After checking the archives, there did seem to be
an issue with this.

Rob Rohan - Did you determine what the problem was as
well as a fix?

Sean A Corfield - Any ideas on it? It works on some directories
but noth others.

Thanks!!



 [EMAIL PROTECTED] 12/23/02 08:32AM 
Is there a dateformat issue using CFMX that was addressed in
some update/patch, or some means??

When doing a directory listing, some directories will report
fine and format the date accordingly using the DateFormat
function. However, there are some directories which will
throw an error. Nothing special regarding the directory.

Thanks in Advance!





~|
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 list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: CFMX / JVM

2002-12-23 Thread Rob Rohan
We have had the best luck with JRE 1.4.0_02. We had issues with 1.4.1
(jacked up dates and odd little problems) and 1.3 (no I18n and slow).

We want to try JRocket and or Kaffe, but haven't had time

Good luck,
Rob

http://treebeard.sourceforge.net
http://ruinworld.sourceforge.net
Scientia Est Potentia

-Original Message-
From: Alex Hubner [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 23, 2002 6:57 AM
To: CF-Talk
Subject: Re: CFMX / JVM


Hello friends,

What JVM should I use? Client or Server JVM? Which one is
faster/reliable/better for a production server? I've
noticed that the default behaviour for CFMX is to set the Client JVM. But
when I rename the Client jvm.dll to
anything different it sets the Server one.

Java VM Name:  Java HotSpot(TM) Server VM
Java VM Name:  Java HotSpot(TM) Client VM

Which one is best? There's no difference at all for CFMX? The same is valid
for JRun?

Thanks and happy holidays from Brazil!
Alex


On Fri, 20 Dec 2002 10:01:09 -0500, Frank Mamone [EMAIL PROTECTED]
escreveu :

 De: Frank Mamone [EMAIL PROTECTED]
 Data: Fri, 20 Dec 2002 10:01:09 -0500
 Para: CF-Talk [EMAIL PROTECTED]
 Assunto: Re: CFMX / JVM

 Where would I point the Classpath?
 - Original Message -
 From: Jesse Houwing [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Friday, December 20, 2002 4:33 AM
 Subject: Re: CFMX / JVM


  Joe Eugene wrote:
 
  I dont think there is a written procedure..
  
  1. Downloads J2SE 1.4.0.
  2. Install.
  3. In the admin point JVM to new install java runtime(jre).
  4. Recycle CFMX service and u are good to go..
  
  Try this.. write a loop time code or some.. and run it under different
 JVM's
  swtiching back and forth.. 1.4.0 is about 30-40% faster.
  
  
  
  Note that you can't stop Coldfusion MX from the services panel if you
  change the JVM from the administrator. You need to manually kill
  jrun.exe or reboot.
 
  Jesse
 
 


~|
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
Get the mailserver that powers this list at http://www.coolfusion.com



RE: MS CF?

2002-12-23 Thread Rob Rohan
Ha, from the Robertson-Ravo news source :)

Guess now I *don't* have to sell my Macromedia stock, whew!

Rob

-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED]]
Sent: Monday, December 23, 2002 9:04 AM
To: CF-Talk
Subject: RE: MS CF?


its not

-Original Message-
From: Rob Rohan [mailto:[EMAIL PROTECTED]]
Sent: 23 December 2002 17:07
To: CF-Talk
Subject: RE: MS CF?


Please tell me this isn't true.

Rob

http://treebeard.sourceforge.net
http://ruinworld.sourceforge.net
Scientia Est Potentia

-Original Message-
From: Len Conrad [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 23, 2002 2:07 AM
To: CF-Talk
Subject: MS CF?


http://theregister.co.uk/content/4/28667.html







~|
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
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: MS CF?

2002-12-23 Thread Luce, Greg
Yeah, we all know Microsoft isn't profitable right? ;-)

Greg

-Original Message-
From: Rob Rohan [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 23, 2002 12:32 PM
To: CF-Talk
Subject: RE: MS CF?


Ha, from the Robertson-Ravo news source :)

Guess now I *don't* have to sell my Macromedia stock, whew!

Rob

-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED]]
Sent: Monday, December 23, 2002 9:04 AM
To: CF-Talk
Subject: RE: MS CF?


its not

-Original Message-
From: Rob Rohan [mailto:[EMAIL PROTECTED]]
Sent: 23 December 2002 17:07
To: CF-Talk
Subject: RE: MS CF?


Please tell me this isn't true.

Rob

http://treebeard.sourceforge.net
http://ruinworld.sourceforge.net
Scientia Est Potentia

-Original Message-
From: Len Conrad [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 23, 2002 2:07 AM
To: CF-Talk
Subject: MS CF?


http://theregister.co.uk/content/4/28667.html








~|
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
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: Crystal Reports Enterprise 8.5 ohhhh the pain

2002-12-23 Thread Tim Do
CR does set a cookie for each parameter, and i believe the max is 20.
Passing it via url does cause cookie problems.  What I do is use NT
authentication for the login, Just make sure the crystal server is logged in
as a user that the db has an account for.  A problem that I ran across was
subreports, when you use cross db joins, it will get confused with all the
usernames and passwords, so I just used the same usernames and passwords.
FYI, create a list and pass it in as one parameter and strip it apart in CR
that way you won't run into the cookie problem.

-Original Message-
From: Sean McCarthy [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 23, 2002 9:10 AM
To: CF-Talk
Subject: RE: Crystal Reports Enterprise 8.5 o the pain


No I am not passing the login and pass in the url.  If you leave the params
blank it uses the nt auth.  Heres how I ended up getting it to work.

http://mybox.box.com/crystal/enterprise/viewer/viewrpt.cwr?apsauthtype=secWi
ndowsNTid=204


If you have any other techniques for this please let me know.

Thanks for your reply

Sean



-Original Message-
From: Frank Mamone [mailto:[EMAIL PROTECTED]]
Sent: Saturday, December 21, 2002 9:03 AM
To: CF-Talk
Subject: Re: Crystal Reports Enterprise 8.5 o the pain


Do you really want to pass the username and password in the URL?

I'm not sure how you are trying to implement your reports, but if you give
some details I may be able to help as we use reporting with CF/Crystal
extensively.

-Frank

- Original Message -
From: Sean McCarthy [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, December 17, 2002 11:12 PM
Subject: OT: Crystal Reports Enterprise 8.5 o the pain


 Hi,
 We are attempting to use Crystal Enterprise with windows auth.
 Everything is configured according to the docs they have provided but
 unfortunately the windows auth through iis works but the user is still
 prompted with the login box for crystal enterprise.  I can select 'nt
auth'
 from the crystal drop down enter no credentials and hit submit and it
knows
 who i am.  I believe everything is working properly but crystal needs to
 create some sort of cookie?through the submit from the crystal auth
 screen.


 How can I avoid this screen and just get directly to the report with my
auth
 information?  I guess how can I create the cookie on the fly when
accessing
 the url for the report?  Can I pass generic vars on the url to get it to
 pass and create the cookie?

 This is the only link I have successfully gotten to work:


http://servername/crystal/enterprise/admin/en/admin.cwr?action=logonaps=aps
 nameauth=secWindowsNTusr=pwd

 If I could do this when I call my report url that would be great.


 Thanks for any input you might have


 Sean
 


~|
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
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: MS CF?

2002-12-23 Thread Cantrell, Adam
Why would you sell it? I'm no Wall St. slickster, but wouldn't you make out
well if you were suddenly in possession of $54 MS stock in exchange for your
$11 MM shares?


 -Original Message-
 From: Rob Rohan [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 11:32 AM
 To: CF-Talk
 Subject: RE: MS CF?
 
 
 Ha, from the Robertson-Ravo news source :)
 
 Guess now I *don't* have to sell my Macromedia stock, whew!
 
 Rob
 
 -Original Message-
 From: Robertson-Ravo, Neil (RX)
 [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 9:04 AM
 To: CF-Talk
 Subject: RE: MS CF?
 
 
 its not
 
 -Original Message-
 From: Rob Rohan [mailto:[EMAIL PROTECTED]]
 Sent: 23 December 2002 17:07
 To: CF-Talk
 Subject: RE: MS CF?
 
 
 Please tell me this isn't true.
 
 Rob
 
 http://treebeard.sourceforge.net
 http://ruinworld.sourceforge.net
 Scientia Est Potentia
 
 -Original Message-
 From: Len Conrad [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 2:07 AM
 To: CF-Talk
 Subject: MS CF?
 
 
 http://theregister.co.uk/content/4/28667.html
 
 
 
 
 
 
 
 
~|
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
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: Regular expression question

2002-12-23 Thread Ben Doom
Or, if you prefer to simply return the matched bit in string form, you can
do what I do (being a perlish kinda guy):

newstring = rereplace(string,
.*(whatever(yes you can use internal groupings) blah).*, \1);

Probably a lot less efficient than Ray's refind, but to my mind it makes a
lot more sense.

As always with RE questions:
http://www.houseoffusion.com/cf_lists/index.cfm?method=threadsforumid=21
Read, Post to, or Join the list here for all your RegEx needs.  :-)


  --Ben Doom
Programmer  General Lackey
Moonbow Software

: -Original Message-
: From: Raymond Camden [mailto:[EMAIL PROTECTED]]
: Sent: Monday, December 23, 2002 11:29 AM
: To: CF-Talk
: Subject: RE: Regular expression question
:
:
: Add the 3rd and 4th optional args - the 3rd arg, where to start, should
: be set to 1, and the 4th, is a boolean that specifies if you want the
: matched expressions returned. You will get a struct of two arrays, pos
: and len, where pos[x] and len[x] is the position and length of the Xth
: matched subexpression.
:
: ===
: Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
:
: Email: [EMAIL PROTECTED]
: WWW  : www.camdenfamily.com/morpheus
: Yahoo IM : morpheus
:
: My ally is the Force, and a powerful ally it is. - Yoda
:
:  -Original Message-
:  From: Lofback, Chris [mailto:[EMAIL PROTECTED]]
:  Sent: Monday, December 23, 2002 10:22 AM
:  To: CF-Talk
:  Subject: Regular expression question
: 
: 
:  Is there a way to return just the string that a REFind
:  matches?  I'm trying to pull an email address out of a block
:  of text.  I can find the beginning using this:
: 
:  REFindNoCase(['_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-
:  9-]+)*\.(([a-z
:  ]{2,3})|(aero|coop|info|museum|name)),BlockOfText)
: 
:  But I don't see how to match the end.  It seems like I need
:  to return the \1 back reference, but how?
: 
:  Thanks,
:  Chris Lofback
:  Sr. Web Developer
: 
:  TRX Integration
:  28051 US 19 N., Ste. C
:  Clearwater, FL  33761
:  www.trxi.com
: 
: 
: 
~|
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
Get the mailserver that powers this list at http://www.coolfusion.com



RE: MS CF?

2002-12-23 Thread Stacy Young
You kidding?

MS is all about capturing the user install base (Windows, IE etc..)...and
Flash is the most widely distributed run time...more so than windows.

Another attractive aspect is the Dreamweaver user base...

I would be very distraught, although not surprised, if MS has been
considering MM for a long time...

Vivre la resistance!

Stace

-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED]] 
Sent: Monday, December 23, 2002 5:26 AM
To: CF-Talk
Subject: RE: MS CF?

I doubt this will happen, Microsoft have no need to look at CF or
Macromedia; its not their bag MM are of no threat to MS this is
reflected in the two turnovers..Billions v's Millions.

-Original Message-
From: Les Mizzell [mailto:[EMAIL PROTECTED]]
Sent: 23 December 2002 10:12
To: CF-Talk
Subject: RE: MS CF?


 
: http://theregister.co.uk/content/4/28667.html


I'll have to kill myself if this happens. Really.


~|
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
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



Brief Introduction

2002-12-23 Thread Christian Cantrell
I would like to introduce myself to everyone on cf-talk as the new 
Macromedia community manager for ColdFusion.  My name is Christian, and 
I have been developing various types of applications in ColdFusion and 
Java for the last five years.  I am excited about the opportunity to 
work with such a strong and active community, and to help ensure that 
the dialogue between the community and Macromedia is efficient and 
productive.

In addition to managing the relationship between the ColdFusion 
community and Macromedia, I will, among other things, also be 
responsible for the ColdFusion content on the Macromedia MX Developer 
Resource Kit, so I am interested in discussing ideas about the types of 
articles, tutorials, sample applications, component libraries, etc. you 
think would be useful.  Additionally, please do not hesitate to email 
me personally off-list with any other questions, comments or 
suggestions at any time.

Christian Cantrell

~|
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
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: MS CF?

2002-12-23 Thread Rob Rohan
Well, welcome to America where you vote means nothing unless there is an
amount of money tied to it. I buy stocks in companies where I like their
business practices, think they have good products, and approve of how they
treat their staff.

Sometimes I loose money, often I make money. Because in the end how you run
your business is how you wind up being treated - in this world or the next.

I disapprove of a lot of Microsoft's business practices, and I think they
are an ethically bad company. They make money - yes - but that is all they
do.

Plus I sleep *really* well.

ALL IMHO as it is my funny green pieces of paper that we have put value on.

(If you think it's all about the money - I pity you)
Rob

-Original Message-
From: Cantrell, Adam [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 23, 2002 9:39 AM
To: CF-Talk
Subject: RE: MS CF?


Why would you sell it? I'm no Wall St. slickster, but wouldn't you make out
well if you were suddenly in possession of $54 MS stock in exchange for your
$11 MM shares?


 -Original Message-
 From: Rob Rohan [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 11:32 AM
 To: CF-Talk
 Subject: RE: MS CF?


 Ha, from the Robertson-Ravo news source :)

 Guess now I *don't* have to sell my Macromedia stock, whew!

 Rob

 -Original Message-
 From: Robertson-Ravo, Neil (RX)
 [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 9:04 AM
 To: CF-Talk
 Subject: RE: MS CF?


 its not

 -Original Message-
 From: Rob Rohan [mailto:[EMAIL PROTECTED]]
 Sent: 23 December 2002 17:07
 To: CF-Talk
 Subject: RE: MS CF?


 Please tell me this isn't true.

 Rob

 http://treebeard.sourceforge.net
 http://ruinworld.sourceforge.net
 Scientia Est Potentia

 -Original Message-
 From: Len Conrad [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 2:07 AM
 To: CF-Talk
 Subject: MS CF?


 http://theregister.co.uk/content/4/28667.html









~|
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 list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: Brief Introduction

2002-12-23 Thread Stacy Young
Welcome!

-Stace

-Original Message-
From: Christian Cantrell [mailto:[EMAIL PROTECTED]] 
Sent: Monday, December 23, 2002 12:47 PM
To: CF-Talk
Subject: Brief Introduction

I would like to introduce myself to everyone on cf-talk as the new 
Macromedia community manager for ColdFusion.  My name is Christian, and 
I have been developing various types of applications in ColdFusion and 
Java for the last five years.  I am excited about the opportunity to 
work with such a strong and active community, and to help ensure that 
the dialogue between the community and Macromedia is efficient and 
productive.

In addition to managing the relationship between the ColdFusion 
community and Macromedia, I will, among other things, also be 
responsible for the ColdFusion content on the Macromedia MX Developer 
Resource Kit, so I am interested in discussing ideas about the types of 
articles, tutorials, sample applications, component libraries, etc. you 
think would be useful.  Additionally, please do not hesitate to email 
me personally off-list with any other questions, comments or 
suggestions at any time.

Christian Cantrell


~|
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
Get the mailserver that powers this list at http://www.coolfusion.com



RE: Brief Introduction

2002-12-23 Thread Lee Fuller
Hello Christian.. And Welcome!

I'd like to jump in and make one suggestion for the reskit.  I'm very
interested in seeing a component that would build entire sites for us,
quickly and simply.  Something like CF_BuildSite.  With options
including detail, look, ecommerce, etc.  Including support as a
tag would be great... Like:

cf_buildsite detail=medium look=corporate eccommerce=yes
automanaged=youbet

Something along those lines?

evil grin

But seriously... Welcome aboard!

Lee


| -Original Message-
| From: Christian Cantrell [mailto:[EMAIL PROTECTED]] 
| Sent: Monday, December 23, 2002 9:47 AM
| To: CF-Talk
| Subject: Brief Introduction
| 
| 
| I would like to introduce myself to everyone on cf-talk as the new 
| Macromedia community manager for ColdFusion.  My name is 
| Christian, and 
| I have been developing various types of applications in 
| ColdFusion and 
| Java for the last five years.  I am excited about the opportunity to 
| work with such a strong and active community, and to help ensure that 
| the dialogue between the community and Macromedia is efficient and 
| productive.
| 
| In addition to managing the relationship between the ColdFusion 
| community and Macromedia, I will, among other things, also be 
| responsible for the ColdFusion content on the Macromedia MX Developer 
| Resource Kit, so I am interested in discussing ideas about 
| the types of 
| articles, tutorials, sample applications, component 
| libraries, etc. you 
| think would be useful.  Additionally, please do not hesitate to email 
| me personally off-list with any other questions, comments or 
| suggestions at any time.
| 
| Christian Cantrell
| 
| 
~|
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
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



MS to buy Macromedia - lets hope not...

2002-12-23 Thread brook
Man, I hope there's no truth to this: 
http://theregister.co.uk/content/4/28667.html

Brook


~|
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
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



Re: Randomization of a cfquery

2002-12-23 Thread Joe Eugene
These are the issues.. with the code below..

1. Nested loops.. (Overhead)
2. Creating new queries (Overhead). Basically u are making a copy of the
resultset. Why cant you work with the original Resultset?
3. UDF's are generally slow... but to manage code.. yes.. it works.

All you need here.. is generate series of  random INDEX keys based on given
Index Keys.

The code can be put in a Java Object/UDF/Custom tags../Include.. whatever..
Thats a personal preference, i would rather use a Java Object..Pass an array
of index keys back...
Once the algorithm scales...then making it Re-Usable is NOT a big deal.

Joe


On Sun, 22 Dec 2002 19:43:48 -0500 Christian Cantrell
[EMAIL PROTECTED] wrote:

 The code that I wrote exists inside of a
 function, which makes it  
 modular and reusable.  By randomizing the query
 results as you display  
 them, you would have to copy and paste that
 code everywhere you wanted  
 to display query results in a random order
 rather than being able to  
 call one function from several different
 places.  I create a new query  
 object because my function is not concerned
 with the display of the  
 results -- it leaves the presentation in the
 hands of the caller which  
 keeps it generic and reusable.
 
 Christian
 
 On Sunday, December 22, 2002, at 02:32 PM, Joe
 Eugene wrote:
 
  I am not sure.. why you are creating a NEW
 query...
  This below.. should
 work..except..randRange(1,20).. can
  have duplicates..a list value check in the
 loop should do it.
 
  
  aIdx=arrayNew(1);
  for(i=1;i lte queryName.recordCount; i=i+1){
  aIdx[i]=randRange(1,queryName.recordCount);
  }
  
  
  
  #aIdx[k]# . #queryName.ColumnName[aIdx[k]]#
  
  
  Joe
 
  -Original Message-
  From: Christian Cantrell
 [mailto:[EMAIL PROTECTED]]
  Sent: Saturday, December 21, 2002 9:39 PM
  To: CF-Talk
  Subject: Re: Randomization of a cfquery
 
 
  It's not as easy as it seems.  Here's a
 function that I believe will  
  do
  the trick.  I wrote it pretty quickly, so if
 you are going to use it,
  test it thoroughly.  Just pass in a query
 object and it will return a
  new query object with the rows randomized. 
 You can wrap it in a  
  custom
  tag if you like, but it makes a good
 function in my opinion.
 
  
  function queryRandomize(toRandomize)
  {
   var size = toRandomize.recordcount;
   var cols = toRandomize.columnList;
   var colArray = listToArray(cols);
   var newQuery = queryNew(cols);
   var i = 0;
   var j = 0;
   var randomRow = 0;
 
   //
   // Create an array of integers that is
 the size of the record  
  set.
   // We will draw on this array randomly
 and resize it dynamically.
   //
   var numberBank = arrayNew(1);
   for (i = 1; i neq size + 1; i = i + 1)
   {
   numberBank[i] = i;
   }
 
   queryAddRow(newQuery, size);
   for (i = 1; i neq (size + 1); i = i +
 1)
   {
   randomRow = randRange(1,
 arrayLen(numberBank));
   for (j = 1; j neq
 (arrayLen(colArray) + 1); j = j + 1)
   {
   querySetCell(newQuery,
 colArray[j],
  toRandomize[colArray[j]][i],
 numberBank[randomRow]);
   }
   arrayDeleteAt(numberBank,
 randomRow);
   }
   return newQuery;
  }
  
 
  On Saturday, December 21, 2002, at 04:25 PM,
 David Jones wrote:
 
  Does anyone have a custom tag that will
 take a regular query and
  randomize
  the results? I don't have to have a custom
 tag a database solution
  would do
  as well. Anything would help at this point.
 This seems like a simply
  thing
  to do.  I am using Oracle for my backend so
 if anyone knows of a way
  to do
  it there that would be great too.
 
  Thanks in advance,
 
  Dave
 
 
 
 
 
 
  
 
~|
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
Get the mailserver that powers this list at http://www.coolfusion.com



RE: Brief Introduction

2002-12-23 Thread Adrocknaphobia Jones
Welcome to list/party.

Do you think we could ever get a rating system on the developer's
exchange? I can't tell you how many hours I've lost downloading crappy
cide looking for the diamond in the rough. I think a rating system would
help a lot, possibly with user reviews/comments.

I just find it nearly impossible to tell similar tags apart, aside from
downloading and testing.

Adam Wayne Lehman
Web Systems Developer
Johns Hopkins Bloomberg School of Public Health
Distance Education Division


-Original Message-
From: Christian Cantrell [mailto:[EMAIL PROTECTED]] 
Sent: Monday, December 23, 2002 12:47 PM
To: CF-Talk
Subject: Brief Introduction

I would like to introduce myself to everyone on cf-talk as the new 
Macromedia community manager for ColdFusion.  My name is Christian, and 
I have been developing various types of applications in ColdFusion and 
Java for the last five years.  I am excited about the opportunity to 
work with such a strong and active community, and to help ensure that 
the dialogue between the community and Macromedia is efficient and 
productive.

In addition to managing the relationship between the ColdFusion 
community and Macromedia, I will, among other things, also be 
responsible for the ColdFusion content on the Macromedia MX Developer 
Resource Kit, so I am interested in discussing ideas about the types of 
articles, tutorials, sample applications, component libraries, etc. you 
think would be useful.  Additionally, please do not hesitate to email 
me personally off-list with any other questions, comments or 
suggestions at any time.

Christian Cantrell


~|
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 list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: Brief Introduction

2002-12-23 Thread Tony Weeg
welcome christian, and good luckthis can be a tough group, however
insightful, yet tough.
although, you arent new to this list, are ya? I thought I had seen you
on here before?

..tony

Tony Weeg
Senior Web Developer
UnCertified Advanced ColdFusion Developer
Information System Design
Navtrak, Inc.
Mobile workforce monitoring, mapping  reporting
www.navtrak.net
410.548.2337 

-Original Message-
From: Lee Fuller [mailto:[EMAIL PROTECTED]] 
Sent: Monday, December 23, 2002 1:07 PM
To: CF-Talk
Subject: RE: Brief Introduction


Hello Christian.. And Welcome!

I'd like to jump in and make one suggestion for the reskit.  I'm very
interested in seeing a component that would build entire sites for us,
quickly and simply.  Something like CF_BuildSite.  With options
including detail, look, ecommerce, etc.  Including support as a
tag would be great... Like:

cf_buildsite detail=medium look=corporate eccommerce=yes
automanaged=youbet

Something along those lines?

evil grin

But seriously... Welcome aboard!

Lee


| -Original Message-
| From: Christian Cantrell [mailto:[EMAIL PROTECTED]] 
| Sent: Monday, December 23, 2002 9:47 AM
| To: CF-Talk
| Subject: Brief Introduction
| 
| 
| I would like to introduce myself to everyone on cf-talk as the new 
| Macromedia community manager for ColdFusion.  My name is 
| Christian, and 
| I have been developing various types of applications in 
| ColdFusion and 
| Java for the last five years.  I am excited about the opportunity to 
| work with such a strong and active community, and to help ensure that 
| the dialogue between the community and Macromedia is efficient and 
| productive.
| 
| In addition to managing the relationship between the ColdFusion 
| community and Macromedia, I will, among other things, also be 
| responsible for the ColdFusion content on the Macromedia MX Developer 
| Resource Kit, so I am interested in discussing ideas about 
| the types of 
| articles, tutorials, sample applications, component 
| libraries, etc. you 
| think would be useful.  Additionally, please do not hesitate to email 
| me personally off-list with any other questions, comments or 
| suggestions at any time.
| 
| Christian Cantrell
| 
| 

~|
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
Get the mailserver that powers this list at http://www.coolfusion.com



RE: MS CF?

2002-12-23 Thread Luce, Greg
The Stock Market is all about money. That's the first rule of investing.
Buying or selling stocks based on any other ideas is just silly. Good luck
with that.

Greg
-Original Message-
From: Rob Rohan [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 23, 2002 12:58 PM
To: CF-Talk
Subject: RE: MS CF?


Well, welcome to America where you vote means nothing unless there is an
amount of money tied to it. I buy stocks in companies where I like their
business practices, think they have good products, and approve of how they
treat their staff.

Sometimes I loose money, often I make money. Because in the end how you run
your business is how you wind up being treated - in this world or the next.

I disapprove of a lot of Microsoft's business practices, and I think they
are an ethically bad company. They make money - yes - but that is all they
do.

Plus I sleep *really* well.

ALL IMHO as it is my funny green pieces of paper that we have put value on.

(If you think it's all about the money - I pity you)
Rob

-Original Message-
From: Cantrell, Adam [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 23, 2002 9:39 AM
To: CF-Talk
Subject: RE: MS CF?


Why would you sell it? I'm no Wall St. slickster, but wouldn't you make out
well if you were suddenly in possession of $54 MS stock in exchange for your
$11 MM shares?


 -Original Message-
 From: Rob Rohan [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 11:32 AM
 To: CF-Talk
 Subject: RE: MS CF?


 Ha, from the Robertson-Ravo news source :)

 Guess now I *don't* have to sell my Macromedia stock, whew!

 Rob

 -Original Message-
 From: Robertson-Ravo, Neil (RX)
 [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 9:04 AM
 To: CF-Talk
 Subject: RE: MS CF?


 its not

 -Original Message-
 From: Rob Rohan [mailto:[EMAIL PROTECTED]]
 Sent: 23 December 2002 17:07
 To: CF-Talk
 Subject: RE: MS CF?


 Please tell me this isn't true.

 Rob

 http://treebeard.sourceforge.net
 http://ruinworld.sourceforge.net
 Scientia Est Potentia

 -Original Message-
 From: Len Conrad [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 2:07 AM
 To: CF-Talk
 Subject: MS CF?


 http://theregister.co.uk/content/4/28667.html










~|
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
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: MS to buy Macromedia - lets hope not...

2002-12-23 Thread Lee Fuller
LOL!  I can't wait!

rushingtomystocktradingwebsite



| -Original Message-
| From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] 
| Sent: Monday, December 23, 2002 10:08 AM
| To: CF-Talk
| Subject: MS to buy Macromedia - lets hope not...
| 
| 
| Man, I hope there's no truth to this: 
| http://theregister.co.uk/content/4/28667.html
| 
| Brook
| 
| 
| 
~|
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
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: MS CF?

2002-12-23 Thread Cantrell, Adam
nah - no pitying required :)

So how would selling your MS shares after MM was acquired not be reinforcing
your opinion below? You would both be voicing your disapproval to MS and be
profiting from it. Seems silly as an investor to voice your opinion before
hand based on internet speculation from the Register.

Adam.




 -Original Message-
 From: Rob Rohan [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 11:58 AM
 To: CF-Talk
 Subject: RE: MS CF?
 
 
 Well, welcome to America where you vote means nothing unless 
 there is an
 amount of money tied to it. I buy stocks in companies where I 
 like their
 business practices, think they have good products, and 
 approve of how they
 treat their staff.
 
 Sometimes I loose money, often I make money. Because in the 
 end how you run
 your business is how you wind up being treated - in this 
 world or the next.
 
 I disapprove of a lot of Microsoft's business practices, and 
 I think they
 are an ethically bad company. They make money - yes - but 
 that is all they
 do.
 
 Plus I sleep *really* well.
 
 ALL IMHO as it is my funny green pieces of paper that we have 
 put value on.
 
 (If you think it's all about the money - I pity you)
 Rob
 
 -Original Message-
 From: Cantrell, Adam [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 9:39 AM
 To: CF-Talk
 Subject: RE: MS CF?
 
 
 Why would you sell it? I'm no Wall St. slickster, but 
 wouldn't you make out
 well if you were suddenly in possession of $54 MS stock in 
 exchange for your
 $11 MM shares?
 
 
  -Original Message-
  From: Rob Rohan [mailto:[EMAIL PROTECTED]]
  Sent: Monday, December 23, 2002 11:32 AM
  To: CF-Talk
  Subject: RE: MS CF?
 
 
  Ha, from the Robertson-Ravo news source :)
 
  Guess now I *don't* have to sell my Macromedia stock, whew!
 
  Rob
 
  -Original Message-
  From: Robertson-Ravo, Neil (RX)
  [mailto:[EMAIL PROTECTED]]
  Sent: Monday, December 23, 2002 9:04 AM
  To: CF-Talk
  Subject: RE: MS CF?
 
 
  its not
 
  -Original Message-
  From: Rob Rohan [mailto:[EMAIL PROTECTED]]
  Sent: 23 December 2002 17:07
  To: CF-Talk
  Subject: RE: MS CF?
 
 
  Please tell me this isn't true.
 
  Rob
 
  http://treebeard.sourceforge.net
  http://ruinworld.sourceforge.net
  Scientia Est Potentia
 
  -Original Message-
  From: Len Conrad [mailto:[EMAIL PROTECTED]]
  Sent: Monday, December 23, 2002 2:07 AM
  To: CF-Talk
  Subject: MS CF?
 
 
  http://theregister.co.uk/content/4/28667.html
 
 
 
 
 
 
 
 
 
 
~|
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
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: MS CF?

2002-12-23 Thread Thane Sherrington
At 01:14 PM 12/23/02 -0500, Luce, Greg wrote:
The Stock Market is all about money. That's the first rule of investing.
Buying or selling stocks based on any other ideas is just silly. Good luck
with that.

Actually, given the number of ethical funds out there, a lot of people 
think the way Rob does.  I'd say the world would be a better place if more 
people bought stocks this way.  A way to great wealth?  Probably not.  But 
money isn't everything.


T

~|
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
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: MS CF? (getting OT)

2002-12-23 Thread Rob Rohan
Funny, I was under the impression the stock market was about stock. If I am
not mistaken when you buy stock you are buying a piece of the company -
therefore, you are saying I like what this company is doing I am going to
give them money so they can do what they are doing some more. - weather you
mean to or not.

It has become a Las Vegas type institution where most don't care where their
vote is going, but it goes none-the-less.

Thank you for your good luck wishes, but from the tone of your reply, I
think you will need the luck more then I will.

Rob

-Original Message-
From: Luce, Greg [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 23, 2002 10:14 AM
To: CF-Talk
Subject: RE: MS CF?


The Stock Market is all about money. That's the first rule of investing.
Buying or selling stocks based on any other ideas is just silly. Good luck
with that.

Greg
-Original Message-
From: Rob Rohan [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 23, 2002 12:58 PM
To: CF-Talk
Subject: RE: MS CF?


Well, welcome to America where you vote means nothing unless there is an
amount of money tied to it. I buy stocks in companies where I like their
business practices, think they have good products, and approve of how they
treat their staff.

Sometimes I loose money, often I make money. Because in the end how you run
your business is how you wind up being treated - in this world or the next.

I disapprove of a lot of Microsoft's business practices, and I think they
are an ethically bad company. They make money - yes - but that is all they
do.

Plus I sleep *really* well.

ALL IMHO as it is my funny green pieces of paper that we have put value on.

(If you think it's all about the money - I pity you)
Rob

-Original Message-
From: Cantrell, Adam [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 23, 2002 9:39 AM
To: CF-Talk
Subject: RE: MS CF?


Why would you sell it? I'm no Wall St. slickster, but wouldn't you make out
well if you were suddenly in possession of $54 MS stock in exchange for your
$11 MM shares?


 -Original Message-
 From: Rob Rohan [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 11:32 AM
 To: CF-Talk
 Subject: RE: MS CF?


 Ha, from the Robertson-Ravo news source :)

 Guess now I *don't* have to sell my Macromedia stock, whew!

 Rob

 -Original Message-
 From: Robertson-Ravo, Neil (RX)
 [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 9:04 AM
 To: CF-Talk
 Subject: RE: MS CF?


 its not

 -Original Message-
 From: Rob Rohan [mailto:[EMAIL PROTECTED]]
 Sent: 23 December 2002 17:07
 To: CF-Talk
 Subject: RE: MS CF?


 Please tell me this isn't true.

 Rob

 http://treebeard.sourceforge.net
 http://ruinworld.sourceforge.net
 Scientia Est Potentia

 -Original Message-
 From: Len Conrad [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 2:07 AM
 To: CF-Talk
 Subject: MS CF?


 http://theregister.co.uk/content/4/28667.html











~|
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
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: MS to buy Macromedia - lets hope not...

2002-12-23 Thread Kris Pilles
I would love to see that happen... 

-Original Message-
From: Lee Fuller [mailto:[EMAIL PROTECTED]] 
Sent: Monday, December 23, 2002 1:16 PM
To: CF-Talk
Subject: RE: MS to buy Macromedia - lets hope not...


LOL!  I can't wait!

rushingtomystocktradingwebsite



| -Original Message-
| From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
| Sent: Monday, December 23, 2002 10:08 AM
| To: CF-Talk
| Subject: MS to buy Macromedia - lets hope not...
| 
| 
| Man, I hope there's no truth to this:
| http://theregister.co.uk/content/4/28667.html
| 
| Brook
| 
| 
| 

~|
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 list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: MS CF?

2002-12-23 Thread Jeffry Houser
At 01:14 PM 12/23/2002 -0500, you wrote:
The Stock Market is all about money. That's the first rule of investing.
Buying or selling stocks based on any other ideas is just silly. Good luck
with that.

  I see your point, but I also see Rob's point too.
  There are many theories of investing in the stock market.  I'm sure there 
are plenty of profitable companies that adhere to good business practices.



Greg
-Original Message-
From: Rob Rohan [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 23, 2002 12:58 PM
To: CF-Talk
Subject: RE: MS CF?


Well, welcome to America where you vote means nothing unless there is an
amount of money tied to it. I buy stocks in companies where I like their
business practices, think they have good products, and approve of how they
treat their staff.

Sometimes I loose money, often I make money. Because in the end how you run
your business is how you wind up being treated - in this world or the next.

I disapprove of a lot of Microsoft's business practices, and I think they
are an ethically bad company. They make money - yes - but that is all they
do.

Plus I sleep *really* well.

ALL IMHO as it is my funny green pieces of paper that we have put value on.

(If you think it's all about the money - I pity you)
Rob

-Original Message-
From: Cantrell, Adam [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 23, 2002 9:39 AM
To: CF-Talk
Subject: RE: MS CF?


Why would you sell it? I'm no Wall St. slickster, but wouldn't you make out
well if you were suddenly in possession of $54 MS stock in exchange for your
$11 MM shares?


  -Original Message-
  From: Rob Rohan [mailto:[EMAIL PROTECTED]]
  Sent: Monday, December 23, 2002 11:32 AM
  To: CF-Talk
  Subject: RE: MS CF?
 
 
  Ha, from the Robertson-Ravo news source :)
 
  Guess now I *don't* have to sell my Macromedia stock, whew!
 
  Rob
 
  -Original Message-
  From: Robertson-Ravo, Neil (RX)
  [mailto:[EMAIL PROTECTED]]
  Sent: Monday, December 23, 2002 9:04 AM
  To: CF-Talk
  Subject: RE: MS CF?
 
 
  its not
 
  -Original Message-
  From: Rob Rohan [mailto:[EMAIL PROTECTED]]
  Sent: 23 December 2002 17:07
  To: CF-Talk
  Subject: RE: MS CF?
 
 
  Please tell me this isn't true.
 
  Rob
 
  http://treebeard.sourceforge.net
  http://ruinworld.sourceforge.net
  Scientia Est Potentia
 
  -Original Message-
  From: Len Conrad [mailto:[EMAIL PROTECTED]]
  Sent: Monday, December 23, 2002 2:07 AM
  To: CF-Talk
  Subject: MS CF?
 
 
  http://theregister.co.uk/content/4/28667.html
 
 
 
 
 
 
 
 



~|
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 list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



Re: MS to buy Macromedia - lets hope not...

2002-12-23 Thread Chris Montgomery
Monday, December 23, 2002, 12:08:23 PM, [EMAIL PROTECTED] wrote:

 Man, I hope there's no truth to this: 
 http://theregister.co.uk/content/4/28667.html

Already lots of hand-wringing and gnashing of teeth going on here:
http://slashdot.org/articles/02/12/23/1223232.shtml?tid=109

Bah! Humbug!!

-- 
Chris Montgomerymonty @ airtightweb.com 
Airtight Web Services   http://www.airtightweb.com
Web Development, Web Project Management, Software Sales
210-490-3249/888-745-7603

~|
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
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: MS CF?

2002-12-23 Thread Adrocknaphobia Jones
You can sit here and complain that MS is the bad guy, but they are not
the company you have put your faith in. I know I have the unpopular view
on this list as anti-MM, but I can tell you that if MS owned Flash, you
wouldn't have to worry about it being sold again. Same goes for Cold
Fusion. You could rest assured that the technology and education you put
into MS will still be viable in 20 years. Which is something only a fool
would say about Cold Fusion or Flash which are both still in their
relative adolescence.

Quite frankly, MS offers developers security. Something that MM and
Allaire have failed quite miserably at (IMO).

Rest assured though, we will probably not fall to the evil empire. If
acquiring MM is a bid to diminish J2EE, I would expect IBM or Sun to
offer a merger to counter an MS acquisition. After all, they both seemed
to have invested a great deal in Cold Fusion and its J2ee developers.

Although I still tell every CF developer I meet to learn a new language.
Bottom line is that a broader skill set is never a detriment.

Adam Wayne Lehman
Web Systems Developer
Johns Hopkins Bloomberg School of Public Health
Distance Education Division


-Original Message-
From: Cantrell, Adam [mailto:[EMAIL PROTECTED]] 
Sent: Monday, December 23, 2002 1:22 PM
To: CF-Talk
Subject: RE: MS CF?

nah - no pitying required :)

So how would selling your MS shares after MM was acquired not be
reinforcing
your opinion below? You would both be voicing your disapproval to MS and
be
profiting from it. Seems silly as an investor to voice your opinion
before
hand based on internet speculation from the Register.

Adam.




 -Original Message-
 From: Rob Rohan [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 11:58 AM
 To: CF-Talk
 Subject: RE: MS CF?
 
 
 Well, welcome to America where you vote means nothing unless 
 there is an
 amount of money tied to it. I buy stocks in companies where I 
 like their
 business practices, think they have good products, and 
 approve of how they
 treat their staff.
 
 Sometimes I loose money, often I make money. Because in the 
 end how you run
 your business is how you wind up being treated - in this 
 world or the next.
 
 I disapprove of a lot of Microsoft's business practices, and 
 I think they
 are an ethically bad company. They make money - yes - but 
 that is all they
 do.
 
 Plus I sleep *really* well.
 
 ALL IMHO as it is my funny green pieces of paper that we have 
 put value on.
 
 (If you think it's all about the money - I pity you)
 Rob
 
 -Original Message-
 From: Cantrell, Adam [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 9:39 AM
 To: CF-Talk
 Subject: RE: MS CF?
 
 
 Why would you sell it? I'm no Wall St. slickster, but 
 wouldn't you make out
 well if you were suddenly in possession of $54 MS stock in 
 exchange for your
 $11 MM shares?
 
 
  -Original Message-
  From: Rob Rohan [mailto:[EMAIL PROTECTED]]
  Sent: Monday, December 23, 2002 11:32 AM
  To: CF-Talk
  Subject: RE: MS CF?
 
 
  Ha, from the Robertson-Ravo news source :)
 
  Guess now I *don't* have to sell my Macromedia stock, whew!
 
  Rob
 
  -Original Message-
  From: Robertson-Ravo, Neil (RX)
  [mailto:[EMAIL PROTECTED]]
  Sent: Monday, December 23, 2002 9:04 AM
  To: CF-Talk
  Subject: RE: MS CF?
 
 
  its not
 
  -Original Message-
  From: Rob Rohan [mailto:[EMAIL PROTECTED]]
  Sent: 23 December 2002 17:07
  To: CF-Talk
  Subject: RE: MS CF?
 
 
  Please tell me this isn't true.
 
  Rob
 
  http://treebeard.sourceforge.net
  http://ruinworld.sourceforge.net
  Scientia Est Potentia
 
  -Original Message-
  From: Len Conrad [mailto:[EMAIL PROTECTED]]
  Sent: Monday, December 23, 2002 2:07 AM
  To: CF-Talk
  Subject: MS CF?
 
 
  http://theregister.co.uk/content/4/28667.html
 
 
 
 
 
 
 
 
 
 

~|
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
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: MS CF? (getting OT)

2002-12-23 Thread Luce, Greg
I could ask the guys on the trading floor for their opinion, but I don't
think I have to. I guess I should have specified Investing in the stock
market to make money as opposed to just The stock market. I didn't know
there was a different way to look at it though. Perhaps that explains some
things. Throughout the 90s I wondered how everyone was winning. Now I see
there is a whole other segment. I wondered who was losing.

Greg

-Original Message-
From: Rob Rohan [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 23, 2002 1:33 PM
To: CF-Talk
Subject: RE: MS CF? (getting OT)


Funny, I was under the impression the stock market was about stock. If I am
not mistaken when you buy stock you are buying a piece of the company -
therefore, you are saying I like what this company is doing I am going to
give them money so they can do what they are doing some more. - weather you
mean to or not.

It has become a Las Vegas type institution where most don't care where their
vote is going, but it goes none-the-less.

Thank you for your good luck wishes, but from the tone of your reply, I
think you will need the luck more then I will.

Rob

-Original Message-
From: Luce, Greg [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 23, 2002 10:14 AM
To: CF-Talk
Subject: RE: MS CF?


The Stock Market is all about money. That's the first rule of investing.
Buying or selling stocks based on any other ideas is just silly. Good luck
with that.

Greg
-Original Message-
From: Rob Rohan [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 23, 2002 12:58 PM
To: CF-Talk
Subject: RE: MS CF?


Well, welcome to America where you vote means nothing unless there is an
amount of money tied to it. I buy stocks in companies where I like their
business practices, think they have good products, and approve of how they
treat their staff.

Sometimes I loose money, often I make money. Because in the end how you run
your business is how you wind up being treated - in this world or the next.

I disapprove of a lot of Microsoft's business practices, and I think they
are an ethically bad company. They make money - yes - but that is all they
do.

Plus I sleep *really* well.

ALL IMHO as it is my funny green pieces of paper that we have put value on.

(If you think it's all about the money - I pity you)
Rob

-Original Message-
From: Cantrell, Adam [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 23, 2002 9:39 AM
To: CF-Talk
Subject: RE: MS CF?


Why would you sell it? I'm no Wall St. slickster, but wouldn't you make out
well if you were suddenly in possession of $54 MS stock in exchange for your
$11 MM shares?


 -Original Message-
 From: Rob Rohan [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 11:32 AM
 To: CF-Talk
 Subject: RE: MS CF?


 Ha, from the Robertson-Ravo news source :)

 Guess now I *don't* have to sell my Macromedia stock, whew!

 Rob

 -Original Message-
 From: Robertson-Ravo, Neil (RX)
 [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 9:04 AM
 To: CF-Talk
 Subject: RE: MS CF?


 its not

 -Original Message-
 From: Rob Rohan [mailto:[EMAIL PROTECTED]]
 Sent: 23 December 2002 17:07
 To: CF-Talk
 Subject: RE: MS CF?


 Please tell me this isn't true.

 Rob

 http://treebeard.sourceforge.net
 http://ruinworld.sourceforge.net
 Scientia Est Potentia

 -Original Message-
 From: Len Conrad [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 2:07 AM
 To: CF-Talk
 Subject: MS CF?


 http://theregister.co.uk/content/4/28667.html












~|
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
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: CFMX / JVM

2002-12-23 Thread Alex Hubner
Thanks Rob, but what about the SUN's JVM? What should I use? Client or Server JVM? All 
JVM versions came with 
the two... AFAIN (in fact I've read) the Client is provided for development or GUI 
use, the Server is more 
stable and has performance improvements, but I'm not sure about it.

Does anybody have an advice about it?

Thanks!!
Alex


On Mon, 23 Dec 2002 09:26:12 -0800, Rob Rohan [EMAIL PROTECTED] escreveu :

 De: Rob Rohan [EMAIL PROTECTED]
 Data: Mon, 23 Dec 2002 09:26:12 -0800
 Para: CF-Talk [EMAIL PROTECTED]
 Assunto: RE: CFMX / JVM
 
 We have had the best luck with JRE 1.4.0_02. We had issues with 1.4.1
 (jacked up dates and odd little problems) and 1.3 (no I18n and slow).
 
 We want to try JRocket and or Kaffe, but haven't had time
 
 Good luck,
 Rob
 
 http://treebeard.sourceforge.net
 http://ruinworld.sourceforge.net
 Scientia Est Potentia
 
 -Original Message-
 From: Alex Hubner [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 6:57 AM
 To: CF-Talk
 Subject: Re: CFMX / JVM
 
 
 Hello friends,
 
 What JVM should I use? Client or Server JVM? Which one is
 faster/reliable/better for a production server? I've
 noticed that the default behaviour for CFMX is to set the Client JVM. But
 when I rename the Client jvm.dll to
 anything different it sets the Server one.
 
 Java VM Name:  Java HotSpot(TM) Server VM
 Java VM Name:  Java HotSpot(TM) Client VM
 
 Which one is best? There's no difference at all for CFMX? The same is valid
 for JRun?
 
 Thanks and happy holidays from Brazil!
 Alex
 
 
 On Fri, 20 Dec 2002 10:01:09 -0500, Frank Mamone [EMAIL PROTECTED]
 escreveu :
 
  De: Frank Mamone [EMAIL PROTECTED]
  Data: Fri, 20 Dec 2002 10:01:09 -0500
  Para: CF-Talk [EMAIL PROTECTED]
  Assunto: Re: CFMX / JVM
 
  Where would I point the Classpath?
  - Original Message -
  From: Jesse Houwing [EMAIL PROTECTED]
  To: CF-Talk [EMAIL PROTECTED]
  Sent: Friday, December 20, 2002 4:33 AM
  Subject: Re: CFMX / JVM
 
 
   Joe Eugene wrote:
  
   I dont think there is a written procedure..
   
   1. Downloads J2SE 1.4.0.
   2. Install.
   3. In the admin point JVM to new install java runtime(jre).
   4. Recycle CFMX service and u are good to go..
   
   Try this.. write a loop time code or some.. and run it under different
  JVM's
   swtiching back and forth.. 1.4.0 is about 30-40% faster.
   
   
   
   Note that you can't stop Coldfusion MX from the services panel if you
   change the JVM from the administrator. You need to manually kill
   jrun.exe or reboot.
  
   Jesse
  
  
 
 
 
~|
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
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



Rating System

2002-12-23 Thread Christian Cantrell
Adam,

This is a great idea, and something that will be included in the next  
version of the developers' exchange.  Keep the good ideas coming!

Christian

On Monday, December 23, 2002, at 01:15 PM, Adrocknaphobia Jones wrote:

 Welcome to list/party.

 Do you think we could ever get a rating system on the developer's
 exchange? I can't tell you how many hours I've lost downloading crappy
 cide looking for the diamond in the rough. I think a rating system  
 would
 help a lot, possibly with user reviews/comments.

 I just find it nearly impossible to tell similar tags apart, aside from
 downloading and testing.

 Adam Wayne Lehman
 Web Systems Developer
 Johns Hopkins Bloomberg School of Public Health
 Distance Education Division


 -Original Message-
 From: Christian Cantrell [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 12:47 PM
 To: CF-Talk
 Subject: Brief Introduction

 I would like to introduce myself to everyone on cf-talk as the new
 Macromedia community manager for ColdFusion.  My name is Christian, and
 I have been developing various types of applications in ColdFusion and
 Java for the last five years.  I am excited about the opportunity to
 work with such a strong and active community, and to help ensure that
 the dialogue between the community and Macromedia is efficient and
 productive.

 In addition to managing the relationship between the ColdFusion
 community and Macromedia, I will, among other things, also be
 responsible for the ColdFusion content on the Macromedia MX Developer
 Resource Kit, so I am interested in discussing ideas about the types of
 articles, tutorials, sample applications, component libraries, etc. you
 think would be useful.  Additionally, please do not hesitate to email
 me personally off-list with any other questions, comments or
 suggestions at any time.

 Christian Cantrell


 
~|
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 list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: MS CF?

2002-12-23 Thread Matt Liotta
Indeed. While I may like Macromedia products, people, business
practices, etc; I won't be buying any of their stock because it is a
horrible investment right now. Soon all publicly traded companies will
be forced to expense their stock options. When Macromedia is forced to
expense their stock options their stock is going to drop like a rock.
Macromedia's fiscal 2002 options expense was a whopping $1.57 per share.
And keep in mind that the company is expected to earn on a pro forma
basis only $0.29 in fiscal 2003.

Matt Liotta
President  CEO
Montara Software, Inc.
http://www.montarasoftware.com/
888-408-0900 x901

 -Original Message-
 From: Luce, Greg [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 1:14 PM
 To: CF-Talk
 Subject: RE: MS CF?
 
 The Stock Market is all about money. That's the first rule of
investing.
 Buying or selling stocks based on any other ideas is just silly. Good
luck
 with that.
 
 Greg
 -Original Message-
 From: Rob Rohan [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 12:58 PM
 To: CF-Talk
 Subject: RE: MS CF?
 
 
 Well, welcome to America where you vote means nothing unless there is
an
 amount of money tied to it. I buy stocks in companies where I like
their
 business practices, think they have good products, and approve of how
they
 treat their staff.
 
 Sometimes I loose money, often I make money. Because in the end how
you
 run
 your business is how you wind up being treated - in this world or the
 next.
 
 I disapprove of a lot of Microsoft's business practices, and I think
they
 are an ethically bad company. They make money - yes - but that is all
they
 do.
 
 Plus I sleep *really* well.
 
 ALL IMHO as it is my funny green pieces of paper that we have put
value
 on.
 
 (If you think it's all about the money - I pity you)
 Rob
 
 -Original Message-
 From: Cantrell, Adam [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 9:39 AM
 To: CF-Talk
 Subject: RE: MS CF?
 
 
 Why would you sell it? I'm no Wall St. slickster, but wouldn't you
make
 out
 well if you were suddenly in possession of $54 MS stock in exchange
for
 your
 $11 MM shares?
 
 
  -Original Message-
  From: Rob Rohan [mailto:[EMAIL PROTECTED]]
  Sent: Monday, December 23, 2002 11:32 AM
  To: CF-Talk
  Subject: RE: MS CF?
 
 
  Ha, from the Robertson-Ravo news source :)
 
  Guess now I *don't* have to sell my Macromedia stock, whew!
 
  Rob
 
  -Original Message-
  From: Robertson-Ravo, Neil (RX)
  [mailto:[EMAIL PROTECTED]]
  Sent: Monday, December 23, 2002 9:04 AM
  To: CF-Talk
  Subject: RE: MS CF?
 
 
  its not
 
  -Original Message-
  From: Rob Rohan [mailto:[EMAIL PROTECTED]]
  Sent: 23 December 2002 17:07
  To: CF-Talk
  Subject: RE: MS CF?
 
 
  Please tell me this isn't true.
 
  Rob
 
  http://treebeard.sourceforge.net
  http://ruinworld.sourceforge.net
  Scientia Est Potentia
 
  -Original Message-
  From: Len Conrad [mailto:[EMAIL PROTECTED]]
  Sent: Monday, December 23, 2002 2:07 AM
  To: CF-Talk
  Subject: MS CF?
 
 
  http://theregister.co.uk/content/4/28667.html
 
 
 
 
 
 
 
 
 
 
 
~|
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
Get the mailserver that powers this list at http://www.coolfusion.com



RE: MS CF? (getting OT)

2002-12-23 Thread Rob Rohan
Where are all the winners now?

Rob


-Original Message-
From: Luce, Greg [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 23, 2002 10:42 AM
To: CF-Talk
Subject: RE: MS CF? (getting OT)


I could ask the guys on the trading floor for their opinion, but I don't
think I have to. I guess I should have specified Investing in the stock
market to make money as opposed to just The stock market. I didn't know
there was a different way to look at it though. Perhaps that explains some
things. Throughout the 90s I wondered how everyone was winning. Now I see
there is a whole other segment. I wondered who was losing.

Greg

-Original Message-
From: Rob Rohan [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 23, 2002 1:33 PM
To: CF-Talk
Subject: RE: MS CF? (getting OT)


Funny, I was under the impression the stock market was about stock. If I am
not mistaken when you buy stock you are buying a piece of the company -
therefore, you are saying I like what this company is doing I am going to
give them money so they can do what they are doing some more. - weather you
mean to or not.

It has become a Las Vegas type institution where most don't care where their
vote is going, but it goes none-the-less.

Thank you for your good luck wishes, but from the tone of your reply, I
think you will need the luck more then I will.

Rob

-Original Message-
From: Luce, Greg [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 23, 2002 10:14 AM
To: CF-Talk
Subject: RE: MS CF?


The Stock Market is all about money. That's the first rule of investing.
Buying or selling stocks based on any other ideas is just silly. Good luck
with that.

Greg
-Original Message-
From: Rob Rohan [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 23, 2002 12:58 PM
To: CF-Talk
Subject: RE: MS CF?


Well, welcome to America where you vote means nothing unless there is an
amount of money tied to it. I buy stocks in companies where I like their
business practices, think they have good products, and approve of how they
treat their staff.

Sometimes I loose money, often I make money. Because in the end how you run
your business is how you wind up being treated - in this world or the next.

I disapprove of a lot of Microsoft's business practices, and I think they
are an ethically bad company. They make money - yes - but that is all they
do.

Plus I sleep *really* well.

ALL IMHO as it is my funny green pieces of paper that we have put value on.

(If you think it's all about the money - I pity you)
Rob

-Original Message-
From: Cantrell, Adam [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 23, 2002 9:39 AM
To: CF-Talk
Subject: RE: MS CF?


Why would you sell it? I'm no Wall St. slickster, but wouldn't you make out
well if you were suddenly in possession of $54 MS stock in exchange for your
$11 MM shares?


 -Original Message-
 From: Rob Rohan [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 11:32 AM
 To: CF-Talk
 Subject: RE: MS CF?


 Ha, from the Robertson-Ravo news source :)

 Guess now I *don't* have to sell my Macromedia stock, whew!

 Rob

 -Original Message-
 From: Robertson-Ravo, Neil (RX)
 [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 9:04 AM
 To: CF-Talk
 Subject: RE: MS CF?


 its not

 -Original Message-
 From: Rob Rohan [mailto:[EMAIL PROTECTED]]
 Sent: 23 December 2002 17:07
 To: CF-Talk
 Subject: RE: MS CF?


 Please tell me this isn't true.

 Rob

 http://treebeard.sourceforge.net
 http://ruinworld.sourceforge.net
 Scientia Est Potentia

 -Original Message-
 From: Len Conrad [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 2:07 AM
 To: CF-Talk
 Subject: MS CF?


 http://theregister.co.uk/content/4/28667.html













~|
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
Get the mailserver that powers this list at http://www.coolfusion.com



RE: MS CF?

2002-12-23 Thread Matt Liotta
MSFT offers developers security? You mean like the VB developers they
abandoned to launch VB.NET. Or the C++ developers they abandoned for C#.
Then of course there is the various technologies they have abandoned in
favor of something newer that does the same thing only differently and
incompatible with the last like DAO, RDO, and COM.

Matt Liotta
President  CEO
Montara Software, Inc.
http://www.montarasoftware.com/
888-408-0900 x901

 -Original Message-
 From: Adrocknaphobia Jones [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 1:44 PM
 To: CF-Talk
 Subject: RE: MS CF?
 
 You can sit here and complain that MS is the bad guy, but they are not
 the company you have put your faith in. I know I have the unpopular
view
 on this list as anti-MM, but I can tell you that if MS owned Flash,
you
 wouldn't have to worry about it being sold again. Same goes for Cold
 Fusion. You could rest assured that the technology and education you
put
 into MS will still be viable in 20 years. Which is something only a
fool
 would say about Cold Fusion or Flash which are both still in their
 relative adolescence.
 
 Quite frankly, MS offers developers security. Something that MM and
 Allaire have failed quite miserably at (IMO).
 
 Rest assured though, we will probably not fall to the evil empire. If
 acquiring MM is a bid to diminish J2EE, I would expect IBM or Sun to
 offer a merger to counter an MS acquisition. After all, they both
seemed
 to have invested a great deal in Cold Fusion and its J2ee developers.
 
 Although I still tell every CF developer I meet to learn a new
language.
 Bottom line is that a broader skill set is never a detriment.
 
 Adam Wayne Lehman
 Web Systems Developer
 Johns Hopkins Bloomberg School of Public Health
 Distance Education Division
 
 
 -Original Message-
 From: Cantrell, Adam [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 1:22 PM
 To: CF-Talk
 Subject: RE: MS CF?
 
 nah - no pitying required :)
 
 So how would selling your MS shares after MM was acquired not be
 reinforcing
 your opinion below? You would both be voicing your disapproval to MS
and
 be
 profiting from it. Seems silly as an investor to voice your opinion
 before
 hand based on internet speculation from the Register.
 
 Adam.
 
 
 
 
  -Original Message-
  From: Rob Rohan [mailto:[EMAIL PROTECTED]]
  Sent: Monday, December 23, 2002 11:58 AM
  To: CF-Talk
  Subject: RE: MS CF?
 
 
  Well, welcome to America where you vote means nothing unless
  there is an
  amount of money tied to it. I buy stocks in companies where I
  like their
  business practices, think they have good products, and
  approve of how they
  treat their staff.
 
  Sometimes I loose money, often I make money. Because in the
  end how you run
  your business is how you wind up being treated - in this
  world or the next.
 
  I disapprove of a lot of Microsoft's business practices, and
  I think they
  are an ethically bad company. They make money - yes - but
  that is all they
  do.
 
  Plus I sleep *really* well.
 
  ALL IMHO as it is my funny green pieces of paper that we have
  put value on.
 
  (If you think it's all about the money - I pity you)
  Rob
 
  -Original Message-
  From: Cantrell, Adam [mailto:[EMAIL PROTECTED]]
  Sent: Monday, December 23, 2002 9:39 AM
  To: CF-Talk
  Subject: RE: MS CF?
 
 
  Why would you sell it? I'm no Wall St. slickster, but
  wouldn't you make out
  well if you were suddenly in possession of $54 MS stock in
  exchange for your
  $11 MM shares?
 
 
   -Original Message-
   From: Rob Rohan [mailto:[EMAIL PROTECTED]]
   Sent: Monday, December 23, 2002 11:32 AM
   To: CF-Talk
   Subject: RE: MS CF?
  
  
   Ha, from the Robertson-Ravo news source :)
  
   Guess now I *don't* have to sell my Macromedia stock, whew!
  
   Rob
  
   -Original Message-
   From: Robertson-Ravo, Neil (RX)
   [mailto:[EMAIL PROTECTED]]
   Sent: Monday, December 23, 2002 9:04 AM
   To: CF-Talk
   Subject: RE: MS CF?
  
  
   its not
  
   -Original Message-
   From: Rob Rohan [mailto:[EMAIL PROTECTED]]
   Sent: 23 December 2002 17:07
   To: CF-Talk
   Subject: RE: MS CF?
  
  
   Please tell me this isn't true.
  
   Rob
  
   http://treebeard.sourceforge.net
   http://ruinworld.sourceforge.net
   Scientia Est Potentia
  
   -Original Message-
   From: Len Conrad [mailto:[EMAIL PROTECTED]]
   Sent: Monday, December 23, 2002 2:07 AM
   To: CF-Talk
   Subject: MS CF?
  
  
   http://theregister.co.uk/content/4/28667.html
  
  
  
  
  
  
  
  
 
 
 
 
~|
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
Get the mailserver that powers this list at http://www.coolfusion.com



RE: MS CF?

2002-12-23 Thread Dave Lyons
Developer security

You mean like they did with ASP?

Oh, wait, they stopped development of that...

And how long before asp.net gets scrapped for something new

And I doubt 20 years from now you can still use ASP

I can see it now
DreamPage or FrontWeaver
can u imagine what would happen to DWMX if it fell into MS hands???
Talk about security break down

And all this so MS can get more windows servers out there, they have a
lot to prove first.
Remember the saying:
Money can buy a lot of things in this world, just not a secure windows
server

Dave 
 

-Original Message-
From: Adrocknaphobia Jones [mailto:[EMAIL PROTECTED]] 
Sent: Monday, December 23, 2002 1:44 PM
To: CF-Talk
Subject: RE: MS CF?

You can sit here and complain that MS is the bad guy, but they are not
the company you have put your faith in. I know I have the unpopular view
on this list as anti-MM, but I can tell you that if MS owned Flash, you
wouldn't have to worry about it being sold again. Same goes for Cold
Fusion. You could rest assured that the technology and education you put
into MS will still be viable in 20 years. Which is something only a fool
would say about Cold Fusion or Flash which are both still in their
relative adolescence.

Quite frankly, MS offers developers security. Something that MM and
Allaire have failed quite miserably at (IMO).

Rest assured though, we will probably not fall to the evil empire. If
acquiring MM is a bid to diminish J2EE, I would expect IBM or Sun to
offer a merger to counter an MS acquisition. After all, they both seemed
to have invested a great deal in Cold Fusion and its J2ee developers.

Although I still tell every CF developer I meet to learn a new language.
Bottom line is that a broader skill set is never a detriment.

Adam Wayne Lehman
Web Systems Developer
Johns Hopkins Bloomberg School of Public Health
Distance Education Division


-Original Message-
From: Cantrell, Adam [mailto:[EMAIL PROTECTED]] 
Sent: Monday, December 23, 2002 1:22 PM
To: CF-Talk
Subject: RE: MS CF?

nah - no pitying required :)

So how would selling your MS shares after MM was acquired not be
reinforcing
your opinion below? You would both be voicing your disapproval to MS and
be
profiting from it. Seems silly as an investor to voice your opinion
before
hand based on internet speculation from the Register.

Adam.




 -Original Message-
 From: Rob Rohan [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 11:58 AM
 To: CF-Talk
 Subject: RE: MS CF?
 
 
 Well, welcome to America where you vote means nothing unless 
 there is an
 amount of money tied to it. I buy stocks in companies where I 
 like their
 business practices, think they have good products, and 
 approve of how they
 treat their staff.
 
 Sometimes I loose money, often I make money. Because in the 
 end how you run
 your business is how you wind up being treated - in this 
 world or the next.
 
 I disapprove of a lot of Microsoft's business practices, and 
 I think they
 are an ethically bad company. They make money - yes - but 
 that is all they
 do.
 
 Plus I sleep *really* well.
 
 ALL IMHO as it is my funny green pieces of paper that we have 
 put value on.
 
 (If you think it's all about the money - I pity you)
 Rob
 
 -Original Message-
 From: Cantrell, Adam [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 9:39 AM
 To: CF-Talk
 Subject: RE: MS CF?
 
 
 Why would you sell it? I'm no Wall St. slickster, but 
 wouldn't you make out
 well if you were suddenly in possession of $54 MS stock in 
 exchange for your
 $11 MM shares?
 
 
  -Original Message-
  From: Rob Rohan [mailto:[EMAIL PROTECTED]]
  Sent: Monday, December 23, 2002 11:32 AM
  To: CF-Talk
  Subject: RE: MS CF?
 
 
  Ha, from the Robertson-Ravo news source :)
 
  Guess now I *don't* have to sell my Macromedia stock, whew!
 
  Rob
 
  -Original Message-
  From: Robertson-Ravo, Neil (RX)
  [mailto:[EMAIL PROTECTED]]
  Sent: Monday, December 23, 2002 9:04 AM
  To: CF-Talk
  Subject: RE: MS CF?
 
 
  its not
 
  -Original Message-
  From: Rob Rohan [mailto:[EMAIL PROTECTED]]
  Sent: 23 December 2002 17:07
  To: CF-Talk
  Subject: RE: MS CF?
 
 
  Please tell me this isn't true.
 
  Rob
 
  http://treebeard.sourceforge.net
  http://ruinworld.sourceforge.net
  Scientia Est Potentia
 
  -Original Message-
  From: Len Conrad [mailto:[EMAIL PROTECTED]]
  Sent: Monday, December 23, 2002 2:07 AM
  To: CF-Talk
  Subject: MS CF?
 
 
  http://theregister.co.uk/content/4/28667.html
 
 
 
 
 
 
 
 
 
 


~|
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
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 

RE: MS CF?

2002-12-23 Thread Adrocknaphobia Jones
Rob,

Where do you work? I don't know any CF developers who work in the
trenches who can afford to invest in the stock market and NOT make
money. Maybe you should check out philanthropy and making grants to
non-profit orgs. I mean, you're not even getting a tax-break for all the
good work you are doing.

Adam Wayne Lehman
Web Systems Developer
Johns Hopkins Bloomberg School of Public Health
Distance Education Division


-Original Message-
From: Rob Rohan [mailto:[EMAIL PROTECTED]] 
Sent: Monday, December 23, 2002 12:58 PM
To: CF-Talk
Subject: RE: MS CF?

Well, welcome to America where you vote means nothing unless there is an
amount of money tied to it. I buy stocks in companies where I like their
business practices, think they have good products, and approve of how
they
treat their staff.

Sometimes I loose money, often I make money. Because in the end how you
run
your business is how you wind up being treated - in this world or the
next.

I disapprove of a lot of Microsoft's business practices, and I think
they
are an ethically bad company. They make money - yes - but that is all
they
do.

Plus I sleep *really* well.

ALL IMHO as it is my funny green pieces of paper that we have put value
on.

(If you think it's all about the money - I pity you)
Rob

-Original Message-
From: Cantrell, Adam [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 23, 2002 9:39 AM
To: CF-Talk
Subject: RE: MS CF?


Why would you sell it? I'm no Wall St. slickster, but wouldn't you make
out
well if you were suddenly in possession of $54 MS stock in exchange for
your
$11 MM shares?


 -Original Message-
 From: Rob Rohan [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 11:32 AM
 To: CF-Talk
 Subject: RE: MS CF?


 Ha, from the Robertson-Ravo news source :)

 Guess now I *don't* have to sell my Macromedia stock, whew!

 Rob

 -Original Message-
 From: Robertson-Ravo, Neil (RX)
 [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 9:04 AM
 To: CF-Talk
 Subject: RE: MS CF?


 its not

 -Original Message-
 From: Rob Rohan [mailto:[EMAIL PROTECTED]]
 Sent: 23 December 2002 17:07
 To: CF-Talk
 Subject: RE: MS CF?


 Please tell me this isn't true.

 Rob

 http://treebeard.sourceforge.net
 http://ruinworld.sourceforge.net
 Scientia Est Potentia

 -Original Message-
 From: Len Conrad [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 2:07 AM
 To: CF-Talk
 Subject: MS CF?


 http://theregister.co.uk/content/4/28667.html










~|
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
Get the mailserver that powers this list at http://www.coolfusion.com



RE: Brief Introduction

2002-12-23 Thread Matt Robertson
Hi Christian, and Welcome.

I would dearly love to see some sort of tag-based way to link together
CF and flash-based form objects.  Text inputs, drop-downs, textareas,
submit buttons etc.

And a Flash for Dummies set up in 2-minute drills tailored to CF'ers
with zero design skills and less time.  I want to get into using Flash,
but have little time and zero knowledge.

--Matt Robertson--
MSB Designs, Inc.
http://mysecretbase.com



-Original Message-
From: Christian Cantrell [mailto:[EMAIL PROTECTED]] 
Sent: Monday, December 23, 2002 9:47 AM
To: CF-Talk
Subject: Brief Introduction


I would like to introduce myself to everyone on cf-talk as the new 
Macromedia community manager for ColdFusion.  My name is Christian, and 
I have been developing various types of applications in ColdFusion and 
Java for the last five years.  I am excited about the opportunity to 
work with such a strong and active community, and to help ensure that 
the dialogue between the community and Macromedia is efficient and 
productive.

In addition to managing the relationship between the ColdFusion 
community and Macromedia, I will, among other things, also be 
responsible for the ColdFusion content on the Macromedia MX Developer 
Resource Kit, so I am interested in discussing ideas about the types of 
articles, tutorials, sample applications, component libraries, etc. you 
think would be useful.  Additionally, please do not hesitate to email 
me personally off-list with any other questions, comments or 
suggestions at any time.

Christian Cantrell


~|
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
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: MS CF?

2002-12-23 Thread Russ
Blah blah Microsoft blah blah Macromedia blah blah Allaire blah blah

Any reason why we can't move this discussion to a different list?

~|
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
Get the mailserver that powers this list at http://www.coolfusion.com



RE: MS CF? (getting OT)

2002-12-23 Thread Rob Rohan
A final note - then I'll stop provoking - I offer two pieces of advice:

1) read the Millionaire next door
2) When dealing in investing, be wearing of trusting someone who would sink
$60,000 - $80,000 on a depreciating asset (their car).

:)

You guys are fun!

Rob

~|
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
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: MS CF? (getting OT)

2002-12-23 Thread Matt Liotta
We sold off our equity positions in 2000 and moved the money into bond
funds.

Matt Liotta
President  CEO
Montara Software, Inc.
http://www.montarasoftware.com/
888-408-0900 x901

 -Original Message-
 From: Rob Rohan [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 1:52 PM
 To: CF-Talk
 Subject: RE: MS CF? (getting OT)
 
 Where are all the winners now?
 
 Rob
 
 
 -Original Message-
 From: Luce, Greg [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 10:42 AM
 To: CF-Talk
 Subject: RE: MS CF? (getting OT)
 
 
 I could ask the guys on the trading floor for their opinion, but I
don't
 think I have to. I guess I should have specified Investing in the
stock
 market to make money as opposed to just The stock market. I didn't
know
 there was a different way to look at it though. Perhaps that explains
some
 things. Throughout the 90s I wondered how everyone was winning. Now
I
 see
 there is a whole other segment. I wondered who was losing.
 
 Greg
 
 -Original Message-
 From: Rob Rohan [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 1:33 PM
 To: CF-Talk
 Subject: RE: MS CF? (getting OT)
 
 
 Funny, I was under the impression the stock market was about stock. If
I
 am
 not mistaken when you buy stock you are buying a piece of the company
-
 therefore, you are saying I like what this company is doing I am
going to
 give them money so they can do what they are doing some more. -
weather
 you
 mean to or not.
 
 It has become a Las Vegas type institution where most don't care where
 their
 vote is going, but it goes none-the-less.
 
 Thank you for your good luck wishes, but from the tone of your reply,
I
 think you will need the luck more then I will.
 
 Rob
 
 -Original Message-
 From: Luce, Greg [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 10:14 AM
 To: CF-Talk
 Subject: RE: MS CF?
 
 
 The Stock Market is all about money. That's the first rule of
investing.
 Buying or selling stocks based on any other ideas is just silly. Good
luck
 with that.
 
 Greg
 -Original Message-
 From: Rob Rohan [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 12:58 PM
 To: CF-Talk
 Subject: RE: MS CF?
 
 
 Well, welcome to America where you vote means nothing unless there is
an
 amount of money tied to it. I buy stocks in companies where I like
their
 business practices, think they have good products, and approve of how
they
 treat their staff.
 
 Sometimes I loose money, often I make money. Because in the end how
you
 run
 your business is how you wind up being treated - in this world or the
 next.
 
 I disapprove of a lot of Microsoft's business practices, and I think
they
 are an ethically bad company. They make money - yes - but that is all
they
 do.
 
 Plus I sleep *really* well.
 
 ALL IMHO as it is my funny green pieces of paper that we have put
value
 on.
 
 (If you think it's all about the money - I pity you)
 Rob
 
 -Original Message-
 From: Cantrell, Adam [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 9:39 AM
 To: CF-Talk
 Subject: RE: MS CF?
 
 
 Why would you sell it? I'm no Wall St. slickster, but wouldn't you
make
 out
 well if you were suddenly in possession of $54 MS stock in exchange
for
 your
 $11 MM shares?
 
 
  -Original Message-
  From: Rob Rohan [mailto:[EMAIL PROTECTED]]
  Sent: Monday, December 23, 2002 11:32 AM
  To: CF-Talk
  Subject: RE: MS CF?
 
 
  Ha, from the Robertson-Ravo news source :)
 
  Guess now I *don't* have to sell my Macromedia stock, whew!
 
  Rob
 
  -Original Message-
  From: Robertson-Ravo, Neil (RX)
  [mailto:[EMAIL PROTECTED]]
  Sent: Monday, December 23, 2002 9:04 AM
  To: CF-Talk
  Subject: RE: MS CF?
 
 
  its not
 
  -Original Message-
  From: Rob Rohan [mailto:[EMAIL PROTECTED]]
  Sent: 23 December 2002 17:07
  To: CF-Talk
  Subject: RE: MS CF?
 
 
  Please tell me this isn't true.
 
  Rob
 
  http://treebeard.sourceforge.net
  http://ruinworld.sourceforge.net
  Scientia Est Potentia
 
  -Original Message-
  From: Len Conrad [mailto:[EMAIL PROTECTED]]
  Sent: Monday, December 23, 2002 2:07 AM
  To: CF-Talk
  Subject: MS CF?
 
 
  http://theregister.co.uk/content/4/28667.html
 
 
 
 
 
 
 
 
 
 
 
 
 
 
~|
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 list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: MS CF? (OT for cf-talk)

2002-12-23 Thread Cantrell, Adam
Way OT, but the world would be a better place if people spent their money
this way period. Stock market is nice, but it's the revenue from customers
that makes a company. If no customers are spending, then no investors are
investing, and that company goes bye bye. 

I was just wondering why he would sell his stock based on this speculation.
Maybe if it was one of those companies that makes its keep through
litigation (Sun, Adobe, etc.), it would be a different story, as we all know
what happens to a company when they start spending more time in court than
making their products better. But you can almost assume that MM wouldn't
sell to MS at a loss, which goes back to my question of why somebody would
sell before the acquisition, and not after. Selling before would actually be
supporting MS, which he stated he didn't want to do for ethical reasons.

Adam.


 -Original Message-
 From: Thane Sherrington [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 12:21 PM
 To: CF-Talk
 Subject: RE: MS CF?
 
 
 At 01:14 PM 12/23/02 -0500, Luce, Greg wrote:
 The Stock Market is all about money. That's the first rule 
 of investing.
 Buying or selling stocks based on any other ideas is just 
 silly. Good luck
 with that.
 
 Actually, given the number of ethical funds out there, a lot 
 of people 
 think the way Rob does.  I'd say the world would be a better 
 place if more 
 people bought stocks this way.  A way to great wealth?  
 Probably not.  But 
 money isn't everything.
 
 
 T
 
 
~|
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
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



Re: MS to buy Macromedia - lets hope not...

2002-12-23 Thread Sean A Corfield
On Monday, Dec 23, 2002, at 10:08 US/Pacific, [EMAIL PROTECTED] 
wrote:
 Man, I hope there's no truth to this:
 http://theregister.co.uk/content/4/28667.html

That rumor surfaces every couple of years and has been doing so for 
nearly all of Macromedia's history... Here's another equally long-lived 
piece of humor:

#2. MICROSOFT HAS NO PLANS TO ACQUIRE CATHOLIC CHURCH
The latest Internet hoax has Microsoft acquiring the Roman Catholic 
Church,
including exclusive electronic rights to the Bible. The story, written
under an Associated Press byline, says the agreement provides for Pope 
John
Paul II becoming the senior vice president of the company's new 
Religious
Software Division, and two Microsoft senior vice presidents being 
invested
in the College of Cardinals. The fake story included a promise from Bill
Gates to make the sacraments available online for the first time.
Officials at Microsoft and AP said they didn't know where the story
originated. (Tampa Tribune 12/17/94 BF10)

Happy Holidays! :)

Conform! Consume! Obey!
-- Mr Snaffleburger : http://www.matazone.co.uk/theotherside.html

~|
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
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: Regular expression question

2002-12-23 Thread Lofback, Chris
Hmm.  I like this more-concise method, but I only get the last character of
the user ID rather than the full user ID.  For example, I use this...

REReplace(Target,.*(['_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*\
(([a-z]{2,3})|(aero|coop|info|museum|name))).*, \1)

..on [EMAIL PROTECTED] and I get [EMAIL PROTECTED].  Obviously, I'm rusty with RegEx
but I seem to recall something about greedy RegEx pattern matching.  Is
this maybe the cause?

Thanks,
Chris Lofback
Sr. Web Developer

TRX Integration
28051 US 19 N., Ste. C
Clearwater, FL  33761
www.trxi.com


 -Original Message-
 From: Ben Doom [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 12:44 PM
 To: CF-Talk
 Subject: RE: Regular expression question
 
 
 Or, if you prefer to simply return the matched bit in string 
 form, you can
 do what I do (being a perlish kinda guy):
 
 newstring = rereplace(string,
 .*(whatever(yes you can use internal groupings) blah).*, \1);
 
 Probably a lot less efficient than Ray's refind, but to my 
 mind it makes a
 lot more sense.
 
 As always with RE questions:
 http://www.houseoffusion.com/cf_lists/index.cfm?method=threads
 forumid=21
 Read, Post to, or Join the list here for all your RegEx needs.  :-)
 
 
   --Ben Doom
 Programmer  General Lackey
 Moonbow Software
 
 : -Original Message-
 : From: Raymond Camden [mailto:[EMAIL PROTECTED]]
 : Sent: Monday, December 23, 2002 11:29 AM
 : To: CF-Talk
 : Subject: RE: Regular expression question
 :
 :
 : Add the 3rd and 4th optional args - the 3rd arg, where to 
 start, should
 : be set to 1, and the 4th, is a boolean that specifies if 
 you want the
 : matched expressions returned. You will get a struct of two 
 arrays, pos
 : and len, where pos[x] and len[x] is the position and length 
 of the Xth
 : matched subexpression.
 :
 : 
 ==
 =
 : Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
 :
 : Email: [EMAIL PROTECTED]
 : WWW  : www.camdenfamily.com/morpheus
 : Yahoo IM : morpheus
 :
 : My ally is the Force, and a powerful ally it is. - Yoda
 :
 :  -Original Message-
 :  From: Lofback, Chris [mailto:[EMAIL PROTECTED]]
 :  Sent: Monday, December 23, 2002 10:22 AM
 :  To: CF-Talk
 :  Subject: Regular expression question
 : 
 : 
 :  Is there a way to return just the string that a REFind
 :  matches?  I'm trying to pull an email address out of a block
 :  of text.  I can find the beginning using this:
 : 
 :  REFindNoCase(['_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-
 :  9-]+)*\.(([a-z
 :  ]{2,3})|(aero|coop|info|museum|name)),BlockOfText)
 : 
 :  But I don't see how to match the end.  It seems like I need
 :  to return the \1 back reference, but how?
 : 
 :  Thanks,
 :  Chris Lofback
 :  Sr. Web Developer
 : 
 :  TRX Integration
 :  28051 US 19 N., Ste. C
 :  Clearwater, FL  33761
 :  www.trxi.com
 : 
 : 
 : 
 
~|
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 list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



Re: MS to buy Macromedia - lets hope not...

2002-12-23 Thread charlie griefer
[EMAIL PROTECTED] writes: 

 Man, I hope there's no truth to this: 
 http://theregister.co.uk/content/4/28667.html 
 
 Brook

This rumor has been floating around forever.  I doubt that it is any more 
substantial now than it has been the other dozen or so times it arose. 

charlie 
~|
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
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



Re: MS CF?

2002-12-23 Thread Bruce Sorge
Here is a question.
Why is it that no other news outlet is reporting this? I mean, I go to the
following sites, and these are the only stories I can find that mention M$
and MM in the same story:

CNN:
http://www.cnn.com/2001/TECH/industry/09/26/microsoft.flash.idg/index.html
MSNBC: Nothing
Bloomberg: Nothing
Forbes: Nothing
Macromedia: Nothing
M$: Nothing


I could go on, but I think you all get the point. Why is it that The
Register is allowed to break with this news, then all of the other more
reputable sources out there have nothing, and the one that does touts the
relationship that MM and M$ have had. I say we all stop with The Sky Is
Falling crap, move this to cf-community, and get back to taking about
substantiated facts rather than hollow rumors.



- Original Message -
From: Matt Liotta [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Monday, December 23, 2002 12:50 PM
Subject: RE: MS CF?


 MSFT offers developers security? You mean like the VB developers they
 abandoned to launch VB.NET. Or the C++ developers they abandoned for C#.
 Then of course there is the various technologies they have abandoned in
 favor of something newer that does the same thing only differently and
 incompatible with the last like DAO, RDO, and COM.

 Matt Liotta
 President  CEO
 Montara Software, Inc.
 http://www.montarasoftware.com/
 888-408-0900 x901

  -Original Message-
  From: Adrocknaphobia Jones [mailto:[EMAIL PROTECTED]]
  Sent: Monday, December 23, 2002 1:44 PM
  To: CF-Talk
  Subject: RE: MS CF?
 
  You can sit here and complain that MS is the bad guy, but they are not
  the company you have put your faith in. I know I have the unpopular
 view
  on this list as anti-MM, but I can tell you that if MS owned Flash,
 you
  wouldn't have to worry about it being sold again. Same goes for Cold
  Fusion. You could rest assured that the technology and education you
 put
  into MS will still be viable in 20 years. Which is something only a
 fool
  would say about Cold Fusion or Flash which are both still in their
  relative adolescence.
 
  Quite frankly, MS offers developers security. Something that MM and
  Allaire have failed quite miserably at (IMO).
 
  Rest assured though, we will probably not fall to the evil empire. If
  acquiring MM is a bid to diminish J2EE, I would expect IBM or Sun to
  offer a merger to counter an MS acquisition. After all, they both
 seemed
  to have invested a great deal in Cold Fusion and its J2ee developers.
 
  Although I still tell every CF developer I meet to learn a new
 language.
  Bottom line is that a broader skill set is never a detriment.
 
  Adam Wayne Lehman
  Web Systems Developer
  Johns Hopkins Bloomberg School of Public Health
  Distance Education Division
 
 
  -Original Message-
  From: Cantrell, Adam [mailto:[EMAIL PROTECTED]]
  Sent: Monday, December 23, 2002 1:22 PM
  To: CF-Talk
  Subject: RE: MS CF?
 
  nah - no pitying required :)
 
  So how would selling your MS shares after MM was acquired not be
  reinforcing
  your opinion below? You would both be voicing your disapproval to MS
 and
  be
  profiting from it. Seems silly as an investor to voice your opinion
  before
  hand based on internet speculation from the Register.
 
  Adam.
 
 
 
 
   -Original Message-
   From: Rob Rohan [mailto:[EMAIL PROTECTED]]
   Sent: Monday, December 23, 2002 11:58 AM
   To: CF-Talk
   Subject: RE: MS CF?
  
  
   Well, welcome to America where you vote means nothing unless
   there is an
   amount of money tied to it. I buy stocks in companies where I
   like their
   business practices, think they have good products, and
   approve of how they
   treat their staff.
  
   Sometimes I loose money, often I make money. Because in the
   end how you run
   your business is how you wind up being treated - in this
   world or the next.
  
   I disapprove of a lot of Microsoft's business practices, and
   I think they
   are an ethically bad company. They make money - yes - but
   that is all they
   do.
  
   Plus I sleep *really* well.
  
   ALL IMHO as it is my funny green pieces of paper that we have
   put value on.
  
   (If you think it's all about the money - I pity you)
   Rob
  
   -Original Message-
   From: Cantrell, Adam [mailto:[EMAIL PROTECTED]]
   Sent: Monday, December 23, 2002 9:39 AM
   To: CF-Talk
   Subject: RE: MS CF?
  
  
   Why would you sell it? I'm no Wall St. slickster, but
   wouldn't you make out
   well if you were suddenly in possession of $54 MS stock in
   exchange for your
   $11 MM shares?
  
  
-Original Message-
From: Rob Rohan [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 23, 2002 11:32 AM
To: CF-Talk
Subject: RE: MS CF?
   
   
Ha, from the Robertson-Ravo news source :)
   
Guess now I *don't* have to sell my Macromedia stock, whew!
   
Rob
   
-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED]]
Sent: 

RE: MS to buy Macromedia - lets hope not...

2002-12-23 Thread Timothy Heald
To be clear Sean, are you saying there is no truth to this rumor?

Tim

-Original Message-
From: Sean A Corfield [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 23, 2002 2:06 PM
To: CF-Talk
Subject: Re: MS to buy Macromedia - lets hope not...


On Monday, Dec 23, 2002, at 10:08 US/Pacific, [EMAIL PROTECTED] 
wrote:
 Man, I hope there's no truth to this:
 http://theregister.co.uk/content/4/28667.html

That rumor surfaces every couple of years and has been doing so for 
nearly all of Macromedia's history... Here's another equally long-lived 
piece of humor:

#2. MICROSOFT HAS NO PLANS TO ACQUIRE CATHOLIC CHURCH
The latest Internet hoax has Microsoft acquiring the Roman Catholic 
Church,
including exclusive electronic rights to the Bible. The story, written
under an Associated Press byline, says the agreement provides for Pope 
John
Paul II becoming the senior vice president of the company's new 
Religious
Software Division, and two Microsoft senior vice presidents being 
invested
in the College of Cardinals. The fake story included a promise from Bill
Gates to make the sacraments available online for the first time.
Officials at Microsoft and AP said they didn't know where the story
originated. (Tampa Tribune 12/17/94 BF10)

Happy Holidays! :)

Conform! Consume! Obey!
-- Mr Snaffleburger : http://www.matazone.co.uk/theotherside.html


~|
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
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



Issue: P n of x with a Table and CFQUERY search Criteria

2002-12-23 Thread James Blaha
Hello Everyone:

Issue: P n of x with a Table and CFQUERY search Criteria

I don't really know where to start on this one. In both beginner Ben 
Forta CF 5 and MX books there is a great example to output a table 
displaying 10 rows and it provides you a next and previous button to 
view the rest of the results, in the MX book its in chapter 21.

I want to use this code but I would like to make a dynamic query that 
will be populated by a form from. When I use the code it only works with 
a hard coded query how can I get it to work the way I want. My ideal 
situation is using a framed page where the user will enter their 
criteria in framed page A and click submit which will pass the form 
variables to framed page B which will in turn show the results along 
with the variables that are being passed to populate the table and still 
show the searched criteria as the user click next and previous.

Help Help Help

Thanks in advance,
James Blaha

!---
Filename: NextN5.cfm
Created by: Nate Weiss (NMW)
Purpose: Displays Next N record-navigation interface
Please Note: Includes NextNIncludeBackNext.cfm and NextNIncludePageLinks
---

!--- Retrieve expense records from database ---
CFQUERY NAME=GetExp DATASOURCE=#REQUEST.DataSource#
SELECT
f.FilmID, f.MovieTitle,
e.Description, e.ExpenseAmount, e.ExpenseDate
FROM
Expenses e INNER JOIN Films f
ON e.FilmID = f.FilmID
ORDER BY
e.ExpenseDate DESC
/CFQUERY


!--- Number of rows to display per Next/Back page ---
CFSET RowsPerPage = 10
!--- What row to start at? Assume first by default ---
CFPARAM NAME=URL.StartRow DEFAULT=1 TYPE=numeric
!--- Allow for Show All parameter in the URL ---
CFPARAM NAME=URL.ShowAll TYPE=boolean DEFAULT=No

!--- We know the total number of rows from query ---
CFSET TotalRows = GetExp.RecordCount
!--- Show all on page if ShowAll passed in URL ---
CFIF URL.ShowAll
CFSET RowsPerPage = TotalRows
/CFIF
!--- Last row is 10 rows past the starting row, or ---
!--- total number of query rows, whichever is less ---
CFSET EndRow = Min(URL.StartRow + RowsPerPage - 1, TotalRows)
!--- Next button goes to 1 past current end row ---
CFSET StartRowNext = EndRow + 1
!--- Back button goes back N rows from start row ---
CFSET StartRowBack = URL.StartRow - RowsPerPage


!--- Page Title ---
HTML
HEADTITLEExpense Browser/TITLE/HEAD
BODY
CFOUTPUTH2#REQUEST.CompanyName# Expense Report/H2/CFOUTPUT

!--- simple style sheet for formatting ---
STYLE
TH {font-family:sans-serif;font-size:smaller;
background:navy;color:white}
TD {font-family:sans-serif;font-size:smaller}
TD.DataA {background:silver;color:black}
TD.DataB {background:lightgrey;color:black}
/STYLE

TABLE WIDTH=600 BORDER=0 CELLSPACING=0 CELLPADDING=1
!--- Row at top of table, above column headers ---
TR
TD WIDTH=500 COLSPAN=3
!--- Message about which rows are being displayed ---
CFOUTPUT
Displaying B#URL.StartRow#/B to B#EndRow#/B
of B#TotalRows#/B RecordsBR
/CFOUTPUT
/TD
TD WIDTH=100 ALIGN=right
CFIF NOT URL.ShowAll
!--- Provide Next/Back links ---
CFINCLUDE TEMPLATE=NextNIncludeBackNext.cfm
/CFIF
/TD
/TR

!--- Row for column headers ---
TR
TH WIDTH=100Date/TH
TH WIDTH=250Film/TH
TH WIDTH=150Expense/TH
TH WIDTH=100Amount/TH
/TR

!--- For each query row that should be shown now ---
CFLOOP QUERY=GetExp StartRow=#URL.StartRow# ENDROW=#EndRow#
!--- Use class DataA or DataB for alternate rows ---
CFSET Class = IIF(GetExp.CurrentRow MOD 2 EQ 0, 'DataA', 'DataB')

!--- Actual data display ---
CFOUTPUT
TR VALIGN=baseline
TD CLASS=#Class# WIDTH=100#LSDateFormat(ExpenseDate)#/TD
TD CLASS=#Class# WIDTH=250#MovieTitle#/TD
TD CLASS=#Class# WIDTH=150I#Description#/I/TD
TD CLASS=#Class# WIDTH=100#LSCurrencyFormat(ExpenseAmount)#/TD
/TR
/CFOUTPUT

!--- If showing all records, flush the page buffer after every 5th row 
---
CFIF URL.ShowAll
CFIF GetExp.CurrentRow MOD 5 EQ 0
!--- End the current table ---
/TABLE
!--- Flush the page buffer ---
CFFLUSH
!--- Start a new table ---
TABLE WIDTH=600 BORDER=0 CELLSPACING=0 CELLPADDING=1
!--- Simulate a time-intensive process ---
CFSET InitialTime = Now()
CFLOOP CONDITION=DateDiff('s', InitialTime, Now()) LT 1/CFLOOP
/CFIF
/CFIF

/CFLOOP

!--- Row at bottom of table, after rows of data ---
TR
TD WIDTH=500 COLSPAN=3
CFIF NOT URL.ShowAll AND TotalRows GT RowsPerPage
!--- Shortcut links for Pages of search results ---
Page CFINCLUDE TEMPLATE=NextNIncludePageLinks.cfm
!--- Show All Link ---
CFOUTPUT
A HREF=#CGI.SCRIPT_NAME#?ShowAll=YesShow All/A
/CFOUTPUT
/CFIF
/TD
TD WIDTH=100 ALIGN=right
CFIF NOT URL.ShowAll
!--- Provide Next/Back links ---
CFINCLUDE TEMPLATE=NextNIncludeBackNext.cfm
/CFIF
/TD
/TR
/TABLE


/BODY
/HTML



~|
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
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and 

Re: MS CF?

2002-12-23 Thread Jochem van Dieten
Adrocknaphobia Jones wrote:
 You can sit here and complain that MS is the bad guy, but they are not
 the company you have put your faith in. I know I have the unpopular view
 on this list as anti-MM, but I can tell you that if MS owned Flash, you
 wouldn't have to worry about it being sold again. Same goes for Cold
 Fusion. You could rest assured that the technology and education you put
 into MS will still be viable in 20 years. Which is something only a fool
 would say about Cold Fusion or Flash which are both still in their
 relative adolescence.

I most certainly hope that in 20 years nothing of the state of the art 
web technology I learn today is more relevant as COBOL is for web 
development now.

Jochem

~|
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
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: MS CF?

2002-12-23 Thread Costas Piliotis
Can we hold you you to that?  Pretty bold statement IMHO...

-Original Message-
From: Les Mizzell [mailto:[EMAIL PROTECTED]] 
Sent: Monday, December 23, 2002 2:12 AM
To: CF-Talk
Subject: RE: MS CF?


 
: http://theregister.co.uk/content/4/28667.html


I'll have to kill myself if this happens. Really.

~|
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 list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: Regular expression question

2002-12-23 Thread Ben Doom
Yes, it's the greedy match that's getting you -- I didn't think about that.
If you can classify the char that preceeds the email address (i.e. it's a
space or punctuation or either) then you can simply follow the .* with that
char or char class.  However, if the email can come at the beginning of the
string, you'll have a problem.

HTH.



  --Ben Doom
Programmer  General Lackey
Moonbow Software

: -Original Message-
: From: Lofback, Chris [mailto:[EMAIL PROTECTED]]
: Sent: Monday, December 23, 2002 2:05 PM
: To: CF-Talk
: Subject: RE: Regular expression question
:
:
: Hmm.  I like this more-concise method, but I only get the last
: character of
: the user ID rather than the full user ID.  For example, I use this...
:
: REReplace(Target,.*(['_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-
: z0-9-]+)*\
: (([a-z]{2,3})|(aero|coop|info|museum|name))).*, \1)
:
: ..on [EMAIL PROTECTED] and I get [EMAIL PROTECTED].  Obviously, I'm rusty with RegEx
: but I seem to recall something about greedy RegEx pattern matching.  Is
: this maybe the cause?
:
: Thanks,
: Chris Lofback
: Sr. Web Developer
:
: TRX Integration
: 28051 US 19 N., Ste. C
: Clearwater, FL  33761
: www.trxi.com
:
:
:  -Original Message-
:  From: Ben Doom [mailto:[EMAIL PROTECTED]]
:  Sent: Monday, December 23, 2002 12:44 PM
:  To: CF-Talk
:  Subject: RE: Regular expression question
: 
: 
:  Or, if you prefer to simply return the matched bit in string
:  form, you can
:  do what I do (being a perlish kinda guy):
: 
:  newstring = rereplace(string,
:  .*(whatever(yes you can use internal groupings) blah).*, \1);
: 
:  Probably a lot less efficient than Ray's refind, but to my
:  mind it makes a
:  lot more sense.
: 
:  As always with RE questions:
:  http://www.houseoffusion.com/cf_lists/index.cfm?method=threads
:  forumid=21
:  Read, Post to, or Join the list here for all your RegEx needs.  :-)
: 
: 
:--Ben Doom
:  Programmer  General Lackey
:  Moonbow Software
: 
:  : -Original Message-
:  : From: Raymond Camden [mailto:[EMAIL PROTECTED]]
:  : Sent: Monday, December 23, 2002 11:29 AM
:  : To: CF-Talk
:  : Subject: RE: Regular expression question
:  :
:  :
:  : Add the 3rd and 4th optional args - the 3rd arg, where to
:  start, should
:  : be set to 1, and the 4th, is a boolean that specifies if
:  you want the
:  : matched expressions returned. You will get a struct of two
:  arrays, pos
:  : and len, where pos[x] and len[x] is the position and length
:  of the Xth
:  : matched subexpression.
:  :
:  :
:  ==
:  =
:  : Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
:  :
:  : Email: [EMAIL PROTECTED]
:  : WWW  : www.camdenfamily.com/morpheus
:  : Yahoo IM : morpheus
:  :
:  : My ally is the Force, and a powerful ally it is. - Yoda
:  :
:  :  -Original Message-
:  :  From: Lofback, Chris [mailto:[EMAIL PROTECTED]]
:  :  Sent: Monday, December 23, 2002 10:22 AM
:  :  To: CF-Talk
:  :  Subject: Regular expression question
:  : 
:  : 
:  :  Is there a way to return just the string that a REFind
:  :  matches?  I'm trying to pull an email address out of a block
:  :  of text.  I can find the beginning using this:
:  : 
:  :  REFindNoCase(['_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-
:  :  9-]+)*\.(([a-z
:  :  ]{2,3})|(aero|coop|info|museum|name)),BlockOfText)
:  : 
:  :  But I don't see how to match the end.  It seems like I need
:  :  to return the \1 back reference, but how?
:  : 
:  :  Thanks,
:  :  Chris Lofback
:  :  Sr. Web Developer
:  : 
:  :  TRX Integration
:  :  28051 US 19 N., Ste. C
:  :  Clearwater, FL  33761
:  :  www.trxi.com
:  : 
:  : 
:  :
: 
: 
~|
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
Get the mailserver that powers this list at http://www.coolfusion.com



RE: MS CF?

2002-12-23 Thread Adrocknaphobia Jones
VB developers who were abandoned? I felt no more abandoned by .NET than
I did with CFMX. It's just a progression. It's an evolution. I mean CF5
to CFMX was a much bigger gap and the progression from VB to VB.NET. You
act as if VB and C++ don't exist. Not too mention C# is not a
replacement for C++. 

Further, are you spiting C# for giving you a language and CRLs to
compile your code to nearly NEwhere? Hate to break it to you, but a lot
of people have wanted a language like that for a long time.

You can mention DAO and RDO fairly. As well as I can mention Generator
and Homesite. Which were products, NOT technologies. You can't blame MS
for abandoning older technologies for better ones. However, I can gripe
about MM ditching a product its CTO said a year prior would not die.
Only to be replaced with an inferior product. You know Ben Forta told me
point blank at the Dreamweaver gripe session that advanced cold fusion
developers are the minority, and they have to support the majority to be
a successful company (hence WYSIWYG Dreamweaver bumps Homestie).
Everyone is in it for the money. Don't spite one company and praise
another when they share the same goals and faults.

Bottom line is that 20 years ago I could have started as a C developer.
And I could still be one today. Maybe my syntax may change a bit over
the years, C - C++ - C#, but at least I'll still have marketable skills
20 years later. That is security. I just have this feeling that
macromedia will sell me down the river if it can make them a profit.

Adam Wayne Lehman
Web Systems Developer
Johns Hopkins Bloomberg School of Public Health
Distance Education Division


-Original Message-
From: Matt Liotta [mailto:[EMAIL PROTECTED]] 
Sent: Monday, December 23, 2002 1:51 PM
To: CF-Talk
Subject: RE: MS CF?

MSFT offers developers security? You mean like the VB developers they
abandoned to launch VB.NET. Or the C++ developers they abandoned for C#.
Then of course there is the various technologies they have abandoned in
favor of something newer that does the same thing only differently and
incompatible with the last like DAO, RDO, and COM.

Matt Liotta
President  CEO
Montara Software, Inc.
http://www.montarasoftware.com/
888-408-0900 x901

 -Original Message-
 From: Adrocknaphobia Jones [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 1:44 PM
 To: CF-Talk
 Subject: RE: MS CF?
 
 You can sit here and complain that MS is the bad guy, but they are not
 the company you have put your faith in. I know I have the unpopular
view
 on this list as anti-MM, but I can tell you that if MS owned Flash,
you
 wouldn't have to worry about it being sold again. Same goes for Cold
 Fusion. You could rest assured that the technology and education you
put
 into MS will still be viable in 20 years. Which is something only a
fool
 would say about Cold Fusion or Flash which are both still in their
 relative adolescence.
 
 Quite frankly, MS offers developers security. Something that MM and
 Allaire have failed quite miserably at (IMO).
 
 Rest assured though, we will probably not fall to the evil empire. If
 acquiring MM is a bid to diminish J2EE, I would expect IBM or Sun to
 offer a merger to counter an MS acquisition. After all, they both
seemed
 to have invested a great deal in Cold Fusion and its J2ee developers.
 
 Although I still tell every CF developer I meet to learn a new
language.
 Bottom line is that a broader skill set is never a detriment.
 
 Adam Wayne Lehman
 Web Systems Developer
 Johns Hopkins Bloomberg School of Public Health
 Distance Education Division
 
 
 -Original Message-
 From: Cantrell, Adam [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 1:22 PM
 To: CF-Talk
 Subject: RE: MS CF?
 
 nah - no pitying required :)
 
 So how would selling your MS shares after MM was acquired not be
 reinforcing
 your opinion below? You would both be voicing your disapproval to MS
and
 be
 profiting from it. Seems silly as an investor to voice your opinion
 before
 hand based on internet speculation from the Register.
 
 Adam.
 
 
 
 
  -Original Message-
  From: Rob Rohan [mailto:[EMAIL PROTECTED]]
  Sent: Monday, December 23, 2002 11:58 AM
  To: CF-Talk
  Subject: RE: MS CF?
 
 
  Well, welcome to America where you vote means nothing unless
  there is an
  amount of money tied to it. I buy stocks in companies where I
  like their
  business practices, think they have good products, and
  approve of how they
  treat their staff.
 
  Sometimes I loose money, often I make money. Because in the
  end how you run
  your business is how you wind up being treated - in this
  world or the next.
 
  I disapprove of a lot of Microsoft's business practices, and
  I think they
  are an ethically bad company. They make money - yes - but
  that is all they
  do.
 
  Plus I sleep *really* well.
 
  ALL IMHO as it is my funny green pieces of paper that we have
  put value on.
 
  (If you think it's all about the money - I pity you)
 

RE: MS to buy Macromedia - lets hope not...

2002-12-23 Thread Matt Liotta
The rumor has been going on for a long time, but now it has spread to
mainstream media. In fact, Cringely
(http://www.infoworld.com/articles/op/xml/02/12/16/021216opcringely.xml)
even wrote about it. Personally, I don't see it happening, but I have
been wrong before.

Matt Liotta
President  CEO
Montara Software, Inc.
http://www.montarasoftware.com/
888-408-0900 x901

 -Original Message-
 From: Sean A Corfield [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 2:06 PM
 To: CF-Talk
 Subject: Re: MS to buy Macromedia - lets hope not...
 
 On Monday, Dec 23, 2002, at 10:08 US/Pacific, [EMAIL PROTECTED]
 wrote:
  Man, I hope there's no truth to this:
  http://theregister.co.uk/content/4/28667.html
 
 That rumor surfaces every couple of years and has been doing so for
 nearly all of Macromedia's history... Here's another equally
long-lived
 piece of humor:
 
 #2. MICROSOFT HAS NO PLANS TO ACQUIRE CATHOLIC CHURCH
 The latest Internet hoax has Microsoft acquiring the Roman Catholic
 Church,
 including exclusive electronic rights to the Bible. The story, written
 under an Associated Press byline, says the agreement provides for Pope
 John
 Paul II becoming the senior vice president of the company's new
 Religious
 Software Division, and two Microsoft senior vice presidents being
 invested
 in the College of Cardinals. The fake story included a promise from
Bill
 Gates to make the sacraments available online for the first time.
 Officials at Microsoft and AP said they didn't know where the story
 originated. (Tampa Tribune 12/17/94 BF10)
 
 Happy Holidays! :)
 
 Conform! Consume! Obey!
 -- Mr Snaffleburger : http://www.matazone.co.uk/theotherside.html
 
 
~|
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 list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: MS CF? (getting OT)

2002-12-23 Thread Haggerty, Mike
Just say that the next time someone starts complaining about your comments.

M

-Original Message-
From: Matt Liotta [mailto:[EMAIL PROTECTED]] 
Sent: Monday, December 23, 2002 2:01 PM
To: CF-Talk
Subject: RE: MS CF? (getting OT)


We sold off our equity positions in 2000 and moved the money into bond
funds.

Matt Liotta
President  CEO
Montara Software, Inc.
http://www.montarasoftware.com/
888-408-0900 x901

~|
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 list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



Re: MS CF?

2002-12-23 Thread ksuh
Because it's the Register, and they like to make up stuff :)

- Original Message -
From: Bruce Sorge [EMAIL PROTECTED]
Date: Monday, December 23, 2002 12:11 pm
Subject: Re: MS CF?

 Here is a question.
 Why is it that no other news outlet is reporting this? I mean, I 
 go to the
 following sites, and these are the only stories I can find that 
 mention M$
 and MM in the same story:
 
 CNN:
 http://www.cnn.com/2001/TECH/industry/09/26/microsoft.flash.idg/index.html
 MSNBC: Nothing
 Bloomberg: Nothing
 Forbes: Nothing
 Macromedia: Nothing
 M$: Nothing
 
 
 I could go on, but I think you all get the point. Why is it that The
 Register is allowed to break with this news, then all of the other 
 morereputable sources out there have nothing, and the one that 
 does touts the
 relationship that MM and M$ have had. I say we all stop with The 
 Sky Is
 Falling crap, move this to cf-community, and get back to taking about
 substantiated facts rather than hollow rumors.
 
 
 
 - Original Message -
 From: Matt Liotta [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Monday, December 23, 2002 12:50 PM
 Subject: RE: MS CF?
 
 
  MSFT offers developers security? You mean like the VB developers 
 they abandoned to launch VB.NET. Or the C++ developers they 
 abandoned for C#.
  Then of course there is the various technologies they have 
 abandoned in
  favor of something newer that does the same thing only 
 differently and
  incompatible with the last like DAO, RDO, and COM.
 
  Matt Liotta
  President  CEO
  Montara Software, Inc.
  http://www.montarasoftware.com/
  888-408-0900 x901
 
   -Original Message-
   From: Adrocknaphobia Jones [mailto:[EMAIL PROTECTED]]
   Sent: Monday, December 23, 2002 1:44 PM
   To: CF-Talk
   Subject: RE: MS CF?
  
   You can sit here and complain that MS is the bad guy, but they 
 are not
   the company you have put your faith in. I know I have the 
 unpopular view
   on this list as anti-MM, but I can tell you that if MS owned 
 Flash, you
   wouldn't have to worry about it being sold again. Same goes 
 for Cold
   Fusion. You could rest assured that the technology and 
 education you
  put
   into MS will still be viable in 20 years. Which is something 
 only a
  fool
   would say about Cold Fusion or Flash which are both still in their
   relative adolescence.
  
   Quite frankly, MS offers developers security. Something that 
 MM and
   Allaire have failed quite miserably at (IMO).
  
   Rest assured though, we will probably not fall to the evil 
 empire. If
   acquiring MM is a bid to diminish J2EE, I would expect IBM or 
 Sun to
   offer a merger to counter an MS acquisition. After all, they both
  seemed
   to have invested a great deal in Cold Fusion and its J2ee 
 developers. 
   Although I still tell every CF developer I meet to learn a new
  language.
   Bottom line is that a broader skill set is never a detriment.
  
   Adam Wayne Lehman
   Web Systems Developer
   Johns Hopkins Bloomberg School of Public Health
   Distance Education Division
  
  
   -Original Message-
   From: Cantrell, Adam [mailto:[EMAIL PROTECTED]]
   Sent: Monday, December 23, 2002 1:22 PM
   To: CF-Talk
   Subject: RE: MS CF?
  
   nah - no pitying required :)
  
   So how would selling your MS shares after MM was acquired not be
   reinforcing
   your opinion below? You would both be voicing your disapproval 
 to MS
  and
   be
   profiting from it. Seems silly as an investor to voice your 
 opinion  before
   hand based on internet speculation from the Register.
  
   Adam.
  
  
  
  
-Original Message-
From: Rob Rohan [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 23, 2002 11:58 AM
To: CF-Talk
Subject: RE: MS CF?
   
   
Well, welcome to America where you vote means nothing unless
there is an
amount of money tied to it. I buy stocks in companies where I
like their
business practices, think they have good products, and
approve of how they
treat their staff.
   
Sometimes I loose money, often I make money. Because in the
end how you run
your business is how you wind up being treated - in this
world or the next.
   
I disapprove of a lot of Microsoft's business practices, and
I think they
are an ethically bad company. They make money - yes - but
that is all they
do.
   
Plus I sleep *really* well.
   
ALL IMHO as it is my funny green pieces of paper that we have
put value on.
   
(If you think it's all about the money - I pity you)
Rob
   
-Original Message-
From: Cantrell, Adam [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 23, 2002 9:39 AM
To: CF-Talk
Subject: RE: MS CF?
   
   
Why would you sell it? I'm no Wall St. slickster, but
wouldn't you make out
well if you were suddenly in possession of $54 MS stock in
exchange for your
$11 MM shares?
   
   
 -Original Message-
 From: 

RE: MS CF?

2002-12-23 Thread Matt Liotta
InfoWorld mentions it
(http://www.infoworld.com/articles/op/xml/02/12/16/021216opcringely.xml)
.

Matt Liotta
President  CEO
Montara Software, Inc.
http://www.montarasoftware.com/
888-408-0900 x901

 -Original Message-
 From: Bruce Sorge [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 23, 2002 2:12 PM
 To: CF-Talk
 Subject: Re: MS CF?
 
 Here is a question.
 Why is it that no other news outlet is reporting this? I mean, I go to
the
 following sites, and these are the only stories I can find that
mention M$
 and MM in the same story:
 
 CNN:

http://www.cnn.com/2001/TECH/industry/09/26/microsoft.flash.idg/index.ht
ml
 MSNBC: Nothing
 Bloomberg: Nothing
 Forbes: Nothing
 Macromedia: Nothing
 M$: Nothing
 
 
 I could go on, but I think you all get the point. Why is it that The
 Register is allowed to break with this news, then all of the other
more
 reputable sources out there have nothing, and the one that does touts
the
 relationship that MM and M$ have had. I say we all stop with The Sky
Is
 Falling crap, move this to cf-community, and get back to taking about
 substantiated facts rather than hollow rumors.
 
 
 
 - Original Message -
 From: Matt Liotta [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Monday, December 23, 2002 12:50 PM
 Subject: RE: MS CF?
 
 
  MSFT offers developers security? You mean like the VB developers
they
  abandoned to launch VB.NET. Or the C++ developers they abandoned for
C#.
  Then of course there is the various technologies they have abandoned
in
  favor of something newer that does the same thing only differently
and
  incompatible with the last like DAO, RDO, and COM.
 
  Matt Liotta
  President  CEO
  Montara Software, Inc.
  http://www.montarasoftware.com/
  888-408-0900 x901
 
   -Original Message-
   From: Adrocknaphobia Jones [mailto:[EMAIL PROTECTED]]
   Sent: Monday, December 23, 2002 1:44 PM
   To: CF-Talk
   Subject: RE: MS CF?
  
   You can sit here and complain that MS is the bad guy, but they are
not
   the company you have put your faith in. I know I have the
unpopular
  view
   on this list as anti-MM, but I can tell you that if MS owned
Flash,
  you
   wouldn't have to worry about it being sold again. Same goes for
Cold
   Fusion. You could rest assured that the technology and education
you
  put
   into MS will still be viable in 20 years. Which is something only
a
  fool
   would say about Cold Fusion or Flash which are both still in their
   relative adolescence.
  
   Quite frankly, MS offers developers security. Something that MM
and
   Allaire have failed quite miserably at (IMO).
  
   Rest assured though, we will probably not fall to the evil empire.
If
   acquiring MM is a bid to diminish J2EE, I would expect IBM or Sun
to
   offer a merger to counter an MS acquisition. After all, they both
  seemed
   to have invested a great deal in Cold Fusion and its J2ee
developers.
  
   Although I still tell every CF developer I meet to learn a new
  language.
   Bottom line is that a broader skill set is never a detriment.
  
   Adam Wayne Lehman
   Web Systems Developer
   Johns Hopkins Bloomberg School of Public Health
   Distance Education Division
  
  
   -Original Message-
   From: Cantrell, Adam [mailto:[EMAIL PROTECTED]]
   Sent: Monday, December 23, 2002 1:22 PM
   To: CF-Talk
   Subject: RE: MS CF?
  
   nah - no pitying required :)
  
   So how would selling your MS shares after MM was acquired not be
   reinforcing
   your opinion below? You would both be voicing your disapproval to
MS
  and
   be
   profiting from it. Seems silly as an investor to voice your
opinion
   before
   hand based on internet speculation from the Register.
  
   Adam.
  
  
  
  
-Original Message-
From: Rob Rohan [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 23, 2002 11:58 AM
To: CF-Talk
Subject: RE: MS CF?
   
   
Well, welcome to America where you vote means nothing unless
there is an
amount of money tied to it. I buy stocks in companies where I
like their
business practices, think they have good products, and
approve of how they
treat their staff.
   
Sometimes I loose money, often I make money. Because in the
end how you run
your business is how you wind up being treated - in this
world or the next.
   
I disapprove of a lot of Microsoft's business practices, and
I think they
are an ethically bad company. They make money - yes - but
that is all they
do.
   
Plus I sleep *really* well.
   
ALL IMHO as it is my funny green pieces of paper that we have
put value on.
   
(If you think it's all about the money - I pity you)
Rob
   
-Original Message-
From: Cantrell, Adam [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 23, 2002 9:39 AM
To: CF-Talk
Subject: RE: MS CF?
   
   
Why would you sell it? I'm no Wall St. slickster, but
wouldn't you make out
well if you were 

RE: MS to buy Macromedia - lets hope not...

2002-12-23 Thread Randell B Adkins
Wouldn't this topic be more suitable in CF-Community?

 [EMAIL PROTECTED] 12/23/02 02:10PM 
To be clear Sean, are you saying there is no truth to this rumor?

Tim

-Original Message-
From: Sean A Corfield [mailto:[EMAIL PROTECTED]] 
Sent: Monday, December 23, 2002 2:06 PM
To: CF-Talk
Subject: Re: MS to buy Macromedia - lets hope not...


On Monday, Dec 23, 2002, at 10:08 US/Pacific, [EMAIL PROTECTED] 
wrote:
 Man, I hope there's no truth to this:
 http://theregister.co.uk/content/4/28667.html 

That rumor surfaces every couple of years and has been doing so for 
nearly all of Macromedia's history... Here's another equally long-lived

piece of humor:

#2. MICROSOFT HAS NO PLANS TO ACQUIRE CATHOLIC CHURCH
The latest Internet hoax has Microsoft acquiring the Roman Catholic 
Church,
including exclusive electronic rights to the Bible. The story, written
under an Associated Press byline, says the agreement provides for Pope

John
Paul II becoming the senior vice president of the company's new 
Religious
Software Division, and two Microsoft senior vice presidents being 
invested
in the College of Cardinals. The fake story included a promise from
Bill
Gates to make the sacraments available online for the first time.
Officials at Microsoft and AP said they didn't know where the story
originated. (Tampa Tribune 12/17/94 BF10)

Happy Holidays! :)

Conform! Consume! Obey!
-- Mr Snaffleburger : http://www.matazone.co.uk/theotherside.html 



~|
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 list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: Regular expression question

2002-12-23 Thread Raymond Camden
FYI, MX does allow for non-greedy regex.

===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc

Email: [EMAIL PROTECTED]
WWW  : www.camdenfamily.com/morpheus
Yahoo IM : morpheus

My ally is the Force, and a powerful ally it is. - Yoda 

 -Original Message-
 From: Ben Doom [mailto:[EMAIL PROTECTED]] 
 Sent: Monday, December 23, 2002 1:17 PM
 To: CF-Talk
 Subject: RE: Regular expression question
 
 
 Yes, it's the greedy match that's getting you -- I didn't 
 think about that. If you can classify the char that preceeds 
 the email address (i.e. it's a space or punctuation or 
 either) then you can simply follow the .* with that char or 
 char class.  However, if the email can come at the beginning 
 of the string, you'll have a problem.
 

~|
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
Get the mailserver that powers this list at http://www.coolfusion.com



  1   2   >