RE: RE: Unable To insert Proper Date

2000-04-28 Thread Shally Kon

Thanks a lot at last I am able to popup the current date.
But one more question can u please tell me which datatype should I specify
for my date field. I have specified it as"date/time" as I am using access
datatype but the value being inserted is
"12:00:06 AM" and not the currentdate.
Please suggest.
--Original Message--
From: "Marco Gil" <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Sent: April 29, 2000 4:54:00 AM GMT
Subject: RE: Unable To insert Proper Date


Hey Shally,

What I've done is the following...  instead of using:

#CreateODBCDate(Now()#

I use :

#DateFormat(now(), "MM/DD/")#

That has worked flawlessly for me... put that in your VALUE parameter... Let
me know if it works out okay for ya.

Marco

- Original Message -
From: "Shally Kon" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Saturday, April 29, 2000 12:53 AM


> Please help me!
> I am trying to insert 3 fields plus  current date into my table .What I
want
> is that when ever the form is loaded the current date should popup
> automatically in the format "mm/dd/" and when I press submit button
then
> all the fields plus the current date should be inserted in the table.I am
> using Create date function.but the output I am getting is "{d
'2000-04-28'}"
> as the output.I am using access database and have specified the datatype
of
> date field as "date/time".
>  validate="Date" message="Date is required!"
value="#CreateODBCDate(Now())#">
>
> ---
> FREE! The World's Best Email Address @email.com
> Reserve your name now at http://www.email.com
>
>
> --

> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

---
FREE! The World's Best Email Address @email.com
Reserve your name now at http://www.email.com


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re:

2000-04-28 Thread James Sleeman

---Reply to mail from Shally Kon about 
> Please help me!
> I am trying to insert 3 fields plus  current date into my table .What I want
> is that when ever the form is loaded the current date should popup
> automatically in the format "mm/dd/" and when I press submit button then
> all the fields plus the current date should be inserted in the table.I am
> using Create date function.but the output I am getting is "{d '2000-04-28'}"
> as the output.I am using access database and have specified the datatype of
> date field as "date/time".
>  validate="Date" message="Date is required!" value="#CreateODBCDate(Now())#">
> 

Your problem is that CreateODBCDate creates, well, an ODBC date object
which is in the format above.  To solve this use CreateDate(Now())
(optionally using DateFormat(...) to format to your desired display) to fill the
date field, and convert the results to an ODBC date before inserting into
the table by using CreateODBCDate() with the contents of your form field
(depending on the format you might have to use CreateDate on the form
field first and use the date/time object for the CreateODBCDate() call).



--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Binary Data to Browser - Curious

2000-04-28 Thread Benjamin Smedberg

> Does anyone know if there is a way to use Cold Fusion to send Binary Data
to
> the browser?
>
> The reason I ask is, in ASP there is a way to query an image field from a

Yes. Use CFCONTENT TYPE="image/gif" or whatever. I am using this for dynamic
binaries for our forums product. See
http://home.cua.edu/forums/forum.cfm?ID=1

And please don't send HTML email or news postings.

+
+ Benjamin Smedberg
+ CUA Assistant Webmaster
+ [EMAIL PROTECTED] - http://computing.cua.edu/as/bds/
+
+ He is risen, as He said! Alleluia!
+


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: CF and AOL

2000-04-28 Thread Mike Sheldon

Nope, those headers go to all pages. They won't cause any harm.

Michael J. Sheldon
Internet Applications Developer
Phone: 480.699.1084
http://www.desertraven.com/
PGP Key Available on Request

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 28, 2000 13:52
To: [EMAIL PROTECTED]
Subject: Re: CF and AOL


Michael:
Do you only do this if they come in from AOL?  If so, pardon my Newbie
question, but how do you check?

Andy
In a message dated 4/28/00 3:28:07 PM Central Daylight Time,
[EMAIL PROTECTED] writes:

> It's not so much an issue with CF and AOL as much as it's an issue with
the
>  world and AOL.
>
>  AOL's proxy servers cache pages in an EXTREMELY agreesive manner. Any
site
>  with dynamic content, or authentication requirements is at risk of
>  corruption or security breaches unless every measure possible is taken to
>  tell AOL's proxies NOT to cache the page.
>

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Unable To insert Proper Date

2000-04-28 Thread Marco Gil

Hey Shally,

What I've done is the following...  instead of using:

#CreateODBCDate(Now()#

I use :

#DateFormat(now(), "MM/DD/")#

That has worked flawlessly for me... put that in your VALUE parameter... Let
me know if it works out okay for ya.

Marco

- Original Message -
From: "Shally Kon" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Saturday, April 29, 2000 12:53 AM


> Please help me!
> I am trying to insert 3 fields plus  current date into my table .What I
want
> is that when ever the form is loaded the current date should popup
> automatically in the format "mm/dd/" and when I press submit button
then
> all the fields plus the current date should be inserted in the table.I am
> using Create date function.but the output I am getting is "{d
'2000-04-28'}"
> as the output.I am using access database and have specified the datatype
of
> date field as "date/time".
>  validate="Date" message="Date is required!"
value="#CreateODBCDate(Now())#">
>
> ---
> FREE! The World's Best Email Address @email.com
> Reserve your name now at http://www.email.com
>
>
> --

> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Unable to insert proper date

2000-04-28 Thread Shally Kon

Please help me!
I am trying to insert 3 fields plus  current date into my table .What I want
is that when ever the form is loaded the current date should popup
automatically in the format "mm/dd/" and when I press submit button then
all the fields plus the current date should be inserted in the table.I am
using Create date function.but the output I am getting is "{d '2000-04-28'}"
as the output.I am using access database and have specified the datatype of
date field as "date/time".


---
FREE! The World's Best Email Address @email.com
Reserve your name now at http://www.email.com


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



No Subject

2000-04-28 Thread Shally Kon

Please help me!
I am trying to insert 3 fields plus  current date into my table .What I want
is that when ever the form is loaded the current date should popup
automatically in the format "mm/dd/" and when I press submit button then
all the fields plus the current date should be inserted in the table.I am
using Create date function.but the output I am getting is "{d '2000-04-28'}"
as the output.I am using access database and have specified the datatype of
date field as "date/time".


---
FREE! The World's Best Email Address @email.com
Reserve your name now at http://www.email.com


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Network files on other machines.

2000-04-28 Thread Kym Kovan

Hi Drew,

>I have an email option running that attaches a file. I cannot get a file
>that is located on another network machine, I get an error 'file does not
>exist'. The paths I use are like (\\machinename\images\file.jpg) or
>something like that. How do I get around this? Or is this a limitation
>inherit to CF Server???

CF server normally runs as a system service, and so can only see things
local to the machine it is on. You need to set it up so that is runs as a
user that has rights to see the drive path you want. Create a user that has
the appropriate rights and then go to 'services' in the control panel and
change the startup of the cf app server to your new user rather than system.

Mapping won't work as that only applies to a logged in user, not to the
machine as a whole.



--

Yours,

Kym
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Very basic question on forms

2000-04-28 Thread Fred T. Sanders

because of the quotes  your closing it before you define the fuseaction,
then your starting a new one after the AuthenticateUser  one quote block =
"index.cfm?fuseaction=" if it doesn't throw an error it'll just submit to
the default fuseaction.

Fred

- Original Message -
From: "aslam bajaria" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, April 28, 2000 3:56 PM
Subject: Very basic question on forms


> Can someone tell me why the following code works and
> the code following it does not.
>
> works***
>  ...
> 
>
> and
>  ...
> 
>
> It works fine the way above.
> *does not work***
> What I am trying to do is the following and it keeps
> going to the same fuseaction:
>
> 
>  value="AuthenticateUser">
>
> ...
>
> 
> 
>  value="ProcessNewUser">
>
> ...
>
> 
> Can someone tell me why?
> Appreciate
> A.B.
>
> __
> Do You Yahoo!?
> Talk to your friends online and get email alerts with Yahoo! Messenger.
> http://im.yahoo.com/
> --

> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Network files on other machines.

2000-04-28 Thread Fred T. Sanders

Map it to a drive letter.


- Original Message -
From: "Drew Koenig" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, April 28, 2000 1:22 PM
Subject: Network files on other machines.


> I have an email option running that attaches a file. I cannot get a file
> that is located on another network machine, I get an error 'file does not
> exist'. The paths I use are like (\\machinename\images\file.jpg) or
> something like that. How do I get around this? Or is this a limitation
> inherit to CF Server???
>
> ~
> Drew Koenig
> Interactive Quality Services
> 4930 W. 77th St. Ste. 230
> Minneapolis, MN 55435
> 952-820-0778 Ext 120
> ~
>
> --

> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Translation Concept

2000-04-28 Thread Stephen Garrett



I have run into this before and it is really a pain to workaround. WHat
happens is that excel has that column formated as a "general" column. I
believe if the sheet had the column format as a "TEXT" format then this
would help. Otherwise, the ODBC drivers look at the first row of data
and ASSUME the rest of the column is that data type. 

So try and see if you can get the spreadsheet saved with that column
listed as a text format. If you cannot do this then you will need to
create an import spec that allows you to import the data in to an Access
DB, then call Access from the cmd line (could use a CF_ tag for this)
to imvoke a defined macro that will cause the import to take place.
Doable, but a real pain. 

Steve

 from an email last year that I sent to the list --

How about using access's File Import directly, with a start up macro
so that ACCESS will do the import automagically?? You could even use
a "import special" mdb that really has a link to the real mdb you want
to import into. From MSA97:

You can use a special macro named AutoExec to carry out an action or series
of actions when your database first opens. When you open a database,
Microsoft Access looks for a macro with this name and, if it finds one,
runs it automatically.

1   Create a macro containing the actions you want to run when you open the
database.

How?

2   Save the macro with the name AutoExec.

The next time you open the database, Microsoft Access runs this macro
automatically.

Notes

·   If you don't want to run the AutoExec macro when you open the database,
hold down the SHIFT key when the database opens.
·   You can also control how a database or application starts by setting
options in the Startup dialog box (Tools menu). 


At 06:18 PM 4/28/2000 +0100, Philip Arnold - ASP wrote:
>It's been a long time since I've been on this list, but I've run into a
>problem that someone here might have some insight into...
>
>I'm using an Excel ODBC datasource (as that's how the client supplies 3Mb of
>data), but the same problem arises if I make it as a Link Table in Access,
>or even as a CSV datasource
>
>Two of the columns are telephone numbers, but when ODBC reads it, it treats
>it as a numeric, which means that any entries which have spaces in are
>ignored - as they aren't truly numeric, e.g. 0015124267712001 works (as
>15124267712), but 001 512 426 7712 is ignored.
>
>I know it's something in the Excel connector, but I'm hoping I can solve
>this.
>
>I'm running MDAC 2.1 SP2 (is 2.5 worth the upgrade?) and CF 4.01 (I know I
>should run my upgrade to 4.51, but I haven't had the chance yet)
>
>I hope someone can help me with this, as I'm tearing my hair out (what
>little I have left)
>
>TIA
>
>Philip Arnold
>ASP Multimedia Limited
>T: +44 (0)20 8680 1133
>
>"Websites for the real world"
>
>**
>This email and any files transmitted with it are confidential and
>intended solely for the use of the individual or entity to whom they
>are addressed. If you have received this email in error please notify
>the system manager.
>**
>
>
>---
---
>Archives: http://www.eGroups.com/list/cf-talk
>To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
>

--
Stephen Garrett
GPS
[EMAIL PROTECTED]   (360) 896-2714
ICQ# 10776767
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebarRsts&bodyRsts/cf_talk or send a message 
to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: cant figure out

2000-04-28 Thread Shane Witbeck

I have had the same problem when I coded 2 identical query statements just
as you have. Try renaming or altering one of your "TakeID" queries.

Sincerely,

Shane Witbeck
Webmaster
[EMAIL PROTECTED]
www.digitalsanctum.com




