CF8 Dev Environment

2008-10-31 Thread Bill Davies
Hi - having been developing in CF5/CF Studio for some years, finally moving to 
CF8. What would you recommend for development environment for Windows? I'm 
particularly interested in line debug capability.

Thanks. 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314643
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


CFTOKEN not being set

2002-09-06 Thread Bill Davies

Hi

I have an app defined like this:
  cfapplication name=appName sessionmanagement=Yes
setclientcookies=No

On the first page a user hits, I have a link with cftoken appended:
  href = frameIndex.cfm?thisAction=buying01cftoken=#CFTOKEN#cfid=#CFID#

Some users are getting an unknown variable error for cftoken.

Any ideas what's happening, what I should do?

Thanks.

-Bill Davies

__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CFMX :: URLSessionFormat :: J2EE

2002-09-01 Thread Bill Davies

Has anyone on the list experienced a problem with the J2EE session ID
appended by URLSessionFormat()?

On the server in question (Win2k SP3, IIS 5) you end up with links that look
like:

  myPage.cfm;JSESSIONID=8030949691025145133137?myVar=myVal

which then throws a 404 error.

Any suggestions welcomed.

-Bill Davies

__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFMX :: URLSessionFormat :: J2EE

2002-09-01 Thread Bill Davies

Say Jesse - what's a UDF? :)

-Original Message-
From: Jesse Houwing [mailto:[EMAIL PROTECTED]]
Sent: 01 September 2002 18:55
To: CF-Talk
Subject: Re: CFMX :: URLSessionFormat :: J2EE


Bill Davies wrote:
 Has anyone on the list experienced a problem with the J2EE session ID
 appended by URLSessionFormat()?

 On the server in question (Win2k SP3, IIS 5) you end up with links that
look
 like:

   myPage.cfm;JSESSIONID=8030949691025145133137?myVar=myVal

 which then throws a 404 error.

 Any suggestions welcomed.

I'm seeing this too... I've written my own UDF to handle sessionFormat
(as there were other parameters that had to be dragged from page to page)...

Jesse



__
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
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Access 2000 SQL 'between ... and ...'

2001-04-18 Thread Bill Davies

Can any1 tell me whats wrong with this this?