-Original Message-
From: S R [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 28, 2000 6:41 PM
To: [EMAIL PROTECTED]
Subject: cant figure out


Here is what I am trying to do:


SELECT id, busunit FROM BusinessUnit








SELECT id, busunit FROM BusinessUnit




INSERT INTO USAmw(BID)
VALUES(#TakeID.ID#)
WHERE Company = '#TakeID.Busunit#'





I keep getting this error message which doesn't make any sense:

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

[Microsoft][ODBC Microsoft Access Driver] Missing semicolon (;) at end of
SQL statement.



Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



cfmail and attachments

2000-04-28 Thread Bud

Hi all. If I send an e-mail with an attachment to multiple recipients 
via query results, will the attachment be sent once, as in actually 
using up bandwidth to go from server to internet, or once for every 
recipient? How about if I send it with the recipients CC'd?

Thanks

Bud Schneehagen - Tropical Web Creations

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
ColdFusion Solutions / eCommerce Development
[EMAIL PROTECTED]
http://www.twcreations.com/
954.721.3452
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: cant figure out

2000-04-28 Thread Tariq Ahmed


Try putting a semicolon at the end of your SQL statements.
Though MS Access shouldn't really care.


On Fri, 28 Apr 2000, S R wrote:

> Here is what I am trying to do:
> 
> 
> SELECT id, busunit FROM BusinessUnit
> 
> 
> 
> 
> 
> 
> 
> 
> SELECT id, busunit FROM BusinessUnit
> 
> 
> 
> 
> INSERT INTO USAmw(BID)
> VALUES(#TakeID.ID#)
> WHERE Company = '#TakeID.Busunit#'
> 
> 
> 
> 
> 
> I keep getting this error message which doesn't make any sense:
> 
> ODBC Error Code = 37000 (Syntax error or access violation)
> 
> [Microsoft][ODBC Microsoft Access Driver] Missing semicolon (;) at end of 
> SQL statement.
> 
> 
> 
> Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com
> 
> --
> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
> 


  Tariq Ahmed - [EMAIL PROTECTED] - ICQ 6308515
 TIBCO Finance Technology - Web Group - Senior Web Engineer
 Work: 650-461-3472   Pager: 800-759-x1702632   Fax: 650-461-3003
 3375 Hillview Avenue. Palo Alto, CA. 94304.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: NumberFormat question

2000-04-28 Thread Shane Witbeck

Is the database field itself defined as type "text" or "number" ?

Sincerely,

Shane Witbeck
Webmaster
[EMAIL PROTECTED]
www.digitalsanctum.com




-Original Message-
From: Lomvardias, Christopher [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 28, 2000 4:19 PM
To: ColdFusion Discussion List
Subject: NumberFormat question


Hi,

Anyone know why I would get a value of 0 in an input text field when I do
this against a numeric column which has a null in the database?




Chris
--
Chris Lomvardias
[EMAIL PROTECTED]
Syscom, Inc.
400 E. Pratt Street, Suite 300
Baltimore, MD 21202
(410)539-3737 x1722 voice
(410)539-7302 fax
[EMAIL PROTECTED] (pager via email)
http://www.syscom.com/
--


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: licencing code

2000-04-28 Thread John N Westerlund

Typically a software firm packs an End User Licensing Agreement with their
product. You see it in Microsoft and other code ie
About to Install Cold Fusion Server
Click Here if you agree to the terms of the Licensing Agreement.
Within you define under what terms the user can use the software... I think
standard ones are:
You may not redistribute or copy without the permission of the licenser, and
You may not reverse engineer or disassemble the software in order to build
your own..
(those arent the correct legal terms at all).
There are many terms you can include, so see your lawyer.

As far as what you give to the client when you build a software piece for
them, usually you are selling your client the means and ends of the
software. If you want to keep the means (sounds like you do), you need to
spell it out in the agreement that you are keeping the process of building
the software and they are simply buying the end result. You should really
consult your attorney...

-Original Message-
From: Jim Taylor <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED] <[EMAIL PROTECTED]>
Date: Friday, April 28, 2000 6:45 PM
Subject: RE: licencing code


see an attorney

-Original Message-
From: Jason Egan [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 28, 2000 9:09 AM
To: Cf-Talk
Subject: licencing code


What is entailed in licensing your code?  I have a job that unlicensed code
becomes their property – there are some of our code that we don’t want them
to have ---???

-je



--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebarRsts&bodyRsts/cf_talk or send a message 
to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Network files on other machines.

2000-04-28 Thread Computer Simplistics Suppoer

Have you tried mapping a drive?

Scott Berry
--
Computer Simplistics Support
"Simple Solutions for a Complex World"
http://www.c-s.net
661-296-4315


- Original Message -
From: "Drew Koenig" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, April 28, 2000 11:22 AM
Subject: Network files on other machines.


> I have an email option running that attaches a file. I cannot get a file
> that is located on another network machine, I get an error 'file does not
> exist'. The paths I use are like (\\machinename\images\file.jpg) or
> something like that. How do I get around this? Or is this a limitation
> inherit to CF Server???
>
> ~
> Drew Koenig
> Interactive Quality Services
> 4930 W. 77th St. Ste. 230
> Minneapolis, MN 55435
> 952-820-0778 Ext 120
> ~
>
> --

> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
>



--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Server error

2000-04-28 Thread Ron Anderson

Anyone know what causes this error and how to get rid of it?

Windows NT error number 1060 occurred.
Error Diagnostic Information
An error occurred while attempting to establish a connection to the service.

The most likely cause of this problem is that the service is not currently
running. You can use the 'Services' Control Panel to verify that the service
is running and to restart it if necessary.

Windows NT error number 2 occurred.

TIA

___
Ron Anderson
[EMAIL PROTECTED]
425.486.4033

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: dynamic form field names

2000-04-28 Thread Ricq Pattay

How about --















I got something similar to work for me just today, though I wasn't using
arrays.


Ricq Pattay <[EMAIL PROTECTED]>
Univ of MN College of Veterinary Medicine


- Original Message -
From: Deanna L. Schneider <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, April 25, 2000 10:23 AM
Subject: dynamic form field names


> Hi all,
> I know I should be able to figure this out, but my brain is not
cooperating.
>
> I have a form that has a user-defined number of options (user gets to pick
> how many categories a particular resource fits into). Now, typically, I'd
> name all the select boxes the same, and voila! I'd loop through the list
of
> form variables. But, because I'm using javascript to dynamically populate
> the subcategory select box, all the select boxes need unique names. S,
> I'm looping through them and incrementing their names by 1 (i.e. two
> categories would result in form.catid1, form.catid2, form.subcat_id1 and
> form.subcat_id2 being passed to the action page). I'm also passing two
> hidden fields with the resource id (res_id) and the number of categories
> (looplength).
>
> On the action page, I thought I could loop based on the looplength
variable,
> and get the corresponding values. But, all I'm able to get is the names of
> the form fields. *sigh* I'm obviously not using "evaluate()" correctly.
> (And, yes, I know I could do a two dimensional array. I'm just using two
> one-dimensional arrays so that I know I'm not just screwing up the array
> structure.)
>
> Help?
>
> 
> 
>
>
> 
> 
> 
> 
>
> 
> 
>
>
>
 -
> Loop a query to insert data into the res_cat table.
> --
--
> -->
> 
> 
> INSERT INTO  res_cat(res_id, cat_id, subcat_id)
> VALUES   (#form.res_id#, #catarray[i]#, #subcatarray[i]#)
> 
>
> 
>
>
> 
> Deanna Schneider
> Interactive Media Developer
> UWEX Cooperative Extension Electronic Publishing Group
> 103 Extension Bldg
> 432 N. Lake Street
> Madison, WI 53706
> (608) 265-7923
>
>
>
> --

> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
>

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Looping through queries and submitting forms

2000-04-28 Thread Todd Ashworth

I have a query full of user data that I need to loop through and submit a
form for each one.

I here's a mock-up of what I currently have:

--- snip ---


SELECT primary_key FROM table WHERE field = 'stuff'





SELECT whatever1, whatever2, whatever3 FROM table WHERE primary_key
= '#primary_key#'







... ... ... ... ...

--- snip ---

This is where I run into my problem.  What I need to do is find a way to
call the code below through each iteration of the loop.

--- snip ---


https://secure.domain.com/cgi-bin/some.cgi" method="POST">
 
 
 


--- snip ---

The page has a JavaScript blurb that submits the form when the page is
loaded.  How can I keep track of the looping if I am switching pages?  A
hidden frame comes to mind, but how do I target that hidden frame?  Also,
since the second page submits a form that loads a 3rd page that is located
off-site, there will be a serious problems with synchronization, I am sure.
Does anyone have a decent way to do this?  Does anyone even know what I am
on about?  ;)

TIA,

.Todd

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: CFFILE - Invalid parser construct/expression format

2000-04-28 Thread Todd Ashworth

n/m .. figured this one out .. just got rid of the Evaluate() .. doh!

- Original Message -
From: Todd Ashworth <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, April 28, 2000 1:10 PM
Subject: CFFILE - Invalid parser construct/expression format


> OK .. anyone know why I am getting this error?  The D:\Path .. was
> changed for security purposes, but the path it shows in the error is 100%
> correct, which means that the
> "#Evaluate(ExpandPath('../images/Home_Picture2.#FILE.ClientFileExt#'))#"
is
> being parsed correctly.
>
> __
> An error occurred while evaluating the expression:
>
> "#Evaluate(ExpandPath('../images/Home_Picture2.#FILE.ClientFileExt#'))#"
>
> Error near line 59, column 109.
> --
--
> 
>
> An error has occurred while processing the expression:
>
>D:\Path\Hidden\For\Security\images\Home_Picture2.gif
>
> Invalid parser construct found on line 1 at position 2. ColdFusion was
> looking at the following text:
>
> :
>
> Invalid expression format. The usual cause is an error in the expression
> structure.
> _
>
> The code snippet is:
>
>  source="#Evaluate(ExpandPath('../images/temp/#File.ServerFile#'))#"
>
destination="#Evaluate(ExpandPath('../images/Home_Picture2.#File.ClientFileE
> xt#'))#">
>
> .Todd

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Character limit on Oracle 8 SP ?

2000-04-28 Thread Don Vawter

I get an error when an Oracle stored procedure returns more than 255
characters.
CF 4.51
It makes no difference if I use CF_SQL_VARCHAR or CF_SQL_LONGVARCHAR

The sp is a simple select. If I use cfquery I have no problems.

Anybody have any experience/suggestions?

Thanks,

Don


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: CFHttp and Wddx posting for results only???

2000-04-28 Thread Dick Applebaum

Well said!

That's exactly how to learn to do it!

Dick


At 2:05 PM -0400 4/28/2000, Sharon DiOrio wrote:
>www.wddx.org is the best place to start to understand what WDDX is and how
>it works.
>
>Then, start playing with it.
>
>
>   SELECT *
>   FROM TableName
>
>
>
>#HTMLCodeFormat(myWDDX)#
>
>Examine the output and you'll see what WDDX looks like.  Now imagine a page
>that had nothing more than a query that produced a WDDX packet (no HTML, no
>extra whitespace, nothing.)  Another server could use  to grab that
>page and using the same  tag turn it back into a query.  If the
>WDDX page accepted form/url variables, you could even customize the query
>that populates the WDDX packet.
>
>But it's definitely a cooperative effort.
>
>Hope that helps.
>
>Sharon
>
>At 11:43 AM 4/28/2000 -0400, [EMAIL PROTECTED] wrote:
>>Sharon:
>>
>>How do you design sites that are XML/Wddx Friendly?  Do you have someplace I
>>can go to read about this?
>>
>>Andy
>> 
>>--
>>Archives: http://www.eGroups.com/list/cf-talk
>>To Unsubscribe visit
>>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
>>send a message to [EMAIL PROTECTED] with 'unsubscribe' in
>>the body.
>
>
>--
>Archives: http://www.eGroups.com/list/cf-talk
>To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_tal 
>k or send a message to [EMAIL PROTECTED] with 
>'unsubscribe' in the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



cant figure out

2000-04-28 Thread S R

Here is what I am trying to do:


SELECT id, busunit FROM BusinessUnit








SELECT id, busunit FROM BusinessUnit




INSERT INTO USAmw(BID)
VALUES(#TakeID.ID#)
WHERE Company = '#TakeID.Busunit#'





I keep getting this error message which doesn't make any sense:

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

[Microsoft][ODBC Microsoft Access Driver] Missing semicolon (;) at end of 
SQL statement.



Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



CF 4.5 Crashing on Linux

2000-04-28 Thread Brook Davies

Our Installation of CF4.5.1 is crashing on linux and the spawned processes 
are all taking up over 50 megs of ram each and swell up to 99 % usage of 
the cpu. CF Takes a long time to restart and the cfexec takes up to 94% of 
the CPU. Has any one experienced anything like this?

Brook

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Appache path_info question

2000-04-28 Thread Brook Davies

I couldn't find the exact thread, but I remember some one asked for this. 
Allows for CF to read the query string which can appear blank on Apache. I 
found this in the Allaire forums..


Replace the coldfusion_handler function in mod_coldfusion.c with attached
code.  PATH_INFO string will then appear as QUERY_STRING in Your CFusion 
application.

int coldfusion_handler (request_rec *r) { if (strlen(r-path_info) 0){
r-args=r-path_info+1; } /* All the real work gets done in libcfmod */
return ProcessCFRequest( r ) ; }



--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Very basic question on forms

2000-04-28 Thread aslam bajaria

Can someone tell me why the following code works and
the code following it does not.

works***


and 


It works fine the way above.
*does not work***
What I am trying to do is the following and it keeps
going to the same fuseaction:




...





...


Can someone tell me why?
Appreciate
A.B.

__
Do You Yahoo!?
Talk to your friends online and get email alerts with Yahoo! Messenger.
http://im.yahoo.com/
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: CF and AOL

2000-04-28 Thread AOusterhou

Michael:
Do you only do this if they come in from AOL?  If so, pardon my Newbie 
question, but how do you check?

Andy
In a message dated 4/28/00 3:28:07 PM Central Daylight Time, 
[EMAIL PROTECTED] writes:

> It's not so much an issue with CF and AOL as much as it's an issue with the
>  world and AOL.
>  
>  AOL's proxy servers cache pages in an EXTREMELY agreesive manner. Any site
>  with dynamic content, or authentication requirements is at risk of
>  corruption or security breaches unless every measure possible is taken to
>  tell AOL's proxies NOT to cache the page.
>  
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Application locking

2000-04-28 Thread Seth Petry-Johnson

> I understand why it is important to lock session variables but I don't
> understand why it is important to lock application variables, especially
when
> they are the same for everyone. Basically, I only use application
variables to
> name my db information (db source, username, password, etc).

Locking is necessary for ALL shared scopes: session, application, server.

The reason is that, because these scopes can be simultaneously accessed by
multiple users and/or processes, there exists the possibility that the data
can become corrupted.  Locking access to these variables prevents this
corruption.

For example:  Say there is a variable in the Application (or session or
server) scope called Application.SomeVar.  If user A begins to write data to
this variable at the same time that user B is reading the data then the data
could become corrupted.

Make sense?

Regards,
Seth Petry-Johnson
Argo Enterprise and Associates

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Session variables

2000-04-28 Thread Tariq Ahmed



In this example, when the person hits submit, call this page again
that checks to see if the form has been submitted, if so, add the items
onto the StoreItems and Quantities list.


On Fri, 28 Apr 2000, Tiberiu Vasilica wrote:

> Please help...
> How to store the added products in a session variable?  
> 
> 
> 
> 
>  
>  
>  
>  
>  
>  
>  
>  
>  #Artist#
>  #title#
>  #NumberFormat(Price)#
>  
>  
>  
>  
>  
>  
> 
> 
> --
> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
> 


  Tariq Ahmed - [EMAIL PROTECTED] - ICQ 6308515
 TIBCO Finance Technology - Web Group - Senior Web Engineer
 Work: 650-461-3472   Pager: 800-759-x1702632   Fax: 650-461-3003
 3375 Hillview Avenue. Palo Alto, CA. 94304.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



CONVERT() for money datatype

2000-04-28 Thread Joel Firestone

Everyone:

I recently upsized an Access db to SQL 7. I'm having extreme frustrations
trying to write to a money column. My code is:

update ShipCost set productCost_beginRange = #convert(money,
form.productCost_beginRange)#,
 productCost_endRange = #convert(money,
form.productCost_endRange)#,
  shipCost = #convert(money, form.shipCost)#
where shipOptID = #form.shipOptID#

I have tried (I believe) every possible way to do it, with no success. The
error I
get is:

Error resolving parameter MONEY

Cold Fusion was unable to determine the value of the parameter. This problem
is very
 likely due to the fact that either:

1. You have misspelled the parameter name, or
2. You have not specified a QUERY attribute for a CFOUTPUT, CFMAIL, or
CFTABLE tag.

What do I need to do in order to update a money field? Any help would be
GREATLY appreciated.

===
Joel Firestone - Developer
Delmarva Online
http://www.dmv.com/


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Cf express and sessions

2000-04-28 Thread Chris Montgomery

You're right, it's not patently clear that CF Express supports session
variables.  Neither the FAQ, nor the Datasheet, nor the Tag list that I
pulled from the Partners site explicitly mentioned support for session
variables.  I also did a drill-down on Allaire's site (painfully slow
today) under CF Products and came upon this comparison matrix:
http://www.allaire.com/Products/ColdFusion/features/CF45ServerFeatureMat
rix.doc

It shows that CF Express supports persistent queries, so I would assume
that it does support session variables.  You might get a more definitive
answer in Allaire's support forums, though.

Sorry I couldn't help more.

Chris Montgomery
=
astutia.com -> http://www.astutia.com  [EMAIL PROTECTED]
  Astute e-business applications & web site development
  210-490-3249/888-745-7603   Fax 210-490-4692
Allaire Consulting Partner/Authorized NetObjects Reseller
  Find a Job in San Antonio ->  http://www.sajobnet.com
 Need professional help? -> http://www.psychadvisor.com
=


>-Original Message-
>From: Mark W. Breneman [mailto:[EMAIL PROTECTED]]
>Sent: Friday, April 28, 2000 12:12 PM
>To: [EMAIL PROTECTED]
>Subject: RE: Cf express and sessions
>
>
>Anyone... Please
>
>-Original Message-
>From: Mark W. Breneman [mailto:[EMAIL PROTECTED]]
>Sent: Thursday, April 27, 2000 10:03 AM
>To: [EMAIL PROTECTED]
>Subject: Cf express and sessions
>
>
>
>Hello,
>
>I am looking for an answer.  Does CF express support sessions?
> At first
>glance it aperies not to.  Has anyone found a work around for this?
>CFexpress docs are as clear as mud.  Listing tags on both the
>supported and
>not supported lists.  It is trying to say that some of the
>functions of that
>tag are supported.  I know, I know I should not complain it is
>free after
>all.
>
>Thanks,
>
>Mark W. Breneman
>-Cold Fusion Developer
>-Network Administrator
>Vivid Media
>[EMAIL PROTECTED]
>www.vividmedia.com
>608.270.9770

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



NumberFormat question

2000-04-28 Thread Lomvardias, Christopher

Hi,

Anyone know why I would get a value of 0 in an input text field when I do
this against a numeric column which has a null in the database?




Chris
--
Chris Lomvardias
[EMAIL PROTECTED]
Syscom, Inc.
400 E. Pratt Street, Suite 300
Baltimore, MD 21202
(410)539-3737 x1722 voice
(410)539-7302 fax
[EMAIL PROTECTED] (pager via email)
http://www.syscom.com/
--

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: strip carriage returns

2000-04-28 Thread Jason Zimmerman

Thanks Doug. I used this 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 28, 2000 5:27 PM
To: '[EMAIL PROTECTED]'
Subject: RE: strip carriage returns


Jason,

I am not sure if someone has responded to you, but I worked on a problem
like this a while ago.  To the list please correct me if I am wrong on
some ASC numbers.

When you strip carriage returns,  I think you are only removing
the ASC(13) code.. but what you really need to do is to remove
both ASC(13) and ASC(10).. which is your line feed.

If you do that then you should be ok.  It worked for me.
And it took me a while to figure out what the heck was going on!

HTH

Doug


-Original Message-
From:   Jason Zimmerman [SMTP:[EMAIL PROTECTED]]
Sent:   Thursday, April 27, 2000 5:10 PM
To: Cf-Talk (E-mail)
Subject:strip carriage returns

I am collecting data in a textarea and then trying to strip out carriage
returns. I have tried StripCR(String) and Trim(String) and neither of them
work. Any ideas why??
  
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=list  
s&body=lists/cf_talk or send a message to [EMAIL PROTECTED] 
with 'unsubscribe' in the body.


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Translation Concept

2000-04-28 Thread Dick Applebaum

What happens if you open the file in Excel, select the column, then 
format it as text (as it really should be defined)...

I haven't tried this but I expect that that Excel and the driver 
should handle it properly

HTH

Dick


At 6:18 PM +0100 4/28/2000, Philip Arnold - ASP wrote:
>It's been a long time since I've been on this list, but I've run into a
>problem that someone here might have some insight into...
>
>I'm using an Excel ODBC datasource (as that's how the client supplies 3Mb of
>data), but the same problem arises if I make it as a Link Table in Access,
>or even as a CSV datasource
>
>Two of the columns are telephone numbers, but when ODBC reads it, it treats
>it as a numeric, which means that any entries which have spaces in are
>ignored - as they aren't truly numeric, e.g. 0015124267712001 works (as
>15124267712), but 001 512 426 7712 is ignored.
>
>I know it's something in the Excel connector, but I'm hoping I can solve
>this.
>
>I'm running MDAC 2.1 SP2 (is 2.5 worth the upgrade?) and CF 4.01 (I know I
>should run my upgrade to 4.51, but I haven't had the chance yet)
>
>I hope someone can help me with this, as I'm tearing my hair out (what
>little I have left)
>
>TIA
>
>Philip Arnold
>ASP Multimedia Limited
>T: +44 (0)20 8680 1133
>
>"Websites for the real world"
>
>**
>This email and any files transmitted with it are confidential and
>intended solely for the use of the individual or entity to whom they
>are addressed. If you have received this email in error please notify
>the system manager.
>**
>
>
>--
>Archives: http://www.eGroups.com/list/cf-talk
>To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_tal 
>k or send a message to [EMAIL PROTECTED] with 
>'unsubscribe' in the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Session variables

2000-04-28 Thread Deanna L. Schneider

It would seem that you're setting your cfparam tags on the wrong page
You'll need to set them on the action page, after the user has entered their
data.

Then, it would be something like:





( syntax varies by version.if you have cf 4.5 then use 


Unless I'm misunderstanding the question, that should do it.

-d


Deanna Schneider
Interactive Media Developer
UWEX Cooperative Extension Electronic Publishing Group
103 Extension Bldg
432 N. Lake Street
Madison, WI 53706
(608) 265-7923



--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Technical Documentation

2000-04-28 Thread Jennifer Larkin

We have an extremely detailed user guide to the data-entry section of
the site, including field restrictions for every field, how the data is
used in the site, and how to manage the data for the best in-site
results. We have also trained the person who will be the site admin and
I have been working with her for several months to explain things that
she doesn't understand and build things into the site that would help
her. But the document that she is using is seperate from the technical
documentation. We prepared a seperate User Guide for her so she can
train others to use the system.

Our technical documentation for the site includes a general algorithm
for the data-entry sections of the site so people can determine from the
documentation which page contains the code for each function and in what
order these functions are performed. Trickier algorithms like generating
new ID numbers are covered, and reasons are given for why some functions
perform in certain ways (like using cftransaction). Each form field is
traced to the database and back into the front end of the site. Action
variables are linked to the actions they cause. There are also
explanations of several files which are important to the site, like the
Application.cfm files (including code for all default settings), and
commonly included files and custom tags, since they can't look up custom
tags in Allaire's documentation. There is more to the technical docs,
but these are the most technical sections.

The client thinks that this is insufficient but never gave us any
guidelines of their requirements. I am just trying to determine if the
documentation that we have given them is reasonable or if it really is
insufficient. If this documentation really is insufficient, we will
gladly improve them at our expense, but if they are reasonably
sufficient documentation, we think that any required improvements should
be at their expense. I have a meeting with them on Monday and I want to
know going into the meeting if what we have given them is reasonable
technical documentation. This is the first time that we have supplied
technical documentation to a client because most of our clients don't
even want to know how the site works; they just want to know *that* it
works. 

Again, the most specific complaint that I've heard is that "there is no
code in the technical documentation." We are of the opinion that there
shouldn't be any code in the documentation except for the default
settings for the Application.cfm files, which is already included. They
already have the code; it just isn't in the technical documentation.

"Owens, Howard" wrote:
> 
> Generally, on the admin side of the application, I provide fairly detailed
> instructions on how to do each step. Personally, I find it easier to have
> what a certain function does explained to me right on that screen, so that's
> what I provide to the client.  Since the admin pages don't need to be
> pretty, that's easy to get away with.  I also sit down with the client (or
> whomever will be doing the admin) and give him or her a hands-on tutorial. I
> think make myself available as a "help desk/support" resource.

> > I'm interested in knowing what kind of documentation everyone provides
> > their
> > clients as well since I'm delivering my first product on Monday morning.
> > Since no one has replied to this post, I'm wondering if anyone PROVIDES
> > documentation??

-- 
^^^
Um, nevermind. I have a job now.

http://63.74.114.11/mr_urc/
http://www130.pair.com/jlarkin/
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Technical Documentation

2000-04-28 Thread Brandon Whitaker

Erika:

>I'm interested in knowing what kind of documentation everyone provides
their
>clients as well since I'm delivering my first product on Monday morning.
>Since no one has replied to this post, I'm wondering if anyone PROVIDES
>documentation??

I've normally relied primarily on extensively-commented code; this has
worked out well because the clients I've dealt with thus far had a fair
degree of technical proficiency (albeit in other languages).  This, of
course, becomes useless if (a.) you're encrypting your code, or (b.) the
client lacks the technical skills required.

In my case, the better part of any external documentation that became
necessary could be cut-and-paste with minor modifications from the code
itself.

Duane:

>(although we are going to be looking for a full time tech writer with CF
>experience in the future)

How much does a position like that pay (roughly)?

>Sleep - must get sleep .

Found elsewhere:
SLEEP (slep) n. A hopelessly inefficient and inadequate substitute for
caffeine.

Brandon Whitaker
[EMAIL PROTECTED]
---
"It'll get used by the same people using Opera.  People dressed in black
wearing berets."
- Dave Watts, on Mozilla
"The net interprets censorship as damage and routes around it."
- John Gilmore


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Good CF Text for brochure

2000-04-28 Thread Kenneth Beard

This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.

-- =_NextPart_000_01BFB147.2CAD1C00
Content-Type: multipart/alternative;
boundary=" =_NextPart_001_01BFB147.2CAD1C00"


-- =_NextPart_001_01BFB147.2CAD1C00
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

Anybody come across a really good blurb about cold fusion and why you
want your application's backbone written in it?=A0 I've looked on
houseoffusion.com, cfadvisor.com and allaire.com and the stuff there is
ok, but=A0is more oriented to selling the developer on it that to =
selling
the end user/client on it.=A0=20
Thanks
=A0
Ken Beard
Developer, Stampede Network
[EMAIL PROTECTED]=20
(813)630-2762 ext. 246

-- =_NextPart_001_01BFB147.2CAD1C00
Content-Type: text/html;
charset="iso-8859-1"






BODY {
COLOR: #00; FONT-FAMILY: arial; FONT-SIZE: 12pt; MARGIN-LEFT: 8em
}



cid:562351519@28042000-3707>
Anybody come across a really good blurb 
about cold fusion and why you want your application's backbone written in 
it?  I've looked on houseoffusion.com, cfadvisor.com and allaire.com and the stuff there 
is ok, but is more oriented to 
selling the developer on it that to selling the end user/client on it.  
Thanks
 
Ken 
Beard
Developer, Stampede Network
mailto:[EMAIL PROTECTED]">[EMAIL PROTECTED] 

(813)630-2762 ext. 246

-- =_NextPart_001_01BFB147.2CAD1C00--

-- =_NextPart_000_01BFB147.2CAD1C00
Content-Type: image/gif;
name="Chess.gif"
Content-Transfer-Encoding: base64
Content-Disposition: attachment;
filename="Chess.gif"

R0lGODlhQAZlAPcAAP7+/v39/fz8/Pv7+/r6+vn5+fj4+Pf39/b29vX19fT09PPz8/Ly8vHx
8fDw8O/v7+7u7u3t7ezs7Ovr6+rq6unp6ejo6Ofn5+bm5uXl5ePj4+Li4uHh4eDg4N/f397e3t3d
3dzc3Nvb29ra2tnZ2djY2NfX19bW1tXV1dTU1NPT09LS0tHR0dDQ0M/Pz87Ozs3NzczMzMvLy8rK
ysnJycjIyMfHx8bGxsXFxcTExMPDw8LCwsHBwcDAwL+/v76+vr29vby8vLu7u7q6urm5ubi4uLe3
t7a2trW1tbS0tLOzs7KysrGxsbCwsK+vr66urq2traysrKurq6mpqaioqKenp6ampqWlpaSk
pKOjo6KioqGhoaCgoJ+fn56enp2dnZycnJubm5qampmZmZiYmJeXl5aWlpWVlZSUlJOTk5KSkpGR
kZCQkI+Pj46Ojo2NjYyMjIuLi4qKiomJiYiIiIeHh4aGhoWFhYSEhIODg4KCgoGBgYCAgH9/f35+
fgAA