CFQUERY NAME="checkWorkerTimes" DATASOURCE="#Application.DSN#"
SELECT id
FROM timeChunks
WHERE (worker = #Attributes.worker#) AND ('#Attributes.startDateTime#'
BETWEEN ##[timeChunks.start]## AND ##[timeChunks.end]##)
/CFQUERY

Returns -

ODBC Error Code = 37000 (Syntax error or access violation)

[Microsoft][ODBC Microsoft Access Driver] Syntax error in date in query
expression '(worker = 2) AND ( ('18/04/01 12:15:00' BETWEEN
#[timeChunks.start]# AND #[timeChunks.end]#) )'.


WHERE (worker = #Attributes.worker#) AND ('#Attributes.startDateTime#'
BETWEEN ##1/1/01## AND ##1/1/01##)
works fine

Many thanks.



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Creating Page Breaks to make page printable?

2001-04-17 Thread Bill Davies

Don't think page break is implemented in Navigator.

-Original Message-
From: Bryan LaPlante [mailto:[EMAIL PROTECTED]]
Sent: 17 April 2001 05:34
To: CF-Talk
Subject: Re: Creating Page Breaks to make page printable?


http://msdn.microsoft.com/workshop/author/dhtml/reference/properties/pageBre
akAfter.asp

- Original Message -
From: [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Monday, April 16, 2001 6:20 PM
Subject: Re: Creating Page Breaks to make page printable?



  Does anyone know of a way to force printing breaks of a document?

 You can do this with style sheets.



 --
 This message sent compliments of db Technology
http://www.dbtech.net/




~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: IsDefined('') v. cfset

2001-04-12 Thread Bill Davies

Thanks

-Original Message-
From: Will Swain [mailto:[EMAIL PROTECTED]]
Sent: 12 April 2001 11:01
To: CF-Talk
Subject: RE: IsDefined('') v. cfset


I'm not sure. I understood that for such variables you should use cfparam,
but I guess in reality there would probably be little or no performance gain
unless you were using it alot.

-Original Message-
From: Bill Davies [mailto:[EMAIL PROTECTED]]
Sent: 11 April 2001 22:17
To: CF-Talk
Subject: RE: IsDefined('') v. cfset


So would cfparam be cheaper than just doing a cfset anyway - say for an
Application variable whose value is constant?

-Original Message-
From: Will Swain [mailto:[EMAIL PROTECTED]]
Sent: 11 April 2001 17:27
To: CF-Talk
Subject: RE: IsDefined('') v. cfset


Yup, CFPARAMs in your application.cfm file will 'set' empty variables, which
you can fill later.

That way, you don't need to check for their existence, just see what they
are.

Cheers

Will

-Original Message-
From: Bob Silverberg [mailto:[EMAIL PROTECTED]]
Sent: 11 April 2001 15:29
To: CF-Talk
Subject: RE: IsDefined('') v. cfset


This doesn't answer your question directly, but if you are really going to
test for the existence of a variable, and create it if it doesn't exist, I'd
suggest using cfparam which will accomplish both of those things in one
step.  I only used IsDefined if I want to check for the existence of a
variable, and I'm NOT going to create it if it doesn't exist.

Bob

-Original Message-
From: Bill Davies [mailto:[EMAIL PROTECTED]]
Sent: April 11, 2001 10:12 AM
To: CF-Talk
Subject: IsDefined('') v. cfset


Anyone have any idea whether an IsDefined('') 'costs' more than a cfset?

i.e. Which is more work for the server - to test for the existence of a
variable (and create it if it doesn't exist) or create or overwrite it
anyhow?

Thanks.


Bill Davies
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



IsDefined('') v. cfset

2001-04-11 Thread Bill Davies

Anyone have any idea whether an IsDefined('') 'costs' more than a cfset?

i.e. Which is more work for the server - to test for the existence of a
variable (and create it if it doesn't exist) or create or overwrite it
anyhow?

Thanks.


Bill Davies


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: IsDefined('') v. cfset

2001-04-11 Thread Bill Davies

So would cfparam be cheaper than just doing a cfset anyway - say for an
Application variable whose value is constant?

-Original Message-
From: Will Swain [mailto:[EMAIL PROTECTED]]
Sent: 11 April 2001 17:27
To: CF-Talk
Subject: RE: IsDefined('') v. cfset


Yup, CFPARAMs in your application.cfm file will 'set' empty variables, which
you can fill later.

That way, you don't need to check for their existence, just see what they
are.

Cheers

Will

-Original Message-
From: Bob Silverberg [mailto:[EMAIL PROTECTED]]
Sent: 11 April 2001 15:29
To: CF-Talk
Subject: RE: IsDefined('') v. cfset


This doesn't answer your question directly, but if you are really going to
test for the existence of a variable, and create it if it doesn't exist, I'd
suggest using cfparam which will accomplish both of those things in one
step.  I only used IsDefined if I want to check for the existence of a
variable, and I'm NOT going to create it if it doesn't exist.

Bob

-Original Message-
From: Bill Davies [mailto:[EMAIL PROTECTED]]
Sent: April 11, 2001 10:12 AM
To: CF-Talk
Subject: IsDefined('') v. cfset


Anyone have any idea whether an IsDefined('') 'costs' more than a cfset?

i.e. Which is more work for the server - to test for the existence of a
variable (and create it if it doesn't exist) or create or overwrite it
anyhow?

Thanks.


Bill Davies
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: update

2001-04-05 Thread Bill Davies

Becky see http://www.allaire.com/Handlers/index.cfm?ID=1463Method=Full

-Original Message-
From: Jones, Becky [mailto:[EMAIL PROTECTED]]
Sent: 05 April 2001 15:02
To: CF-Talk
Subject: update


is there anyway to output the last primary key number in a table after an
insert statement?
i need to capture that number on the same action page so i can pass it to
another table.
in other words, on my insertApp.cfm i have the query to update my apps
table.
but on this same page at the bottom, i have another form...a form to update
the licensing.  when i submit this form, i need that primary key from my
apps table to pass thru to my licensing table.
so i need a way to capture that value.
any ideas?


*
This e-mail, including any attachments, is intended for the
receipt and use by the intended addressee(s), and may contain
confidential and privileged information.  If you are not an intended
recipient of this e-mail, you are hereby notified that any unauthorized
use or distribution of this e-mail is strictly prohibited.
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: update

2001-04-05 Thread Bill Davies

Not in an Access DB

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: 05 April 2001 16:01
To: CF-Talk
Subject: Re: update


I try to pass all needed info to a stored procedure and handle all database
work there ... but Becky's method appears to me as  ... well clunky.

Can't you just pass a SQL batch something like this in CF:

SQLQuery = "INSERT INTO foo (x) VALUES('x')""
SQLQuery = "SET NOCOUNT ON "  SQLQuery  " Select id = @@Identity SET
NOCOUNT OFF"

Execute the query and and have as a result the Identity value?

Cheers,
Bill

In a message dated 4/5/01 10:27:27 AM Eastern Daylight Time,
[EMAIL PROTECTED] writes:


 Becky see http://www.allaire.com/Handlers/index.cfm?ID=1463Method=Full

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: returns in text boxes?

2001-04-03 Thread Bill Davies

Use HTML textarea tag and CF ParagraphFormat() for output - depends a bit
on db and platform but works most of the time.

-Original Message-
From: Jeff Fongemie [mailto:[EMAIL PROTECTED]]
Sent: 02 April 2001 23:53
To: CF-Talk
Subject: returns in text boxes?


Hello all,

  Is there a way to have a multi-line textbox recognize carriage
  returns? I have a couple of sites using a simple form for content
  updates and I'd love for my clients to be able to just hit "enter"
  and have a new line start that will be recorded in the database, and
  then on the final cfoutput.

  I've looked a little at the custom tags for WYSIWYG style entry
  forms, but I don't need anything that complicated or complex.


Best regards,
 Jeff Fongemie  mailto:[EMAIL PROTECTED]

Internet Guns For Hire
(603) 356-0768
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: UPDATE column with NULL values?

2001-04-02 Thread Bill Davies

I'd like to know the answer to this one too - I've been using 1-1-1900 and
testing the date col with LT or GT where I need to, but there must be an
easier way (?).

-Original Message-
From: Christian N. Abad [mailto:[EMAIL PROTECTED]]
Sent: 02 April 2001 18:44
To: CF-Talk
Subject: UPDATE column with NULL values?


Hey, Folks!

I'm having difficulty updating a Date/Time column in an Access db.

When I attempt to execute this SQL in a CFQUERY tag, I receive the
following error :

SQL :

UPDATE  table_name
SET column_name = NULL


ERROR :

ODBC Error Code = 22005 (Error in assignment)

[Microsoft][ODBC Microsoft Access Driver]Invalid character value for cast
specification (null)


QUESTION :

Does anyone know how to update a Date/Time column with NULL values using
ODBC and Access?

Thanks!
Christian N. Abad
ColdFusion Developer
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re. image sizes

2001-03-25 Thread Bill Davies

Re. image sizes

Thats a fair point Kay - we only use it for gifs. Think I'll try your tag
out for jpgs.

Are you sure CFX_Image came after CFX_GIFGD?

Bill Davies
www.web21st.net

-Original Message-
From: CF-Talk [mailto:[EMAIL PROTECTED]]
Sent: 25 March 2001 12:25
To: [EMAIL PROTECTED]
Subject: CF-Talk-list V1 #232


CF-Talk-list   Sun, 25 Mar 2001  Volume 1 : Number
232

In this issue:

cfx directory
Re: cfx directory
Re: Allaire Developers Conference?
RE: cfx directory
Re: image sizes
RE: Reseller recomendations
cfx_http tag available?
Re: cfx directory
Re: cfx directory
Re: cfx_http tag available?
Re: cfx_http tag available?
munchkinlan


--

Date: Sun, 25 Mar 2001 11:29:09 -0800
From: "nizam" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: cfx directory
Message-ID: 005601c0b561$f2d6ea40$62c497ca@h9c3m9

Hi everybody,
I'm using win98 and cf4.5.1...can I know where is the directory for cfx
custom tags. I get error that say my cfx_http is not in my database. Why
it's happen

Thanks


~~
Structure your ColdFusion code with Fusebox. Get the official book at
http://www.fusionauthority.com/bkinfo.cfm

--

Date: Sat, 24 Mar 2001 22:41:49 -0500
From: [EMAIL PROTECTED] (Michael Dinowitz)
To: [EMAIL PROTECTED]
Subject: Re: cfx directory
Message-ID: 049001c0b4dd$877b49f0$[EMAIL PROTECTED]

CFX tags have to be mapped in the administrator. They don't have a specific
directory.


 Hi everybody,
 I'm using win98 and cf4.5.1...can I know where is the directory for cfx
custom tags. I get error that say my cfx_http is not in my database. Why
it's happen

 Thanks



~~
Structure your ColdFusion code with Fusebox. Get the official book at
http://www.fusionauthority.com/bkinfo.cfm

--

Date: Sat, 24 Mar 2001 22:27:32 -0500
From: "David Hannum" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Re: Allaire Developers Conference?
Message-ID: 006f01c0b4db$88f26b80$[EMAIL PROTECTED]

www.allaire.com/conference


- Original Message -
From: Kevin Mansel [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Saturday, March 24, 2001 6:17 PM
Subject: Allaire Developers Conference?


 Is there going to be a third annual developers conference now?  If anyone
has any links on it, could you please send those to me?

 Thanks

 Kevin

~~
Structure your ColdFusion code with Fusebox. Get the official book at
http://www.fusionauthority.com/bkinfo.cfm

--

Date: Sun, 25 Mar 2001 13:42:24 +1000
From: "Andrew Scott" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: RE: cfx directory
Message-ID: [EMAIL PROTECTED]

Have you registered the cfx tag with the CF administrator?

-Original Message-
From: nizam [mailto:[EMAIL PROTECTED]]
Sent: Monday, 26 March 2001 5:29 AM
To: CF-Talk
Subject: cfx directory


Hi everybody,
I'm using win98 and cf4.5.1...can I know where is the directory for cfx
custom tags. I get error that say my cfx_http is not in my database. Why
it's happen

Thanks
~~
Structure your ColdFusion code with Fusebox. Get the official book at
http://www.fusionauthority.com/bkinfo.cfm

--

Date: Sun, 25 Mar 2001 12:19:23 +0800
From: "Kay Smoljak" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Subject: Re: image sizes
Message-ID: [EMAIL PROTECTED]

On Sat, 24 Mar 2001 13:22:22 -, "Bill Davies" [EMAIL PROTECTED]
wrote:

Re: image sizes
We use CFX_GIFGD by Jukka Manner which is free, works fine and does lots of
good stuff (paste image into image, insert text into image, dynamic
charting
etc. etc.)

http://www.geocities.com/SiliconValley/Way/4282/

Bill Davies
www.web21st.net

Bill,

We were also using a tag by Jukka Manner, CFX_Image, which I believe is the
successor to CFX_GIFGD. The problem we found was that the JPG quality was
quite bad, and in correspondence with Jukka he said that the tag was
optimised for GIFs and increased JPG quality would increase the running time
of the tag unacceptably. So for our own clients we were forced to write our
own.

Kay.
__

Kay Smoljak - ColdFusion Developer - PerthWeb Pty Ltd
Internet Solutions for your business!

Level 9/105 St George's Tc - Perth - Western Australia
Ph: (08) 9226 1366 Fax: (08) 9226 1375 Mobile : 0419 949 007
Visit Perth online! : www.perthweb.com.au

Tools for Developers including CFX tags: http://developer.perthweb.com.au

--

Date: Sun, 25 Mar 2001 00:11:46 -0500
From: "Steve Pierce" [EMAIL PROTECTED]
To: [EMAIL PROTEC

image sizes

2001-03-24 Thread Bill Davies

Re: image sizes
We use CFX_GIFGD by Jukka Manner which is free, works fine and does lots of
good stuff (paste image into image, insert text into image, dynamic charting
etc. etc.)

http://www.geocities.com/SiliconValley/Way/4282/

Bill Davies
www.web21st.net


-Original Message-
From: CF-Talk [mailto:[EMAIL PROTECTED]]
Sent: 24 March 2001 11:25
To: [EMAIL PROTECTED]
Subject: CF-Talk-list V1 #230

CF-Talk-list Sat, 24 Mar 2001 Volume 1 : Number
230
In this issue:
Re: MySQL  Interbase ODBC drivers
Re: image sizes
Re: Very, very, very bad day
Macromedia/Allaire merger story
truncation problems

--
Date: Sat, 24 Mar 2001 11:22:06 +0800
From: "Kay Smoljak" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject:
Message-ID: [EMAIL PROTECTED]
Hi,
My company happens to have a tag that will do just that, in addition to a
number of other image processing tasks. The download facility will be
available on Monday, but have a look at the site for a complete description
and command reference, it may be what you are looking for.
http://developer.perthweb.com.au
Regards,
K.
__
Kay Smoljak - ColdFusion Developer - PerthWeb Pty Ltd
Internet Solutions for your business!
Level 9/105 St George's Tc - Perth - Western Australia
Ph: (08) 9226 1366 Fax: (08) 9226 1375 Mobile : 0419 949 007
Visit Perth online! : www.perthweb.com.au
Tools for Developers including CFX tags: http://developer.perthweb.com.au


==
does anybody know of any custom tags that will tell you the dimensions of an
image.??
i found one on the allaire developer exchange but it doesnt seem to work
properly for the jpegs i have tried it on.
i think the name of the one i tried was "imageinfo" by fuseware. but when i
try it on my images then it just returns blank strings for "width" and
"height", and it is reporting the "type" as "8" which is odd.

thanks in advance.
--
Date: Fri, 23 Mar 2001 21:44:37 -0600
From: "Yoshi Melrose" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Re: MySQL  Interbase ODBC drivers
Message-ID: 002101c0b414$c0310ec0$0214a8c0@enterprise
This is normal as in my experience. I would guess that the administrator
doesn't have the support for MySQL just yet. It's a pain at times, but if
you're running MySQL an unnecessary evil I suppose. :)

- Original Message -
 Hi all,

 I have downloaded and installed MySQL and Interbase to "have a play". The
 ODBC drivers for both install fine (Windows 2000 SP1) and I can register
 datasources through the Windows ODBC Control Panel, and these datasources
 show up in the CF Administrator, but the drivers themselves don't show up
in
 the drop down list. So I can't register new MySQL or Interbase datasources
 through the CF Administrator, I have to go through the Windows Control
 Panel.

 Is this normal behaviour? Or is there something else I am meant to
 do/install?

 K.


~~
Structure your ColdFusion code with Fusebox. Get the official book at
http://www.fusionauthority.com/bkinfo.cfm
--
Date: Sat, 24 Mar 2001 13:00:48 +0800
From: "Kay Smoljak" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Subject: Re: image sizes
Message-ID: [EMAIL PROTECTED]
Hi,
My company happens to have a tag that will do just that, in addition to a
number of other image processing tasks. The download facility will be
available on Monday, but have a look at the site for a complete description
and command reference, it may be what you are looking for.
http://developer.perthweb.com.au
Regards,
K.
__
Kay Smoljak - ColdFusion Developer - PerthWeb Pty Ltd
Internet Solutions for your business!
Level 9/105 St George's Tc - Perth - Western Australia
Ph: (08) 9226 1366 Fax: (08) 9226 1375 Mobile : 0419 949 007
Visit Perth online! : www.perthweb.com.au
Tools for Developers including CFX tags: http://developer.perthweb.com.au


==
does anybody know of any custom tags that will tell you the dimensions of an
image.??
i found one on the allaire developer exchange but it doesnt seem to work
properly for the jpegs i have tried it on.
i think the name of the one i tried was "imageinfo" by fuseware. but when i
try it on my images then it just returns blank strings for "width" and
"height", and it is reporting the "type" as "8" which is odd.

thanks in advance.
--
Date: Fri, 23 Mar 2001 22:16:25 -0800
From: "Mark Smeets" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Re: Very, very, very bad day
Message-ID: [EMAIL PROTECTED]
Dude, that m