ACwAQAZlAEAI/wBvXPlC
sKDBgwgTKlxY8M2XK0duvDjxoaLFixgzntj44sWNHz+OPLky8Mybk3dS3nlz5ckPihAQIABAs6bN
mzhz6tzJs6fPn0CDCh1KtKjRo0iTKl3KtKnTp1CjSp1KtarVq1izat3KtavXr2DDih1LtqzZs2hz
nvD4YyRBk29S/pl75wzDu3ffnIH4YyLFjIADC764cW3HGxgSx5yZtrHjx5AjS55MubLly5gza97M
ubPnz6BDmxVc2PDHkCNLmlQ5909dvAb18vU7uLZtwaJz697Nu7fv38CDCx9OvLjx48jT3rZd+jBI
kQO/wGVN1+TeI303Lt9+O7n37+DDi/8fT768+fPo06tHzr194OYeP8L+csR9+/X48+vfz7+///8A
BijggETZZyBpJ8yn4Bc/2EfggxBGKOGEFFZo4YUY9nfghhhttOCHsN1gUYYklmjiiSimqOKKLJqI
1xN/cYggiDTCNhEGEMTU4o489ujjj0AGKeSQT9Wo0BExbuehkUwm5NILH2AgE5FUVmnllVhmqeWW
wzVpJJIVLenlmE9GOSWXaKap5ppstunmmziNSaZbq90xl0NywlamlIzB6eefgAYq6KCElpdnk3p9
8URENzT60RHQvYWSna3hyeSeZxaq6aacdurpp6BidSiTsmFH22CFHXbaE25JN2lrf1j/ehCmfYZq
66245qrrrmy+EFJJKtk1KkOlZpfkgRSlGl9I0EUH0g0n4Jgpr9RWa+212GYLoEUcsYUaSdLVSalr
wpJ6nbEyuqftuuy26+678Oqm5AfKettsuHHJVZ1CxZ6a7nbxBizwwAQXbDBU/wIG32n3SpcQmAkv
d/DEFFds8cXrRmygmDQ2+C/GIIcs8sgkr6mxfRwPa5DHuJXs8sswxyxzhQbBeDJzCaoM4rQz9+zz
z0AHLVyNNqebss56RgQTz0I37fTTUEftFdIFQfxezlQrSKvUXHft9ddg/5S1gh9FNzZDW4et9tps
ty3z2bAl+lBBZ0w3bqw6p+323nz3/+33u3Dj1a92YXbbKLOt2g2rrC/2ZWatf0cu+eSUF3pD4MSe
6y93yh4uEp12q3RHS47zWfnpqKeuOpYeHVES5rFpTjiyhq8K+kknLep4jpCv7vvvwAdPIVsj1dna
a1kPfuy/nT8KqV+K9S789NRXb315HHnuumr5jou8nMrffPUJMpV//fnop68+cB12/lxq+FJHbo3h
i9/y+vjnr//+lN1WL8OJE9fxyrWQ+tkPMPxLoAIXyECtbIxehrEXq94iwH01RHbLO2BFGsjBDnrw
g0HRWPPeF526TcpSppqdBi8Cwha68IUMXGGysgfACS6kPivcIAx3yMMeUi+HCOoIiP9wqDEfGvGI
SJQcEGvzAjmxzEBJjKIUp9i1Jc4IaU+sDRW3yMUuxsyKV4PdF0SUES+a8YxoPFjRwMgtrInxIGmM
oxzniC2FrFGDR3vjF6TFNDr68Y+A9NOC7sg8N+qRID+AVpR0FMhGOvKRWfKS1VBmyEOSDkrSgqQm
N8nJFulskqiqpB4v+QHedfKUqEzlhDBHRMKIUo9lWowqZ0nLWubnkFVrIi5rtjtG2vKXwAzmcXZZ
ENS4inGBi2UfhcnMZjqTM8RMCFzyVamxxdKXz8ymNrcJmWh+IVGsgtTnSjipcSHzUrtbJjfXyc52
iiqaxZIIR9aivcSVs5o0uqb03Mn/z376MyneHBy9NJKqepKze/hEWzr3+c+GOvShcYInBpVUO9TY
E6F34iWUTAnRjnoUor56wi4NyDkImsZ54DqmSlhiqsd99KUwdWfrrgAXAsKNpBuqaFsCeIZFKVJK
MQ2qUJ9JPFdR6nvJm2jERggpVl2hUZiU5VCnStVZrsWY36SmBXWG06XW7iMViZ46q0rWstIxe1g1
ofz+YNMxdfVmzeGd+cxK17r60aQSBJda9TU/tyrVijNhqF0HS9gpttFwJOTeWtu6oLdqsLCQjSwX
Fea+bymWr0idj2MPKNnOetaItflfYuPHV7Zq9q9L/KxqVwtCzkUQgCWsYF/5hVog/7L2trhN4MZe
m9i6yda0B9ms/XJL3OKij0NMjRRpvScs4YrPuNCNLvASJlrLqlR0d5DObFRoW+l697uTg2tBYUtB
3NUMWhl8LHjXy9624bFbyxonQ0Cp3vba975SW+LCnIeXLD4XvwAOMNDYiNfDLK

RE: Cf express and sessions

2000-04-28 Thread Raymond K. Camden

FYI, per my last email, I plan on actually writing an article about this
method sometime soon. Sorry to just 'show the code' and run.

===
Raymond Camden, Cold Fusion Jedi Master for Syntegra (www.syntegra.com)
Allaire Certified Instructor and Member of Team Allaire

Email   : [EMAIL PROTECTED]
ICQ UIN : 3679482

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


> -Original Message-
> From: Mark W. Breneman [mailto:[EMAIL PROTECTED]]
> Sent: Friday, April 28, 2000 1:12 PM
> To: [EMAIL PROTECTED]
> Subject: RE: Cf express and sessions
>
>
> Anyone... Please
>
> -Original Message-
> From: Mark W. Breneman [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, April 27, 2000 10:03 AM
> To: [EMAIL PROTECTED]
> Subject: Cf express and sessions
>
>
>
> Hello,
>
> I am looking for an answer.  Does CF express support sessions?  At first
> glance it aperies not to.  Has anyone found a work around for this?
> CFexpress docs are as clear as mud.  Listing tags on both the
> supported and
> not supported lists.  It is trying to say that some of the
> functions of that
> tag are supported.  I know, I know I should not complain it is free after
> all.
>
> Thanks,
>
> Mark W. Breneman
> -Cold Fusion Developer
> -Network Administrator
> Vivid Media
> [EMAIL PROTECTED]
> www.vividmedia.com
> 608.270.9770
>
> --
> --
> --
> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
>
> --
> 
> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Cf express and sessions

2000-04-28 Thread Raymond K. Camden

CFExpress does not support sessions. But you can fake it by adding this code
to your application.cfm.

















===
Raymond Camden, Cold Fusion Jedi Master for Syntegra (www.syntegra.com)
Allaire Certified Instructor and Member of Team Allaire

Email   : [EMAIL PROTECTED]
ICQ UIN : 3679482

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


> -Original Message-
> From: Mark W. Breneman [mailto:[EMAIL PROTECTED]]
> Sent: Friday, April 28, 2000 1:12 PM
> To: [EMAIL PROTECTED]
> Subject: RE: Cf express and sessions
>
>
> Anyone... Please
>
> -Original Message-
> From: Mark W. Breneman [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, April 27, 2000 10:03 AM
> To: [EMAIL PROTECTED]
> Subject: Cf express and sessions
>
>
>
> Hello,
>
> I am looking for an answer.  Does CF express support sessions?  At first
> glance it aperies not to.  Has anyone found a work around for this?
> CFexpress docs are as clear as mud.  Listing tags on both the
> supported and
> not supported lists.  It is trying to say that some of the
> functions of that
> tag are supported.  I know, I know I should not complain it is free after
> all.
>
> Thanks,
>
> Mark W. Breneman
> -Cold Fusion Developer
> -Network Administrator
> Vivid Media
> [EMAIL PROTECTED]
> www.vividmedia.com
> 608.270.9770
>
> --
> --
> --
> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
>
> --
> 
> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf
_talk or send a message to [EMAIL PROTECTED] with
'unsubscribe' in the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Cf express and sessions

2000-04-28 Thread Pecora, James

No it does not -
you will have to maintain session via the URL

HTH

-Original Message-
From: Mark W. Breneman [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 28, 2000 12:12 PM
To: [EMAIL PROTECTED]
Subject: RE: Cf express and sessions


Anyone... Please

-Original Message-
From: Mark W. Breneman [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 27, 2000 10:03 AM
To: [EMAIL PROTECTED]
Subject: Cf express and sessions



Hello,

I am looking for an answer.  Does CF express support sessions?  At first
glance it aperies not to.  Has anyone found a work around for this?
CFexpress docs are as clear as mud.  Listing tags on both the supported and
not supported lists.  It is trying to say that some of the functions of that
tag are supported.  I know, I know I should not complain it is free after
all.

Thanks,

Mark W. Breneman
-Cold Fusion Developer
-Network Administrator
Vivid Media
[EMAIL PROTECTED]
www.vividmedia.com
608.270.9770


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Distinct Help

2000-04-28 Thread Nick de Voil

Which comment do you want? The first one they made?

I'd suggest you normalise your design to have a Member table and a Comment
table. Link them via the UserID. Put a unique ID in your Comment table.

Then you could say something like

SELECT UserID, Comment
FROM Comment
WHERE chr(UserID)+chr(CommentID) IN
(SELECT chr(UserID)+chr(min(CommentID))
FROM Comment
GROUP BY UserID);

The chr() function is turning two integer data items into one by converting
them to ASCII text so they can be concatenated. chr() works in Access but
other DBMS have equivalents such as char() (Ingres) TO_CHAR (Oracle) or
convert() (Sybase). MySQL auto-converts integers passed to CONCAT() into
text.

Subqueries are not allowed in some DBMS, eg MySQL. You can get round this by
executing the subquery first as a separate query and storing the results in
a temporary table.

BUT... this isn't a very efficient solution, particularly with all that type
conversion. You could denormalise a bit and store the user's first comment
on the Member table, and all their comments (or all their subsequent
comments) on the Comment table.

Then you could just say

SELECT UserID, FirstComment
FROM Member

A lot simpler but obviously you have to do extra processing when the data
first goes into the tables.

HTH
Nick

> Doesn't seem to be exactly -- what I want is to return all the rows from
the
> member table, but exclude rows which have the same UserID. I think I was
> misleading in the example using "UserName" ... a better example would be
> where a 'comments' column exists and a single user could have made
multiple
> comments ...
>
> So a query would return:
> UserID  Comment
> 1Hello
> 2Goodbye
>
> from:
>
> UserID  Comment
> 1Hello
> 2Goodbye
> 1I agree
> 1No way
>
> It is the syntax for this query that I can't get right 
> THX
> > > How can I return rows without duplicates defined only by a single
> column?
> > >
> > > For example, I want to return rows that have no repeats of a certain
> > column.
> > >
> > > If I use
> > >
> > > Select DISTINCT UserID from Member
> > >
> > > it works -- but I want to return more columns ...
> > >
> > > So when I go
> > >
> > > Select Distinct UserID, UserName from Member
> > >
> > > I don't get the filtering of repeat UserIDs that I need.
> > >
> > > MAke sense? Anyone know the syntax I need??
> >
> > No it doesn't make sense really. If you have more than one UserName for
> each
> > UserID, which I assume you do - otherwise the filtering would still be
> > working - then if you want a full list of UserNames you're bound to get
> > repeated UserID's.
> >
> > If you want a list of all UserID's that only have one UserName you could
> say
> >
> > SELECT UserID, count(UserName) FROM Member
> > GROUP BY UserID
> > HAVING count(UserName) =  0
> >
> > but I'm not sure that's what you want... is it?
> >
> > Nick de Voil
> > De Voil Consulting
> > [EMAIL PROTECTED]
> > Tel  +44 20 8560 4373
>


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Binary Data to Browser - Curious

2000-04-28 Thread Scott Becker

This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.

--_=_NextPart_001_01BFB144.D2C7DB10
Content-Type: text/plain;
charset="iso-8859-1"

Hi,

Does anyone know if there is a way to use Cold Fusion to send Binary Data to
the browser?

The reason I ask is, in ASP there is a way to query an image field from a
database and send it in binary code to a browser as a GIF or JPEG image,
right from an ASP page. This would be done by calling the image like this:



I was wondering if it was possible to do this with CF...

- Scott

--_=_NextPart_001_01BFB144.D2C7DB10
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable






Binary Data to Browser - Curious



Hi,


Does anyone know if there is a way to use Cold Fusion =
to send Binary Data to the browser?


The reason I ask is, in ASP there is a way to query =
an image field from a database and send it in binary code to a browser =
as a GIF or JPEG image, right from an ASP page. This would be done by =
calling the image like this:




I was wondering if it was possible to do this with =
CF...


- Scott




--_=_NextPart_001_01BFB144.D2C7DB10--
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: licencing code

2000-04-28 Thread Sean Renet

I totally missed the first part of this thread, but I cannot think of one
reason to give code to a client as property. There are only so many ways to
do things in CF.
- Original Message -
From: "Jason Egan" <[EMAIL PROTECTED]>
To: "Cf-Talk" <[EMAIL PROTECTED]>
Sent: Friday, April 28, 2000 9:08 AM
Subject: licencing code


> What is entailed in licensing your code?  I have a job that unlicensed
code
> becomes their property - there are some of our code that we don't want
them
> to have ---???
>
> -je
>
>
> --

> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
>

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: CFHttp and Wddx posting for results only???

2000-04-28 Thread Dick Applebaum

Andy

Three ways immediately come to mind (designed to be accessed by a 
program via something like CFHTTP):

1) A data-drop site (page)... one that returns a WDDX packet when the page as
accessed.

For example A Manufacturer creates a page which returns a WDDX packet
containing a database query or a recordset of changes to its products
database.

Distributers can access the page with a program which uses the 
WDDX packet to
update its own copy of the database.

2) A intelligent data-exchange site (page)... one that allows the visitor to
make requests and receive WDDX packets containing the results of the
requests.

For example, a publisher allows other sites to republish articles.

The republisher is provided with a program which can browse and 
mark articles
to be retrieved from the publisher,

When through, the republisher sends a request to retrieve the articles.  The
intelligent data-exchange page builds a custom WDDX packet containing only
the requested articles (including content and markup).

The republisher uses this WDDX packet to populate his database and/or web
pages

3) An interactive site (page)... where WDDX packets are the medium of exchange,
primarily because they easily handle complex data structures and special
character content which would be prohibitive to handle by other means.

The interactive database stub I described earlier in this thread, is an
example of this...  essentially a program on one site accessing a
database on another.


Any, or all of these WDDX-Friendly sites (pages) can require whatever 
security that the provider deems necessary - including, but not 
limited to:

controlled access (cookie, login, IP address, etc.)

time-limited window of availability

unpublished site (page) address

data encryption

SSL transmission

These are exactly the types of applications that WDDX was designed to 
address.   An additional advantage, is that WDDX allows all of these 
interacting programs to be written in different languages (Perl, ASP, 
Java, JavaScript, C++, CF).

WDDX is kind of the ultimate medium for data exchange:

   a XML packet contains A WXXX packet...

   ... this WDDX packet can contain arrays, structures, recordsets...

   and, yes, it can contain an XML packets which can contain

HTH

Dick



At 11:43 AM -0400 4/28/2000, [EMAIL PROTECTED] wrote:
>Sharon:
>
>How do you design sites that are XML/Wddx Friendly?  Do you have someplace I
>can go to read about this?
>
>Andy
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Integrating coldfusion with MS word

2000-04-28 Thread Howie Hamlin

The application that opens is determined by the MIME type setings on your PC
(if you are using IE).  The standard RTF MIME type is:

application/rtf

You can also try application/msword (that should work).

You can also check your local MIME type settings.  When IE sees that MIME
type it maps the mime type to a local application (yours seems to be Studio
for some reason).  Anyway, to check you MIME types open up Windows Explorer.
Click on View/Options.  Then click on the File Types tab.  You will see the
list of MIME type mappings.

HTH,

Howie Hamlin
--
inFusion Project Manager; On-Line Data Solutions, Inc. (631)737-4668
===
Please vote for iMS in the Most Innovative category here:
*** http://www.sys-con.com/ColdFusion/readerschoice2000/ ***
===
Check out inFusion Mail Server - the world's most configurable email server
*** inFusion Authenticator for IIS is now released! (download from
CoolFusion.com) ***
http://www.teletrends.com and http://www.coolfusion.com
Software and utilities for ColdFusion, iHTML, Website, NTMail
Latest versions available from our web site (inFusion Authenticator version
2.0 for WebSite and NTMail is now released)

- Original Message -
From: Alex Skinner <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, April 28, 2000 12:55 PM
Subject: Integrating coldfusion with MS word


> This is a multi-part message in MIME format.
>
> --=_NextPart_000_0168_01BFB13A.FB520820
> Content-Type: text/plain;
> charset="iso-8859-1"
> Content-Transfer-Encoding: quoted-printable
>
> How can you integrate MS word with coldfusion
>
> Id like to be able to click a hyper link, to launch msword in the =
> browser with data pulled in from a CF source
>
> can it be done?
>
> I found an example using RTF on the coldcuts site but every time  run it =
> it loads the output in STUDIO?
>
> Many thanks
>
> Alex Skinner
>
> --=_NextPart_000_0168_01BFB13A.FB520820
> Content-Type: text/html;
> charset="iso-8859-1"
> Content-Transfer-Encoding: quoted-printable
>
> 
> 
>  http-equiv=3DContent-Type>
> 
> 
> 
> 
> How can you integrate MS word with=20
> coldfusion
>  
> Id like to be able to click a hyper =
> link, to launch=20
> msword in the browser with data pulled in from a CF source
>  
> can it be done?
>  
> I found an example using RTF on the =
> coldcuts site=20
> but every time  run it it loads the output in STUDIO?
>  
> Many thanks
>  
> Alex Skinner
>
> --=_NextPart_000_0168_01BFB13A.FB520820--
>
> --

> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Network files on other machines.

2000-04-28 Thread Drew Koenig

I have an email option running that attaches a file. I cannot get a file
that is located on another network machine, I get an error 'file does not
exist'. The paths I use are like (\\machinename\images\file.jpg) or
something like that. How do I get around this? Or is this a limitation
inherit to CF Server???

~
Drew Koenig
Interactive Quality Services
4930 W. 77th St. Ste. 230
Minneapolis, MN 55435
952-820-0778 Ext 120
~

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: licencing code

2000-04-28 Thread Jim Taylor

see an attorney

-Original Message-
From: Jason Egan [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 28, 2000 9:09 AM
To: Cf-Talk
Subject: licencing code


What is entailed in licensing your code?  I have a job that unlicensed code
becomes their property – there are some of our code that we don’t want them
to have ---???

-je



--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: CFHttp and Wddx posting for results only???

2000-04-28 Thread Sharon DiOrio

www.wddx.org is the best place to start to understand what WDDX is and how
it works.

Then, start playing with it.


SELECT *
FROM TableName



#HTMLCodeFormat(myWDDX)#

Examine the output and you'll see what WDDX looks like.  Now imagine a page
that had nothing more than a query that produced a WDDX packet (no HTML, no
extra whitespace, nothing.)  Another server could use  to grab that
page and using the same  tag turn it back into a query.  If the
WDDX page accepted form/url variables, you could even customize the query
that populates the WDDX packet.

But it's definitely a cooperative effort.

Hope that helps.

Sharon

At 11:43 AM 4/28/2000 -0400, [EMAIL PROTECTED] wrote:
>Sharon:
>
>How do you design sites that are XML/Wddx Friendly?  Do you have someplace I 
>can go to read about this?
>
>Andy
>--
>Archives: http://www.eGroups.com/list/cf-talk
>To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or 
>send a message to [EMAIL PROTECTED] with 'unsubscribe' in 
>the body.


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Styles

2000-04-28 Thread Tariq Ahmed





Might work.


On Fri, 28 Apr 2000, Tiberiu Vasilica wrote:

> How I can modify the height of an input text box? I want to make smaller,
> like FrontPage does...
> I try various styles but it looks the same...
> 
> Tibbs
> 
> 
> --
> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
> 


  Tariq Ahmed - [EMAIL PROTECTED] - ICQ 6308515
 TIBCO Finance Technology - Web Group - Senior Web Engineer
 Work: 650-461-3472   Pager: 800-759-x1702632   Fax: 650-461-3003
 3375 Hillview Avenue. Palo Alto, CA. 94304.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



CFFILE - Invalid parser construct/expression format

2000-04-28 Thread Todd Ashworth

OK .. anyone know why I am getting this error?  The D:\Path .. was
changed for security purposes, but the path it shows in the error is 100%
correct, which means that the
"#Evaluate(ExpandPath('../images/Home_Picture2.#FILE.ClientFileExt#'))#" is
being parsed correctly.

__
An error occurred while evaluating the expression:

"#Evaluate(ExpandPath('../images/Home_Picture2.#FILE.ClientFileExt#'))#"

Error near line 59, column 109.



An error has occurred while processing the expression:

   D:\Path\Hidden\For\Security\images\Home_Picture2.gif

Invalid parser construct found on line 1 at position 2. ColdFusion was
looking at the following text:

:

Invalid expression format. The usual cause is an error in the expression
structure.
_

The code snippet is:



.Todd


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Certification is BS

2000-04-28 Thread John N Westerlund

I agree with regards to the million different types of MSCE MCP CCSE MCetc
(too many out there to discern) but you have to be able to pass a test for a
given field, so yes this person must have at least looked at something. I
think you should take it with a grain of salt, ie:

Certification... Basic experience and intro to the subject matter
BS... Four years theory and some hands on the subject matter
MS... Advanced Mastery of the subject matter
PhD... Supreme Mastery of said subject matter...

Certificates are to differentiate the people who dont have any background at
all from the people who have basic knowledge...
I mean, two people come to your interview. One without a certificate, and
one with a certificate. Granted a small percentage of people are self-taught
and very very good at it, but a large percentage are also dolts applying for
a higher paying job.

Plus you have to remember the higher degree/more experience you bring in,
the more dollars you will be shelling out, and some employers may not need a
PhD or MS for their (small) projects or basic web/system design, etc. A
certificate is perfect for redundant work which needs a background in your
platform of specialty.

Now Yahoo isn't the greatest authority on education but certificates from
good schools and/or good companies are very valid (ie Oracle, Sun, Cisco
trained people).


-Original Message-
From: John Morgan <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED] <[EMAIL PROTECTED]>
Date: Friday, April 28, 2000 1:03 PM
Subject: Re: Certification is BS



>... I would put 0 value on some yahoo C++
>certification that every joe can get.

You can get Yahoo certification? :)
What about AltaVista and Lycos?   :)

-John-



--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: access to sql server 7

2000-04-28 Thread Fred T. Sanders

Or even the official "Microsoft Access Upsizing Tools 97" page?

http://www.microsoft.com/products/developer/officedeveloper/Access/ProdInfo/
Aut97dat.htm

Fred

- Original Message -
From: "Dave Wilson" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, April 28, 2000 10:51 AM
Subject: Re: access to sql server 7


> Not only broken image links, but the downlad keeps timing out too...
>
> Does anyone have a copy of the upsizing utility that they could perhaps
> email to me off list? Or I could set up an FTP account on one of our
> servers.
>
> Cheers,
> Dave
>
> Dave Wilson
> Internet Technology Manager,
> BizNet Solutions
>
> 
> Co-Founder CFUG Ireland
> http://www.cfug.ie
>
> 224, Lisburn Road
> Belfast BT9 6GE
>
> Tel: 02890 225 776
> Fax: 02890 223 223
> web: http://www.biznet-solutions.com
>
> email: [EMAIL PROTECTED]
> - Original Message -
> From: Sean Renet <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Friday, April 28, 2000 8:40 AM
> Subject: Re: access to sql server 7
>
>
> > nice broken images on that link :-)
> >
> > - Original Message -
> > From: "Fred Sanders" <[EMAIL PROTECTED]>
> > To: <[EMAIL PROTECTED]>
> > Sent: Tuesday, April 25, 2000 11:27 AM
> > Subject: Re: access to sql server 7
> >
> >
> > > http://www.ukaug.co.uk/downloads/v8downloads.htm
> > >
> > > - Original Message -
> > > From: "Won Lee" <[EMAIL PROTECTED]>
> > > Newsgroups: cf-talk
> > > To: <[EMAIL PROTECTED]>
> > > Sent: Friday, April 21, 2000 2:04 PM
> > > Subject: access to sql server 7
> > >
> > >
> > > > I can't seem to find the SQL server upsizing window on microsoft.com
> > > >
> > > > anyone have the specific link to it?
> > >
> >
>
> --
> > > 
> > > > Archives: http://www.eGroups.com/list/cf-talk
> > > > To Unsubscribe visit
> > >
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
> or
> > > send a message to [EMAIL PROTECTED] with 'unsubscribe'
> in
> > > the body.
> > >
> >
>
> --
> > 
> > > Archives: http://www.eGroups.com/list/cf-talk
> > > To Unsubscribe visit
> > http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
or
> > send a message to [EMAIL PROTECTED] with 'unsubscribe'
in
> > the body.
> > >
> >
> >
>
> --
> 
> > Archives: http://www.eGroups.com/list/cf-talk
> > To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
> >
>
> --

> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: CF and AOL

2000-04-28 Thread Mike Sheldon

It's not so much an issue with CF and AOL as much as it's an issue with the
world and AOL.

AOL's proxy servers cache pages in an EXTREMELY agreesive manner. Any site
with dynamic content, or authentication requirements is at risk of
corruption or security breaches unless every measure possible is taken to
tell AOL's proxies NOT to cache the page.

The following headers should be sent with every request:













So far, this has worked to prevent problems caused by AOL's proxies on my
sites. Be warned, however, that AOL's evil engineers occasionally tweak the
servers to defeat such measures. (It's cheaper for them to cache everything
than it is to buy proper bandwidth)

Michael J. Sheldon
Internet Applications Developer
Phone: 480.699.1084
http://www.desertraven.com/
PGP Key Available on Request

-Original Message-
From: Tara Riley [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 28, 2000 08:03
To: CF-TALK
Subject:


This is a multi-part message in MIME format.

--=_NextPart_000_000F_01BFB101.5BF8D120
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit

Does anyone know of any issues or problems with CF 4.51 and AOL users??

--=_NextPart_000_000F_01BFB101.5BF8D120
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable






Does =
anyone know of=20
any issues or problems with CF 4.51 and AOL=20
users??

--=_NextPart_000_000F_01BFB101.5BF8D120--


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Certification is BS

2000-04-28 Thread Fred T. Sanders

I can hear the laughter now.  Why yes! I'm a Yahoo Certified C++ Software
Engineer.

- Original Message -
From: "John Morgan" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, April 28, 2000 10:38 AM
Subject: Re: Certification is BS


>
> >... I would put 0 value on some yahoo C++
> >certification that every joe can get.
>
> You can get Yahoo certification? :)
> What about AltaVista and Lycos?   :)
>
> -John-
>
>
> --

> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: CFPOP Attachments Error

2000-04-28 Thread Eric Hoffman

I've seen this since the 4.5 upgrade at my host...the POP client I wrote worked 
fine...and now I randomly get that errorsometimes during connection, sometimes 
reading an email.  Quite frustrating.  Is it a 4.5 (1) error everyone is experiencing?


>>> "Nathaniel Plane" <[EMAIL PROTECTED]> 04/28/00 10:11AM >>>
Hi.

While working with CFPOP, i encountered an error when trying to use
attachments, the server throws back an error..

Error Diagnostic Information
unknown exception condition

unknown error while executing a tag

This ONLY happens when specifying an attachment path.. The path is valid,
ive tried local directories and virtual directories with full control
security for Everyone.  Its unpredictable, it runs fine at times, others it
dies, but when it does throw this error its impossible to make it stop..
Perhaps a single Attachment is killing it? Also, it seems to crash MORE when
toggling the "Generate Unique Filenames". Any help on this subject would be
GREATLY apretiated.

--
Nathaniel Plane
Web Developer
STONEAGE.COM
Email: [EMAIL PROTECTED] 
Voice: (877)544-2336
http://www.stoneage.com 

"A feature is a bug with seniority."
--

--
Archives: http://www.eGroups.com/list/cf-talk 
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.


To review our disclaimer please visit Http://www.meagher.com/disclaimer
This email and any attachments have been scanned for known viruses through a service 
provided by Mailzone.net.
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebarRsts&bodyRsts/cf_talk or send a message 
to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: access to sql server 7

2000-04-28 Thread Fred T. Sanders

How about a direct link?

http://www.microsoft.com/products/developer/officedeveloper/Access/prodinfo/
exe/wzcs97.exe

If they timeout blame Billy G.

Fred

- Original Message -
From: "Dave Wilson" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, April 28, 2000 10:51 AM
Subject: Re: access to sql server 7


> Not only broken image links, but the downlad keeps timing out too...
>
> Does anyone have a copy of the upsizing utility that they could perhaps
> email to me off list? Or I could set up an FTP account on one of our
> servers.
>
> Cheers,
> Dave
>
> Dave Wilson
> Internet Technology Manager,
> BizNet Solutions
>
> 
> Co-Founder CFUG Ireland
> http://www.cfug.ie
>
> 224, Lisburn Road
> Belfast BT9 6GE
>
> Tel: 02890 225 776
> Fax: 02890 223 223
> web: http://www.biznet-solutions.com
>
> email: [EMAIL PROTECTED]
> - Original Message -
> From: Sean Renet <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Friday, April 28, 2000 8:40 AM
> Subject: Re: access to sql server 7
>
>
> > nice broken images on that link :-)
> >
> > - Original Message -
> > From: "Fred Sanders" <[EMAIL PROTECTED]>
> > To: <[EMAIL PROTECTED]>
> > Sent: Tuesday, April 25, 2000 11:27 AM
> > Subject: Re: access to sql server 7
> >
> >
> > > http://www.ukaug.co.uk/downloads/v8downloads.htm
> > >
> > > - Original Message -
> > > From: "Won Lee" <[EMAIL PROTECTED]>
> > > Newsgroups: cf-talk
> > > To: <[EMAIL PROTECTED]>
> > > Sent: Friday, April 21, 2000 2:04 PM
> > > Subject: access to sql server 7
> > >
> > >
> > > > I can't seem to find the SQL server upsizing window on microsoft.com
> > > >
> > > > anyone have the specific link to it?
> > >
> >
>
> --
> > > 
> > > > Archives: http://www.eGroups.com/list/cf-talk
> > > > To Unsubscribe visit
> > >
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
> or
> > > send a message to [EMAIL PROTECTED] with 'unsubscribe'
> in
> > > the body.
> > >
> >
>
> --
> > 
> > > Archives: http://www.eGroups.com/list/cf-talk
> > > To Unsubscribe visit
> > http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
or
> > send a message to [EMAIL PROTECTED] with 'unsubscribe'
in
> > the body.
> > >
> >
> >
>
> --
> 
> > Archives: http://www.eGroups.com/list/cf-talk
> > To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
> >
>
> --

> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Mysql

2000-04-28 Thread Brook Davies

MySql is optimized for read and is some what slow when writing data. There 
are some nice web based interfaces to administer MySQl, we use phyMyAdmin 
(a php tool for mysql) and it works great.



At 06:33 PM 28/04/00 +1000, you wrote:
>This message is in MIME format. Since your mail reader does not understand
>this format, some or all of this message may not be legible.
>
>--_=_NextPart_001_01BFB0EC.77B48630
>Content-Type: text/plain;
> charset="ISO-8859-1"
>
>Hi All,
>
>I am about to encounter mysql for the first time (updating an older site),
>and was wondering if someone would share any good / bad experiences.  I have
>read the sales spiel and done the site crawl, but would like to hear some
>first hand views.  I am particularly interested in load performance (ie how
>many users needed to break it) and time responses for queries (response
>times appear to be ok so far), and any other connection-based difficulties,
>or comparisons with more recognised databases.
>
>Any help is much appreciated.
>
>Thanks!
>
>Rafe
>
>--_=_NextPart_001_01BFB0EC.77B48630
>Content-Type: text/html;
> charset="ISO-8859-1"
>Content-Transfer-Encoding: quoted-printable
>
>
>Mysql
>
>Hi All,
>
>I am about to encounter mysql for the = first time (updating an older 
>site), and was wondering if someone would = share any good / bad 
>experiences.  I have read the sales spiel and = done the site crawl, but 
>would like to hear some first hand = views.  I am particularly interested 
>in load performance (ie how = many users needed to break it) and time 
>responses for queries (response = times appear to be ok so far), and any 
>other connection-based = difficulties, or comparisons with more recognised 
>databases.
>
>Any help is much appreciated.
>
>Thanks!
>
>Rafe
>--_=_NextPart_001_01BFB0EC.77B48630--
>--
>Archives: http://www.eGroups.com/list/cf-talk
>To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or 
>send a message to [EMAIL PROTECTED] with 'unsubscribe' in 
>the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Session variables

2000-04-28 Thread Tiberiu Vasilica

Please help...
How to store the added products in a session variable?  




 
 
 
 
 
 
 
 
 #Artist#
 #title#
 #NumberFormat(Price)#
 
 
 
 
 
 


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Translation Concept

2000-04-28 Thread Philip Arnold - ASP

It's been a long time since I've been on this list, but I've run into a
problem that someone here might have some insight into...

I'm using an Excel ODBC datasource (as that's how the client supplies 3Mb of
data), but the same problem arises if I make it as a Link Table in Access,
or even as a CSV datasource

Two of the columns are telephone numbers, but when ODBC reads it, it treats
it as a numeric, which means that any entries which have spaces in are
ignored - as they aren't truly numeric, e.g. 0015124267712001 works (as
15124267712), but 001 512 426 7712 is ignored.

I know it's something in the Excel connector, but I'm hoping I can solve
this.

I'm running MDAC 2.1 SP2 (is 2.5 worth the upgrade?) and CF 4.01 (I know I
should run my upgrade to 4.51, but I haven't had the chance yet)

I hope someone can help me with this, as I'm tearing my hair out (what
little I have left)

TIA

Philip Arnold
ASP Multimedia Limited
T: +44 (0)20 8680 1133

"Websites for the real world"

**
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.
**


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Accessing Verity Collection on a seperate server

2000-04-28 Thread Dave Watts

> I have a Verity collection on a 4.5.1 machine.  I want to
> access it from a 4.0.1 machine on the same network. I put
> in the UNC path to the collection in the CF administrator.
> When I try and run a sample page, I get an error saying it
> can't access the collection (don't have the exact message in
> front of me).

There are two potential problems that I can see.

1. The CF server doesn't have rights to the remote directory. By default,
the CF server runs in the local system security context, which is a user
with local administrative rights but no network rights. You could change the
CF server to run as a specific user with the desired rights; there's a white
paper on the Allaire site that covers this, I believe.

2. The CF server might not be able to use a UNC path for this. You might
have to map a drive, and make sure that the CF service can see this mapped
drive.

Of course, there could be other problems of which I'm not aware.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Technical Documentation

2000-04-28 Thread Duane Boudreau

Oops meant to address that to Erika, not myself :)

Sleep - must get sleep .

Duane


-Original Message-
From: Duane Boudreau [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 28, 2000 1:08 PM
To: [EMAIL PROTECTED]
Subject: RE: Technical Documentation


Duane

We use consultants to come in and draft our user manuals for our products
(although we are going to be looking for a full time tech writer with CF
experience in the future)

Typically we send a Getting Started Manuals and User Guides

HTH,
Duane




-Original Message-
From: Eric Dawson [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 28, 2000 11:27 AM
To: [EMAIL PROTECTED]
Subject: Re: Technical Documentation


hmmm. not me.

From: "Erika Foster" <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
To: <[EMAIL PROTECTED]>
Subject: Re: Technical Documentation
Date: Fri, 28 Apr 2000 07:53:11 -0700

I'm interested in knowing what kind of documentation everyone provides their
clients as well since I'm delivering my first product on Monday morning.
Since no one has replied to this post, I'm wondering if anyone PROVIDES
documentation??

Erika

- Original Message -
From: "Jennifer" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, April 27, 2000 2:39 PM
Subject: OT: Technical Documentation


 > We have just produced some printed technical documentation on one of our
 > ColdFusion sites. The client isn't happy with the documentation "because
it
 > doesn't have any code in it." It actually does have some code in it, but
 > only the default settings for the Application.cfm files for the live and
 > testing servers (the file contains the application variables containing
the
 > live or testing database names, as appropriate). They have all of the
site
 > code available to them, since none of the code is encrypted.
 >
 > We aren't aware of any "standard" for printed technical documentation for
 > web sites. If any of you supply printed technical documentation for your
CF
 > web sites, would you please give me a description of what information you
 > include? Thanks!
 >
 >
--

 > Archives: http://www.eGroups.com/list/cf-talk
 > To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Ben Forta's new Spectra book released

2000-04-28 Thread Jennifer Larkin

Peter Tilbrook wrote:
> 
> Heh heh! Oops!

And while we're on Oops! The book hasn't been released yet, but you can
pre-order it now.
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Cf express and sessions

2000-04-28 Thread Mark W. Breneman

Anyone... Please

-Original Message-
From: Mark W. Breneman [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 27, 2000 10:03 AM
To: [EMAIL PROTECTED]
Subject: Cf express and sessions



Hello,

I am looking for an answer.  Does CF express support sessions?  At first
glance it aperies not to.  Has anyone found a work around for this?
CFexpress docs are as clear as mud.  Listing tags on both the supported and
not supported lists.  It is trying to say that some of the functions of that
tag are supported.  I know, I know I should not complain it is free after
all.

Thanks,

Mark W. Breneman
-Cold Fusion Developer
-Network Administrator
Vivid Media
[EMAIL PROTECTED]
www.vividmedia.com
608.270.9770


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Technical Documentation

2000-04-28 Thread Duane Boudreau

Duane

We use consultants to come in and draft our user manuals for our products
(although we are going to be looking for a full time tech writer with CF
experience in the future)

Typically we send a Getting Started Manuals and User Guides

HTH,
Duane




-Original Message-
From: Eric Dawson [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 28, 2000 11:27 AM
To: [EMAIL PROTECTED]
Subject: Re: Technical Documentation


hmmm. not me.

From: "Erika Foster" <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
To: <[EMAIL PROTECTED]>
Subject: Re: Technical Documentation
Date: Fri, 28 Apr 2000 07:53:11 -0700

I'm interested in knowing what kind of documentation everyone provides their
clients as well since I'm delivering my first product on Monday morning.
Since no one has replied to this post, I'm wondering if anyone PROVIDES
documentation??

Erika

- Original Message -
From: "Jennifer" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, April 27, 2000 2:39 PM
Subject: OT: Technical Documentation


 > We have just produced some printed technical documentation on one of our
 > ColdFusion sites. The client isn't happy with the documentation "because
it
 > doesn't have any code in it." It actually does have some code in it, but
 > only the default settings for the Application.cfm files for the live and
 > testing servers (the file contains the application variables containing
the
 > live or testing database names, as appropriate). They have all of the
site
 > code available to them, since none of the code is encrypted.
 >
 > We aren't aware of any "standard" for printed technical documentation for
 > web sites. If any of you supply printed technical documentation for your
CF
 > web sites, would you please give me a description of what information you
 > include? Thanks!
 >
 >
--

 > Archives: http://www.eGroups.com/list/cf-talk
 > To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: CFPOP Attachments Error

2000-04-28 Thread Jonathan McGuire

Had the same problem with a very stupid cause.  Make sure all of your path
fields have a trailing \.

Jonathan McGuire
- Original Message -
From: "Nathaniel Plane" <[EMAIL PROTECTED]>
To: "Cold Fusion" <[EMAIL PROTECTED]>
Sent: Friday, April 28, 2000 11:11 AM
Subject: CFPOP Attachments Error


Hi.

While working with CFPOP, i encountered an error when trying to use
attachments, the server throws back an error..

Error Diagnostic Information
unknown exception condition

unknown error while executing a tag

This ONLY happens when specifying an attachment path.. The path is valid,
ive tried local directories and virtual directories with full control
security for Everyone.  Its unpredictable, it runs fine at times, others it
dies, but when it does throw this error its impossible to make it stop..
Perhaps a single Attachment is killing it? Also, it seems to crash MORE when
toggling the "Generate Unique Filenames". Any help on this subject would be
GREATLY apretiated.

--
Nathaniel Plane
Web Developer
STONEAGE.COM
Email: [EMAIL PROTECTED]
Voice: (877)544-2336
http://www.stoneage.com

"A feature is a bug with seniority."
--


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Re: CFHttp and Wddx posting for results only???

2000-04-28 Thread Sharon DiOrio

Well, I can't give code because it's entirely dependent on the page that is
returned.  But I'd point you in the direction of regular expressions to do
the job.  It isn't for the faint of heart.  There's a chapter on regular
expressions in the Advanced CFWACK book and O'Reilly has an entire book
dedicated to them.

Sharon

At 08:31 AM 4/28/2000 -0700, [EMAIL PROTECTED] wrote:
>
>
>Thanks Sharon,
>  How do i parse the page returned back(ie
>#cfhttp.filecontent#)
>to get only the results of the query.
>I would like to know, how can one Parse the info from a page
>without the forms fields and such. Appretiate it.
>
>Thanks
>Joe
>
>
>--- Original Message ---
>Sharon DiOrio <[EMAIL PROTECTED]> Wrote on 
>Fri, 28 Apr 2000 10:50:04 -0400
> -- 
>You can use  and WDDX to query other sites, provided
>the other site
>is cooperating.  Otherwise you're stuck with querying the site
>and parsing
>out all of the extraneous page information.  A tedious process
>at best.
>
>Sharon
>
>At 09:30 AM 4/25/2000 -0700, [EMAIL PROTECTED] wrote:
>>
>>Hello all,
>>  I am Wondering whether is possible to use 
>>Cfhttp and Wddx to query other sites for information and return
>>back just the results rather than site2's entire page. How do
>>i know whether site2 allows use of Method="Post" of Cfhttp,
>How
>>can i achive this??
>>Thank inadvance.
>>
>>Appretiate it
>>Joe
>
>--
>Archives: http://www.eGroups.com/list/cf-talk
>To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
>or send a message to [EMAIL PROTECTED] with 'unsubscribe'
>in the body.
>
>
>
>-
>Sent using MailStart.com ( http://MailStart.Com/welcome.html )
>The FREE way to access your mailbox via any web browser, anywhere!
>
>--
>Archives: http://www.eGroups.com/list/cf-talk
>To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or 
>send a message to [EMAIL PROTECTED] with 'unsubscribe' in 
>the body.


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Browse to a directory

2000-04-28 Thread Jennifer Larkin

Russel Madere wrote:
> 
> How can I browse to a directory and pass that up to the server in a form?
> 
> My boss wants to allow my users to use a form field to select a download
> directory that is passed back to the server.  The reason for this is that we
> want to use Cold Fusion to store the user's preferences that are client
> independant.  If the user uses Netscape or IE to register and then fires up
> Opera to actually use the site, I want the download directory to be passed
> back to the new client.

I think I may actually know how to do this and when I tell you how, you
will probably laugh. Make a form just like you wanted to get a file and
then get rid of the enc-type setting. I vaguely remember that when I
couldn't figure out how to get a file to upload that I was getting the
directory path to the file. I think it included the filename too though.
I make no promises about this. I fixed the problem a year ago and never
had it since.
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Technical Documentation

2000-04-28 Thread Owens, Howard


Generally, on the admin side of the application, I provide fairly detailed
instructions on how to do each step. Personally, I find it easier to have
what a certain function does explained to me right on that screen, so that's
what I provide to the client.  Since the admin pages don't need to be
pretty, that's easy to get away with.  I also sit down with the client (or
whomever will be doing the admin) and give him or her a hands-on tutorial. I
think make myself available as a "help desk/support" resource.

H.


=
Howard Owens
Web Producer
InsideVC.com
mailto:[EMAIL PROTECTED]
=



> From: "Erika Foster" <[EMAIL PROTECTED]>
> Reply-To: [EMAIL PROTECTED]
> To: <[EMAIL PROTECTED]>
> Subject: Re: Technical Documentation
> Date: Fri, 28 Apr 2000 07:53:11 -0700
> 
> I'm interested in knowing what kind of documentation everyone provides
> their
> clients as well since I'm delivering my first product on Monday morning.
> Since no one has replied to this post, I'm wondering if anyone PROVIDES
> documentation??
> 
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Integrating coldfusion with MS word

2000-04-28 Thread Alex Skinner

This is a multi-part message in MIME format.

--=_NextPart_000_0168_01BFB13A.FB520820
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

How can you integrate MS word with coldfusion

Id like to be able to click a hyper link, to launch msword in the =
browser with data pulled in from a CF source

can it be done?

I found an example using RTF on the coldcuts site but every time  run it =
it loads the output in STUDIO?

Many thanks

Alex Skinner

--=_NextPart_000_0168_01BFB13A.FB520820
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable








How can you integrate MS word with=20
coldfusion
 
Id like to be able to click a hyper =
link, to launch=20
msword in the browser with data pulled in from a CF source
 
can it be done?
 
I found an example using RTF on the =
coldcuts site=20
but every time  run it it loads the output in STUDIO?
 
Many thanks
 
Alex Skinner

--=_NextPart_000_0168_01BFB13A.FB520820--

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Application locking

2000-04-28 Thread Ian

I understand why it is important to lock session variables but I don't
understand why it is important to lock application variables, especially when
they are the same for everyone. Basically, I only use application variables to
name my db information (db source, username, password, etc).

Why would I need to lock all of my queries?

Ian


Get your own FREE, personal Netscape WebMail account today at 
http://webmail.netscape.com.
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebarRsts&bodyRsts/cf_talk or send a message 
to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Apache + Win2000 + Cold Fusion Server = 99% System Resources

2000-04-28 Thread Jonathan McGuire

I'm having the same problem on NT4.0 w/ IIS 4.0 and CF 4.5a.
99% within 1 day of startup hogged permanently by the cf service.

Jonathan McGuire

- Original Message -
From: "Ryan Shrout" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, April 27, 2000 3:37 PM
Subject: Re: Apache + Win2000 + Cold Fusion Server = 99% System Resources


The process is Apache I believe.

Ryan Shrout
Production Manager
AthlonMB.com
http://www.athlonmb.com/
[EMAIL PROTECTED]
- Original Message -
From: "Raley, Scott M (MIL)" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, April 27, 2000 3:33 PM
Subject: RE: Apache + Win2000 + Cold Fusion Server = 99% System Resources


> Have you looked to see what is taking up the resources? Which process is
it?
> I've had this happen and it was a process called svchost.exe  which seems
to
> be linked to COM.
> I'm running the latest win2k, apached and CF Server and it still happens.
>
> -Original Message-
> From: Ryan Shrout [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, April 27, 2000 3:05 PM
> To: [EMAIL PROTECTED]
> Subject: Apache + Win2000 + Cold Fusion Server = 99% System Resources
>
>
> This is a multi-part message in MIME format.
>
> --=_NextPart_000_0015_01BFB05A.55AFE800
> Content-Type: text/plain;
> charset="iso-8859-1"
> Content-Transfer-Encoding: quoted-printable
>
> The title pretty much sums it up.  Does anyone know why it does this, or =
> if their is a fix.  It bogs the system down so that simply clicking on =
> the My Computer icon can take 30 seconds to load.
>
> And there is not much traffic on the server, and with 128 MB of RAM and =
> a Celeron 500 running it, it should do better.
>
> Ryan Shrout
> Production Manager
> AthlonMB.com
> http://www.athlonmb.com/
> [EMAIL PROTECTED]
>
> --=_NextPart_000_0015_01BFB05A.55AFE800
> Content-Type: text/html;
> charset="iso-8859-1"
> Content-Transfer-Encoding: quoted-printable
>
> 
> 
>  http-equiv=3DContent-Type>
> 
> 
> 
> 
> 
> The title pretty much sums it up.  Does anyone know why it does =
> this, or=20
> if their is a fix.  It bogs the system down so that simply clicking =
> on the=20
> My Computer icon can take 30 seconds to load.
> And there is not much traffic on the server, and with 128 MB of RAM =
> and a=20
> Celeron 500 running it, it should do better.
> Ryan ShroutProduction=20
> ManagerAthlonMB.com href=3D"http://www.athlonmb.com/">http://www.athlonmb.com/ href=3D"mailto:[EMAIL PROTECTED]">[EMAIL PROTECTED] >
>
> --=_NextPart_000_0015_01BFB05A.55AFE800--
>
> --
--
> --
> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
> --

> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
>
>


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: CF & VFP & ODBC

2000-04-28 Thread Terry Riley

In-Reply-To: <009c01bfb11f$e7da2900$6701a8c0@CINEHUB>

Provided there are no more than 24 numbers in each 'or 
delid in ()', irrespective of their individual sizes ( ie 
single, double or triple integer), I get the data returned. As 
said earlier, stick in a 25th number and it falls over even 
in the 'OR', or any other 'OR' I care to tag onto it!

Problem is that the 'IN (...)' is a ValueList from a previous 
Verity search, and putting  statements (plus the 
calculations of how many you've included/left, is gonna be a 
nightmare. This doesn't happen in Access !


=== original message ===

Hi what happens with

 SELECT * from delegate
 where delid in  
(101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,1
 16,117,118,119,120,121,122,123,124)
or delid in
 (xxx,xxx,xxx)
etc
===


Cheers
Terry Riley
Riley Varea Associates, London, UK 

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: strip carriage returns

2000-04-28 Thread Doug Ford

Jason,

I am not sure if someone has responded to you, but I worked on a problem
like this a while ago.  To the list please correct me if I am wrong on
some ASC numbers.

When you strip carriage returns,  I think you are only removing
the ASC(13) code.. but what you really need to do is to remove
both ASC(13) and ASC(10).. which is your line feed.

If you do that then you should be ok.  It worked for me.
And it took me a while to figure out what the heck was going on!

HTH

Doug


-Original Message-
From:   Jason Zimmerman [SMTP:[EMAIL PROTECTED]]
Sent:   Thursday, April 27, 2000 5:10 PM
To: Cf-Talk (E-mail)
Subject:strip carriage returns

I am collecting data in a textarea and then trying to strip out carriage
returns. I have tried StripCR(String) and Trim(String) and neither of them
work. Any ideas why??
  
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=list  
s&body=lists/cf_talk or send a message to [EMAIL PROTECTED] 
with 'unsubscribe' in the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: CF 4.51 vs AOL

2000-04-28 Thread Larry W. Virden

From: "Tara Riley" <[EMAIL PROTECTED]>

> Does anyone know of any issues or problems with CF 4.51 and AOL users??

Remember that, in general, users don't see ColdFusion - they see HTML.
If you have users that are having problems accessing your pages, it is
more likely to be that the HTML you are generating is incompatible with their
browsers, or perhaps a problem with a proxy they are running, or a
bug in your application, than it is to be a problem with ColdFusion.  Doesn't
guarantee there isn't some strange interaction - but that's a good starting
premise.

Could you provide a bit more detail as to the kinds of issues or problems
concerning you?
-- 
Larry W. Virden 
http://www.purl.org/NET/lvirden/>
Unless explicitly stated to the contrary, nothing in this posting should 
be construed as representing my employer's opinions.
-><-
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Web-Trends and CF: Automation of statistic processes possible ?

2000-04-28 Thread cftalk

Hi list,
we are using Web-Trends on our WWW-Server successfully. We ar e now
searching for a tool, that does kind of automize the making of the
log-file-statistic-analysing and writing it in an Excel or Access-DB. I know
it can be done manually but I wonder if there is a certain app. or custom
tag helping out here in an automatic way since the process of creating the
data is the same every month. If the data is transfered to MS-Access I can
easily create together with CF nice outputs.

Ideas for this issue ?

Uwe






--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



CF on ASPToday - eh yesterday....

2000-04-28 Thread Justin MacCarthy

A nice article on CF at 

http://www.ASPToday.com/articles/2427.htm


Some interesting quotes...
"...it has been shown to be a scalable, cross-platform solution for Web
developers"
"... a fully featured server-side scripting language, with functionality as
robust and rich as that offered by VBScript running in ASP"
"...considered to be highly optimized in terms of processing time"

 I like it !!! 

~Justin MacCarthy
~Irish CF Head



--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



licencing code

2000-04-28 Thread Jason Egan

What is entailed in licensing your code?  I have a job that unlicensed code
becomes their property – there are some of our code that we don’t want them
to have ---???

-je


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



which is faster?

2000-04-28 Thread JM

This is a multi-part message in MIME format.

--=_NextPart_000_0110_01BFB109.E4E99AC0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

>From my understanding of Java Servlets and EJB, in a production =
environment if you were to stress test a exact same application written =
for both JRUN and ColdFusion, the JRUN app would run faster.=20

My reasoning behind this is because with server side java the code is =
compiled whereas with ColdFusion it needs to be interpreted by the =
application server.=20

Are my conclusions correct?

Thanks,

Jack

--=_NextPart_000_0110_01BFB109.E4E99AC0
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable









From my understanding of Java Servlets =
and EJB, in=20
a production environment if you were to stress test a exact same =
application=20
written for both JRUN and ColdFusion, the JRUN app would run faster.=20

 
My reasoning behind this is because =
with server=20
side java the code is compiled whereas with ColdFusion it needs to be=20
interpreted by the application server. 
 
Are my conclusions =
correct?
 
Thanks,
 
Jack

--=_NextPart_000_0110_01BFB109.E4E99AC0--

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Styles

2000-04-28 Thread Tiberiu Vasilica

How I can modify the height of an input text box? I want to make smaller,
like FrontPage does...
I try various styles but it looks the same...

Tibbs


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Distinct Help

2000-04-28 Thread PC

Doesn't seem to be exactly -- what I want is to return all the rows from the
member table, but exclude rows which have the same UserID. I think I was
misleading in the example using "UserName" ... a better example would be
where a 'comments' column exists and a single user could have made multiple
comments ...

So a query would return:
UserID  Comment
1Hello
2Goodbye

from:

UserID  Comment
1Hello
2Goodbye
1I agree
1No way

It is the syntax for this query that I can't get right 
THX
> > How can I return rows without duplicates defined only by a single
column?
> >
> > For example, I want to return rows that have no repeats of a certain
> column.
> >
> > If I use
> >
> > Select DISTINCT UserID from Member
> >
> > it works -- but I want to return more columns ...
> >
> > So when I go
> >
> > Select Distinct UserID, UserName from Member
> >
> > I don't get the filtering of repeat UserIDs that I need.
> >
> > MAke sense? Anyone know the syntax I need??
>
> No it doesn't make sense really. If you have more than one UserName for
each
> UserID, which I assume you do - otherwise the filtering would still be
> working - then if you want a full list of UserNames you're bound to get
> repeated UserID's.
>
> If you want a list of all UserID's that only have one UserName you could
say
>
> SELECT UserID, count(UserName) FROM Member
> GROUP BY UserID
> HAVING count(UserName) =  0
>
> but I'm not sure that's what you want... is it?
>
> Nick de Voil
> De Voil Consulting
> [EMAIL PROTECTED]
> Tel  +44 20 8560 4373

>

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: access to sql server 7

2000-04-28 Thread Dave Wilson

Not only broken image links, but the downlad keeps timing out too...

Does anyone have a copy of the upsizing utility that they could perhaps
email to me off list? Or I could set up an FTP account on one of our
servers.

Cheers,
Dave

Dave Wilson
Internet Technology Manager,
BizNet Solutions


Co-Founder CFUG Ireland
http://www.cfug.ie

224, Lisburn Road
Belfast BT9 6GE

Tel: 02890 225 776
Fax: 02890 223 223
web: http://www.biznet-solutions.com

email: [EMAIL PROTECTED]
- Original Message -
From: Sean Renet <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, April 28, 2000 8:40 AM
Subject: Re: access to sql server 7


> nice broken images on that link :-)
>
> - Original Message -
> From: "Fred Sanders" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Tuesday, April 25, 2000 11:27 AM
> Subject: Re: access to sql server 7
>
>
> > http://www.ukaug.co.uk/downloads/v8downloads.htm
> >
> > - Original Message -
> > From: "Won Lee" <[EMAIL PROTECTED]>
> > Newsgroups: cf-talk
> > To: <[EMAIL PROTECTED]>
> > Sent: Friday, April 21, 2000 2:04 PM
> > Subject: access to sql server 7
> >
> >
> > > I can't seem to find the SQL server upsizing window on microsoft.com
> > >
> > > anyone have the specific link to it?
> >
>
> --
> > 
> > > Archives: http://www.eGroups.com/list/cf-talk
> > > To Unsubscribe visit
> > http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
or
> > send a message to [EMAIL PROTECTED] with 'unsubscribe'
in
> > the body.
> >
>
> --
> 
> > Archives: http://www.eGroups.com/list/cf-talk
> > To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
> >
>
>
> --

> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
>

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Translation Concept

2000-04-28 Thread AOusterhou

Order this book from Amazon or your favorite bookstore.  It is the bible on 
how to get done right what you want to do.  I did this for GE and it is a 
none-trivial problem.  If it is set up incorrectly, it will cost HUGE bucks 
to maintain.  Programming for the World : A Guide to Internationalization 
will take you through the road blocks.

Here is the Amazon link:

http://www.amazon.com/exec/obidos/ASIN/0137221908/o/qid=956936746/sr=2-1/103-8
426695-2747846

Regards,
Andy
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Certification is BS

2000-04-28 Thread John Morgan


>... I would put 0 value on some yahoo C++
>certification that every joe can get.

You can get Yahoo certification? :)
What about AltaVista and Lycos?   :)

-John-


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: which is faster?

2000-04-28 Thread Steve Reich

Once the bean is compiled, Java is faster, hands down. We are doing some
stuff with EJB's and I can't even believe how fast it will execute a query.
In my opinion, as far as speed goes, there is no comparison. They aren't
even close. Of course you'll have to pay the price (java programmers) for
the java solution.

-Original Message-
From: JM [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 28, 2000 10:58 AM
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: which is faster?


This is a multi-part message in MIME format.

--=_NextPart_000_00C3_01BFB100.9B4D1620
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

>From my understanding of Java Servlets and EJB, in a production =
environment if you were to stress test a exact same application written =
for both JRUN and ColdFusion, the JRUN app would run faster.=20

My reasoning behind this is because with server side java the code is =
compiled whereas with ColdFusion it needs to be interpreted by the =
application server.=20

Are my conclusions correct?

Thanks,

Jack

--=_NextPart_000_00C3_01BFB100.9B4D1620
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable








From my understanding of Java Servlets =
and EJB, in=20
a production environment if you were to stress test a exact same =
application=20
written for both JRUN and ColdFusion, the JRUN app would run faster.=20

 
My reasoning behind this is because =
with server=20
side java the code is compiled whereas with ColdFusion it needs to be=20
interpreted by the application server. 
 
Are my conclusions =
correct?
 
Thanks,
 
Jack

--=_NextPart_000_00C3_01BFB100.9B4D1620--


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: CFHttp and Wddx posting for results only???

2000-04-28 Thread AOusterhou

Sharon:

How do you design sites that are XML/Wddx Friendly?  Do you have someplace I 
can go to read about this?

Andy
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Re: CFHttp and Wddx posting for results only???

2000-04-28 Thread Joeug



Thanks Sharon,
  How do i parse the page returned back(ie
#cfhttp.filecontent#)
to get only the results of the query.
I would like to know, how can one Parse the info from a page
without the forms fields and such. Appretiate it.

Thanks
Joe


--- Original Message ---
Sharon DiOrio <[EMAIL PROTECTED]> Wrote on 
Fri, 28 Apr 2000 10:50:04 -0400
 -- 
You can use  and WDDX to query other sites, provided
the other site
is cooperating.  Otherwise you're stuck with querying the site
and parsing
out all of the extraneous page information.  A tedious process
at best.

Sharon

At 09:30 AM 4/25/2000 -0700, [EMAIL PROTECTED] wrote:
>
>Hello all,
>  I am Wondering whether is possible to use 
>Cfhttp and Wddx to query other sites for information and return
>back just the results rather than site2's entire page. How do
>i know whether site2 allows use of Method="Post" of Cfhttp,
How
>can i achive this??
>Thank inadvance.
>
>Appretiate it
>Joe

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
or send a message to [EMAIL PROTECTED] with 'unsubscribe'
in the body.



-
Sent using MailStart.com ( http://MailStart.Com/welcome.html )
The FREE way to access your mailbox via any web browser, anywhere!

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: CF Authentication

2000-04-28 Thread paul smith

Check out the CF tags in Allaire's Tag Gallery.

best,  paul


At 10:09 AM 4/28/00 -0400, you wrote:
>Hello,
>
>Anyone has information, references on what is the best way to authenticate
>users.  Should I authenticate using NFS Security (IIS), use MS SQL's
>authentication, or just create one from scratch... Pros/Cons???
>
>Thank you for your response.
>
>Percy  E Perez
>
>--
>Archives: http://www.eGroups.com/list/cf-talk
>To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or 
>send a message to [EMAIL PROTECTED] with 'unsubscribe' in 
>the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: File Attachment

2000-04-28 Thread Gregory Weiss

Yes,

This is true.  Whenever an attachment is called into an email, a temporary
file is created that is your attachment, and that file is then attached to
your outgoing email.  Thus, the specific call "C:\'Anything'" won't work.  I
use inFusion Mail Server, so I don't know exactly how the MIMEATTACH
attribute works (Ie:  What you should do to rectify your problem), but now
you have some more information with which to come up with a solution.

Hope this helps.

Greg

-Original Message-
From: david [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 27, 2000 9:51 AM
To: [EMAIL PROTECTED]
Subject:  File Attachment


I created a simple email form which includes an .  When I submit the form I receive an error stating:

MIMEATTACH

  An invalid file name (C:\test.txt) was specified in the MIMEATTACH
attribute. Please verify that this file exists and that the ColdFusion
service has the privileges required to access it.


My host tech support states that file attachments must be temporarily
located on the server to send via an email attachment.


Is this true?  Does someone have experience with email MIMEATTACH?



david




--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Technical Documentation

2000-04-28 Thread Eric Dawson

hmmm. not me.

From: "Erika Foster" <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
To: <[EMAIL PROTECTED]>
Subject: Re: Technical Documentation
Date: Fri, 28 Apr 2000 07:53:11 -0700

I'm interested in knowing what kind of documentation everyone provides their
clients as well since I'm delivering my first product on Monday morning.
Since no one has replied to this post, I'm wondering if anyone PROVIDES
documentation??

Erika

- Original Message -
From: "Jennifer" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, April 27, 2000 2:39 PM
Subject: OT: Technical Documentation


 > We have just produced some printed technical documentation on one of our
 > ColdFusion sites. The client isn't happy with the documentation "because
it
 > doesn't have any code in it." It actually does have some code in it, but
 > only the default settings for the Application.cfm files for the live and
 > testing servers (the file contains the application variables containing
the
 > live or testing database names, as appropriate). They have all of the 
site
 > code available to them, since none of the code is encrypted.
 >
 > We aren't aware of any "standard" for printed technical documentation for
 > web sites. If any of you supply printed technical documentation for your
CF
 > web sites, would you please give me a description of what information you
 > include? Thanks!
 >
 > 
--

 > Archives: http://www.eGroups.com/list/cf-talk
 > To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or 
send a message to [EMAIL PROTECTED] with 'unsubscribe' in 
the body.


Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: hex values

2000-04-28 Thread Dick Applebaum


That's a FS character (Field Separator)

here they alll are


http://callisto.uwinnipeg.ca/~ppawlacz/



At 10:23 AM -0400 4/28/2000, Jason Egan wrote:
>I am trying to create a packet – just a regular fixed filed text file, the
>specs require the fields to be delimited by a ‘0x1C’ --- I guess that is a
>hex value – that I am sure of.  Is it the equivalent of ASCII value 28?
>
>Anyone know? Any pointers on where to find ASCII to hex conversions?
>
>Thanks!
>je
>
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebarRsts&bodyRsts/cf_talk or send a message 
to [EMAIL PROTECTED] with 'unsubscribe' in the body.



My first VTM! fusebox single table administration wizard

2000-04-28 Thread Eric Dawson

My first VTM! fusebox single table administration wizard

Anybody want to try it out for me and make some recommendations on 
improvement in style and coding. or just use it.

It creates a fusebox style (or at least my take of fusebox) application to 
add edit delete records from a single database table.

Based on Record Wizard. And I use somebody's cf_easydate tag.

I think it is still a little buggy. but i am note how to handle field 
validation etc. ie must have value. right now it crashes if there is a field 
empty that needs to be there. ultimately I would guess you would need to 
generate the field validation. but hey it is my first kick at the cat.

Does anyone already have one of these?

Eric

Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Preselect option in

2000-04-28 Thread Joeug



 the selection and return the variable on the link
or you could use history.back() function of the browser, so you
dont loose the selection.

Selected>
#query.value#


--- Original Message ---
"Tiberiu Vasilica" <[EMAIL PROTECTED]> Wrote on 
Fri, 28 Apr 2000 12:19:15 +0300
 -- 
This is a multi-part message in MIME format.

--=_NextPart_000_0029_01BFB10B.F7FCCE00
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

Hello all,

How I can preselect an option so when the user comes back to
the =
selection page to find his last selection in a list form?

Thank you
Tibbs

  
   
#SupportName#
   
  

--=_NextPart_000_0029_01BFB10B.F7FCCE00
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable








Hello all,
 
How I can preselect an option
so when =
the user=20
comes back to the selection page to find his last selection in
a list=20
form?
 
Thank you
Tibbs
 
 #SupportName# 

--=_NextPart_000_0029_01BFB10B.F7FCCE00--

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
or send a message to [EMAIL PROTECTED] with 'unsubscribe'
in the body.



-
Sent using MailStart.com ( http://MailStart.Com/welcome.html )
The FREE way to access your mailbox via any web browser, anywhere!

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Technical Documentation

2000-04-28 Thread David L. Rice

"Technical documentation" is a subjective thing in most web development
houses I've worked for. However, in my opinion, the need for and content of
technical documentation (part of the "deliverables", as referred to by some
people) needs to be part of the initial design, planning and discovery stage
for any given project. The scope of technical docs varies from project to
project and from developer to client as well. I have done projects where a
readme.txt file was all the customer required. On the other hand, I have
done projects where the technical documentation contained massive amounts of
instructions [user's manual], code, screen captures of individual screens,
etc. Also, keep in mind that a consistent comments policy within the code
templates can help to cut down on the amount of technical documentation as
well.

I don't mean to be vague with my answer but I don't think a question like
this can be answered in a definitive manner as each job/project/customer
comes with its own needs and requirements in my experience. I suppose the
main thing to keep in mind is how the contract is written. If the client
will end up owning the codebase and all the work, they may want more
in-depth documentation. If, on the other hand, the developer retains
ownership of the codebase and is only licensing it to a specific client,
there is less need of this kind of in-depth documentation.

Cheers,
--
David L. Rice
Web Development Consultant
[EMAIL PROTECTED]
Q: 177820
24/7 cell: 770.354.5953


> -Original Message-
> From: Erika Foster [mailto:[EMAIL PROTECTED]]
> Sent: Friday, April 28, 2000 10:53 AM
> To: [EMAIL PROTECTED]
> Subject: Re: Technical Documentation
>
>
> I'm interested in knowing what kind of documentation everyone
> provides their
> clients as well since I'm delivering my first product on
> Monday morning.
> Since no one has replied to this post, I'm wondering if
> anyone PROVIDES
> documentation??
>
> Erika
>

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: hex values

2000-04-28 Thread Jason Egan

SEAN,
Thank you! What a relief I wasn't sure... thanks for the confirmation!


Jason Egan
Konnections, INC.

-Original Message-
From: Sean Daniels [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 28, 2000 10:48 AM
To: [EMAIL PROTECTED]
Subject: RE: hex values

> I am trying to create a packet - just a regular fixed filed text file, the
> specs require the fields to be delimited by a '0x1C' --- I guess that is a
> hex value - that I am sure of.  Is it the equivalent of ASCII value 28?
>
> Anyone know? Any pointers on where to find ASCII to hex conversions?

I have a Java book with conversions in the appendix and you are correct.
0x1C is ASCII 28.


- Sean


Sean Daniels
Manager, Engineering
DealStream.com
[EMAIL PROTECTED]
http://www.dealstream.com

tel: 207.439.6030
cel: 978.764.0779




--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



CFPOP Attachments Error

2000-04-28 Thread Nathaniel Plane

Hi.

While working with CFPOP, i encountered an error when trying to use
attachments, the server throws back an error..

Error Diagnostic Information
unknown exception condition

unknown error while executing a tag

This ONLY happens when specifying an attachment path.. The path is valid,
ive tried local directories and virtual directories with full control
security for Everyone.  Its unpredictable, it runs fine at times, others it
dies, but when it does throw this error its impossible to make it stop..
Perhaps a single Attachment is killing it? Also, it seems to crash MORE when
toggling the "Generate Unique Filenames". Any help on this subject would be
GREATLY apretiated.

--
Nathaniel Plane
Web Developer
STONEAGE.COM
Email: [EMAIL PROTECTED]
Voice: (877)544-2336
http://www.stoneage.com

"A feature is a bug with seniority."
--

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



No Subject

2000-04-28 Thread Tara Riley

This is a multi-part message in MIME format.

--=_NextPart_000_000F_01BFB101.5BF8D120
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit

Does anyone know of any issues or problems with CF 4.51 and AOL users??

--=_NextPart_000_000F_01BFB101.5BF8D120
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable






Does =
anyone know of=20
any issues or problems with CF 4.51 and AOL=20
users??

--=_NextPart_000_000F_01BFB101.5BF8D120--

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Translation Concept

2000-04-28 Thread Chris Getner

This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.

--_=_NextPart_001_01BFB122.2CC58F94
Content-Type: text/plain;
charset="iso-8859-1"

I need to translate a site into multiple languages. I have been thinking
about taking all the static text and putting each block into separate text
files and then cfincluding them into each page. This way I can handover the
text files to one or more translators, and several languages done quickly.
My question is whether a large number of includes (probably 2 or 3 on every
page) will be a significant performance penalty? Anyone else have a better
multi-language strategy?
Thanks,
Chris Getner

--_=_NextPart_001_01BFB122.2CC58F94
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable






Translation Concept



I need to translate a site into multiple languages. I =
have been thinking about taking all the static text and putting each =
block into separate text files and then cfincluding them into each =
page. This way I can handover the text files to one or more =
translators, and several languages done quickly. My question is whether =
a large number of includes (probably 2 or 3 on every page) will be a =
significant performance penalty? Anyone else have a better =
multi-language strategy?

Thanks,
Chris Getner




--_=_NextPart_001_01BFB122.2CC58F94--
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: CF & VFP & ODBC

2000-04-28 Thread Larry Meadors

I had the same problem - 25 items was as far as I could go. 

If you're comfortable with VFP, you might consider creating a com object to get the 
data you want. If you choose that route, make sure you use VFP6 since it handles 
threads better...

Larry

>>> [EMAIL PROTECTED] 04/28/00 08:22AM >>>
Just had a very strange thing happen (repeatable):

Using a Visual FoxPro free table (delegate.dbf), CF4.01 and 
the latest MDAC2.1 drivers, asking CFAS to perform:

SELECT * from delegate 
where delid in 
(101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,1
16,117,118,119,120,121,122,123,124)

works fine, and gives me the results. If I add another number 
to the IN list, making 25 list items, it falls over with the 
message:

[Microsoft][ODBC Visual FoxPro Driver] SQL expression is too 
complex

It doesn't depend on the total length of the list (I tried it 
with '1,2,3,4 etc' with the same results on 24/25 numbers.

Thought maybe it was corrupted drivers, so reinstalled MDAC2.1 
- no difference. Downloaded MDAC2.5 (which includes a newer 
vfpodbc.dll), installed, still the same.

Using the same query natively in VFP does what it is supposed 
to do (and quickly), having no problem handling 350+ numbers 
in the list.

I can't see what can possibly be wrong, except the driver 
can't handle it. 
Surely I'm not the only one out there who's using this 
combination (VFP and CF)?

Has anyone else seen this, got a workaround, or care to try 
something similar on their machine to see if you can reproduce 
it?

Thanks in advance for any pointers/corroboration before I try 
to point this out as a bug..


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebarRsts&bodyRsts/cf_talk or send a message 
to [EMAIL PROTECTED] with 'unsubscribe' in the body.



  1   2   >