Re: CFTREE or Javascript?

2000-04-18 Thread Seth Petry-Johnson

Netscape has some JavaScript Tree libraries that work on IE4+ and NS4+ in
their Developer Zone (http://developer.netscape.com) It will require quit a
bit of manipulating to get the queries work, but it's possible.


Don't quote me on this, but I believe that Netscape compliant code to do
this uses layers to accomplish the task.

IE doesn't support layers, and Netscape doesn't support document.all and
changing the "display" parameter, so there would need to be a fair bit of
effort to generate a cross browser script.  I didn't meant to imply that
this couldn't be done with Netscape, just that I had not investigated it
(and that my solution was IE only).

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=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: CFTREE or Javascript?

2000-04-18 Thread David Shadovitz

Actually it ain't that hard at all.
I followed "JavaScript DHTML Collapsible Lists",
http://developer.netscape.com/docs/technote/dynhtml/collapse/index.html

-David

On Tue, 18 Apr 2000 02:06:57 -0400 "Seth Petry-Johnson"
[EMAIL PROTECTED] writes:
 Netscape has some JavaScript Tree libraries that work on IE4+ and 
 NS4+ in
 their Developer Zone (http://developer.netscape.com) It will 
 require quit a
 bit of manipulating to get the queries work, but it's possible.
 
 
 Don't quote me on this, but I believe that Netscape compliant code 
 to do
 this uses layers to accomplish the task.
 
 IE doesn't support layers, and Netscape doesn't support document.all 
 and
 changing the "display" parameter, so there would need to be a fair 
 bit of
 effort to generate a cross browser script.  I didn't meant to imply 
 that
 this couldn't be done with Netscape, just that I had not 
 investigated it
 (and that my solution was IE only).
 
 Regards,
 Seth Petry-Johnson

YOU'RE PAYING TOO MUCH FOR THE INTERNET!
Juno now offers FREE Internet Access!
Try it today - there's no risk!  For your FREE software, visit:
http://dl.www.juno.com/get/tagj.
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: OT JavaScript Question

2000-04-18 Thread Dirk De Bock

Since you're using dynamic pages I would just add
the current template to the href as in location.href =
"index_test.cfm?page=pageyoureon
and then use that param to decide what pages to include in your frame

you could probably even use the cgi_referer in the index.cfm if you don't
like the idea of appending params to your href

 This is the script to jump to the home frames page
 script language="Javascript"
 !--
  if (location.href == top.location.href) {
location.href = "index_test.cfm"
}
  // --
 /script


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



CFSWITCH expressions

2000-04-18 Thread Bud

Howdy all.

Question. Is it possible to write a complex expression, other than
expression = "#variable#"?

In other words, if I had:

cfswitch expression="#query.recordcount#"

cfcase value="1"
Stuff here
/cfcase

Then how would I write a cfcase for value Greater Than 1?

And can you get even more complex, like using multiple variables in
the expression?

"this is #that# and theother is #somethingelse#"

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=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Source Control

2000-04-18 Thread Bill Grover

I figured I would stick my nose in here.  Having not used the Perforce
product I can not speak good or bad about it.

We use Visual Source Safe and have been for about 3 years.  Everything the
other users are saying about perforce can be said about source safe.
Depending your configuration of source safe you can allow multiple people to
checkout the same document.  Then as each person checks the document in
source will compare what is being checked in with what is currently in
source safe.  If you changed a line(s) of code and no one else has then
source safe simply merges your changes automatically.  If however, you
changed some lines and someone else changed the same lines it will show you
the 2 versions and allow you to choose which set of lines to place into
source safe.  Once "merged" you can even tweak the lines to get them into
their final form.

The only restriction on the multiple checkout function is for files that are
binary, for example Word documents, graphics, etc.  In this case since it
doesn't have text to display differences with it will only allow one person
to have them checked out at once.

We have been very happy with source safe.  We have had as many as 6-8
programmers working on 1 project simultaneously merging changes and adding
files without any problems.  We have even taken advantage of going back into
the history and pulling a previous version of a file when someone "screwed
up" the current version.  You can even "pin" versions.  In this case you can
take a specific version of a file and this is the one retrieved whenever you
get latest version.  However, I can have a later version checked out and
working on it.  In this way if you have a routine that is stable and working
you pin that version.  You can then enhance and add functionality to a later
version without worrying about corrupting someone else's application.  This
usefulness comes in to play when you allow multiple projects to share the
same program.

Good luck with your decision!

__
Bill Grover
Supervisor IS DepartmentPhone:  301.424.3300 x396
EU Services, Inc.   FAX:  301.424.3300 x1396#
649 North Horners Lane  E-Mail: mailto:[EMAIL PROTECTED]
Rockville, MD 20850-1299WWW:  www.euservices.com
__


 -Original Message-
--

Date: Mon, 17 Apr 2000 17:30:19 +0100
From: "Reid Philpot" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: RE: Source Control
Message-ID: [EMAIL PROTECTED]

I am that "London Developer" and can't agree more with what Scott has said
(and I'm not saying this just because he's my boss), Perforce is a wonderful
product which has made a potentially difficult situation very easy. Other
great features include being able to skip back to previous changes in the
documents history so you can eradicate any error your boss may have made.
:-)

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



Which is faster: neq '' or len(#v#)?

2000-04-18 Thread Tom Sammons

I know we've determined that cfif not varname is faster than cfif varname is not 
0, etc.,
but is cfif varname is not '' slower than cfif len(varname)?

Tom

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



Was somone looking to hide downloads?

2000-04-18 Thread Todd Ashworth

I thought I read a while back where someone was looking for a way to hide
the actual location of a file that someone could download.

I don't know if their question ever got answered, but there is a tag in
Allaire's Developers Exchange that claims to do this.

http://www.allaire.com/developer/gallery/index.cfm?Objectid=15295

Todd Ashworth



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



RE: CFSWITCH expressions

2000-04-18 Thread Olive, Christopher M Mr USACHPPM

i don't see any problem.  in your switch, include cases you want to handle,
then put a default case for all others.

Chris Olive
DOHRS Website Administrator
[EMAIL PROTECTED]


-Original Message-
From: Bud [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, April 18, 2000 6:51 AM
To: [EMAIL PROTECTED]
Subject: CFSWITCH expressions


Howdy all.

Question. Is it possible to write a complex expression, other than
expression = "#variable#"?

In other words, if I had:

cfswitch expression="#query.recordcount#"

cfcase value="1"
Stuff here
/cfcase

Then how would I write a cfcase for value Greater Than 1?

And can you get even more complex, like using multiple variables in
the expression?

"this is #that# and theother is #somethingelse#"

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=listsbody=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=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: weird CF error or not weird but i have never seen it.

2000-04-18 Thread Sean Daniels

I saw this once. It happened when the name of the first query was the same
as the variable name. Is the name of your first query "project" by any
chance? If so, you are overwriting the variable with the query structure.


- Sean


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

tel: 207.439.6030
cel: 978.764.0779


 -Original Message-
 From: Shawn Regan [mailto:[EMAIL PROTECTED]]
 Sent: Monday, April 17, 2000 6:12 PM
 To: '[EMAIL PROTECTED]'
 Subject: weird CF error or not weird but i have never seen it.



 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_01BFA8B9.E4AB2F60
 Content-Type: text/plain;
   charset="iso-8859-1"

 I have two queries on the same page, both are pulling info by an client_id
 and one other field but on one of the queries i keep getting this error.

 Expression result cannot be converted to a string

 Expressions used inside tags like CFOUTPUT, CFQUERY, CFMAIL, etc. must
 evaluate to a value that can be converted to a string for output
 or dynamic
 text accumulation purposes. Complex objects, such as queries, arrays, and
 COM/DCOM objects, cannot be represented as strings.

 The error occurred while processing an element with a general
 identifier of
 (#project#), occupying document position (16:10) to (16:18).

 The first query has no problem with #project# but the second one does.

 Anyone seen this? Its a Eval version of CF server I'm going to install the
 single user server today.

 Shawn Regan

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

 !DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"
 HTML
 HEAD
 META HTTP-EQUIV=3D"Content-Type" CONTENT=3D"text/html; =
 charset=3Diso-8859-1"
 META NAME=3D"Generator" CONTENT=3D"MS Exchange Server version =
 5.5.2650.12"
 TITLEweird CF error or not weird but i have never seen it./TITLE
 /HEAD
 BODY

 PFONT SIZE=3D2I have two queries on the same page, both are pulling =
 info by an client_id and one other field but on one of the queries i =
 keep getting this error./FONT/P

 PFONT SIZE=3D2Expression result cannot be converted to a =
 string/FONT
 /P

 PFONT SIZE=3D2Expressions used inside tags like CFOUTPUT, CFQUERY, =
 CFMAIL, etc. must evaluate to a value that can be converted to a string =
 for output or dynamic text accumulation purposes. Complex objects, such =
 as queries, arrays, and COM/DCOM objects, cannot be represented as =
 strings./FONT/P

 PFONT SIZE=3D2The error occurred while processing an element with a =
 general identifier of (#project#), occupying document position (16:10) =
 to (16:18)./FONT/P

 PFONT SIZE=3D2The first query has no problem with #project# but the =
 second one does./FONT
 /P

 PFONT SIZE=3D2Anyone seen this? Its a Eval version of CF server I'm =
 going to install the single user server today./FONT
 /P

 PFONT SIZE=3D2Shawn Regan/FONT
 /P

 /BODY
 /HTML
 --_=_NextPart_001_01BFA8B9.E4AB2F60--
 --
 
 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=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=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Was somone looking to hide downloads?

2000-04-18 Thread Brian Mitter

Seems to make use of cfcontent though, not always available to everyone :(

- Original Message -
From: Todd Ashworth [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, April 18, 2000 4:18 PM
Subject: Was somone looking to hide downloads?


 I thought I read a while back where someone was looking for a way to hide
 the actual location of a file that someone could download.

 I don't know if their question ever got answered, but there is a tag in
 Allaire's Developers Exchange that claims to do this.

 http://www.allaire.com/developer/gallery/index.cfm?Objectid=15295

 Todd Ashworth



 --

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



CF Hosting for personal use

2000-04-18 Thread Francisco Montes

Hi folks,

I am looking for a low cost hosting service for a personal site using
ColdFusion (as oppose to business use). Does anybody know about any good
references?

Regards,

Francisco J. Montes-Mantero
Web Developer
QSP Financial Information Systems
[EMAIL PROTECTED]
ICQ: 23816813

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



RE: Source Control

2000-04-18 Thread Duane Boudreau

Bill,

I've been using VSS about 4 years now, pretty much problem free. One of my
only pet peeves is that it doesn't offer a web interface as of 6.0 (without
a third party tool).

I'm interested in how you got pinning to work.  As I understand it pinning
allows you to create a link to a label correct? Unfortunately I have never
been able to successfully get pinning to work. Also do you, or you VSS
admin, run analyze often on your database?

TIA,
Duane



-Original Message-
From: Bill Grover [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, April 18, 2000 7:49 AM
To: '[EMAIL PROTECTED]'
Subject: RE: Source Control


I figured I would stick my nose in here.  Having not used the Perforce
product I can not speak good or bad about it.

We use Visual Source Safe and have been for about 3 years.  Everything the
other users are saying about perforce can be said about source safe.
Depending your configuration of source safe you can allow multiple people to
checkout the same document.  Then as each person checks the document in
source will compare what is being checked in with what is currently in
source safe.  If you changed a line(s) of code and no one else has then
source safe simply merges your changes automatically.  If however, you
changed some lines and someone else changed the same lines it will show you
the 2 versions and allow you to choose which set of lines to place into
source safe.  Once "merged" you can even tweak the lines to get them into
their final form.

The only restriction on the multiple checkout function is for files that are
binary, for example Word documents, graphics, etc.  In this case since it
doesn't have text to display differences with it will only allow one person
to have them checked out at once.

We have been very happy with source safe.  We have had as many as 6-8
programmers working on 1 project simultaneously merging changes and adding
files without any problems.  We have even taken advantage of going back into
the history and pulling a previous version of a file when someone "screwed
up" the current version.  You can even "pin" versions.  In this case you can
take a specific version of a file and this is the one retrieved whenever you
get latest version.  However, I can have a later version checked out and
working on it.  In this way if you have a routine that is stable and working
you pin that version.  You can then enhance and add functionality to a later
version without worrying about corrupting someone else's application.  This
usefulness comes in to play when you allow multiple projects to share the
same program.

Good luck with your decision!

__
Bill Grover
Supervisor IS DepartmentPhone:  301.424.3300 x396
EU Services, Inc.   FAX:  301.424.3300 x1396#
649 North Horners Lane  E-Mail: mailto:[EMAIL PROTECTED]
Rockville, MD 20850-1299WWW:  www.euservices.com
__


 -Original Message-
--

Date: Mon, 17 Apr 2000 17:30:19 +0100
From: "Reid Philpot" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: RE: Source Control
Message-ID: [EMAIL PROTECTED]

I am that "London Developer" and can't agree more with what Scott has said
(and I'm not saying this just because he's my boss), Perforce is a wonderful
product which has made a potentially difficult situation very easy. Other
great features include being able to skip back to previous changes in the
documents history so you can eradicate any error your boss may have made.
:-)

snip

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



RE: Which is faster: neq '' or len(#v#)?

2000-04-18 Thread lsellers



 I know we've determined that cfif not varname is faster than
 cfif varname is not 0, etc.,
 but is cfif varname is not '' slower than cfif len(varname)?

Logically the first should be faster. It only has to do a string compare of
1 character. The len function has to compare for the full length of the
string until it reachs a null.

--min

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



Outlook as a Datasource

2000-04-18 Thread sherry.zeiss

Has anyone had any experience using the Outlook calendar as a datasource for
a CF app?  Is is possible?  


Thanks,
Sherry Zeiss
Infrastructure Support Services

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



Reloading of the field values on add/edit form

2000-04-18 Thread Perez, Bismark

Hello there, 

Sorry if I'm asking a question that have been asked before... I'm new to CF
and was looking for help on how to reload the values of a form once the user
submits it... 

The scenario:
I have a form that I use for add/edit, once the user presses the add/update
bottom, I send it to another template that validates all the require fields,
if one fails the process is redirected to the parent form where the required
field(s) are marked.

The problem:
my problem is that when the parent form is redisplayed all the info that the
user typed disappeared, and the user have to re-enter the info again. I need
to know how to reload all the info previously keyed into the form before
displaying it to the user.

TIA

Bismarck Perez
*1-617-563-2896
* G10H
* [EMAIL PROTECTED]


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



Re: pulling my hair out

2000-04-18 Thread Nick Call

Kris:

The first error is thrown because #getRS.regioncode# is returning a NULL
value.  It must be a number in order for Round() to work.  Wrap this
function in a CFIF to check for a value. Return 0 if it is NULL.  Then
round.

The second one is a bit harder.  Try this syntax.

CFSET RegionData = "Region"  #converter#  "Summary'"


Let me know if you have any other questions.

Good Luck.
Nick Call
[EMAIL PROTECTED]
http://www.accessutah.com



- Original Message -
From: "Kris Seaney" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, April 18, 2000 9:43 AM
Subject: pulling my hair out





 Hi guys and Gals,
 I got hired to come in and take over a major project. I think I got in
a
 wee bit over my head . Here is my first problem, I am getting this error::



 Error Occurred While Processing Request
 Error Diagnostic Information
 Parameter 1 of function Round which is now "" must be a stk_real number

 The error occurred while evaluating the expression:


  converter = "#round(getRS.regioncode)#"




 The error occurred while processing an element with a general identifier
of
 (CFSET), occupying document position (29:1) to (29:47).


 Date/Time: 04/18/00 10:42:41
 Browser: Mozilla/4.0 (compatible; MSIE 5.0; Windows 98; DigExt)
 Remote Address: 127.0.0.1
 HTTP Referer:

http://localhost/WINDOWS/Desktop/work/patient_details.cfm?ID=patientdrg_cat
 egory=05query_drg=138state=AL
 Template: C:\WINDOWS\Desktop\work\patient_subtable1.cfm




 here is the cfset syntax.
 CFSET RegionData = "Region"  "#converter#"  "Summary"
 CFSET StateData = "Region"  "#converter#"  "StateSummary"
 CFSET HospData = "Region"  "#converter#"  "Hospitals"



 any ideas on where to start?


 thanks
 Kris Seaney


 --

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



Re: hugely OT: 4th of july

2000-04-18 Thread Tinh Tran


--9982A1C8660D1BDFDF2A1FA3
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

Check this out http://www.party411.com/

Tinh Tran
Event411.com

Paul Hastings wrote:

 pardon the intrusion, but are there any ex-pat americans
 on this list who are organizing to celebrate the 4th of july
  have a website? if so, would you please contact me
 off list. thanks  again beg pardon for this way off  topic
 post.

 
 Paul Hastings   [EMAIL PROTECTED]
 Director  Environmental Information Center
Thailand Environment Institute
 Member  Team Allaire
 http://www.tei.or.th/eic ---

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

--9982A1C8660D1BDFDF2A1FA3
Content-Type: text/html; charset=us-ascii
Content-Transfer-Encoding: 7bit

!doctype html public "-//w3c//dtd html 4.0 transitional//en"
html
Check this out A HREF="http://www.party411.com/"http://www.party411.com//A
pTinh Tran
brEvent411.com
pPaul Hastings wrote:
blockquote TYPE=CITEpardon the intrusion, but are there any ex-pat americans
bron this list who are organizing to celebrate the 4th of july
bramp; have a website? if so, would you please contact me
broff list. thanks amp; again beg pardon for this way offnbsp; topic
brpost.
p
brPaul Hastingsnbsp;nbsp;nbsp;nbsp;nbsp;nbsp; [EMAIL PROTECTED]
brDirectornbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;
Environmental Information Center
brnbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;
Thailand Environment Institute
brMembernbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;
Team Allaire
bra href="http://www.tei.or.th/eic"http://www.tei.or.th/eic/a 
---
p--
brArchives: a 
href="http://www.eGroups.com/list/cf-talk"http://www.eGroups.com/list/cf-talk/a
brTo Unsubscribe visit a 
href="http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk"http://www.houseoffusion.com/index.cfm?sidebar=listsamp;body=lists/cf_talk/a
or send a message to [EMAIL PROTECTED] with 'unsubscribe'
in the body./blockquote
/html

--9982A1C8660D1BDFDF2A1FA3--


__
Do You Yahoo!?
Talk to your friends online 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=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Creating lists from excel file

2000-04-18 Thread Jeff Green


Hi all

Im looking to populate my db from an excel spreadsheet. I think I have an
idea of how to do it.  But Im sure there are some dos and donts that I not
aware of.  So any comments are appreciated and thank you for taking the time
to look it over.

Im figuring my spread sheet would be set up just like the table rows.

Export in a delimited text file.  Is tab delimited good?

Read with CFFILE, now I have my list of data in a varible.  When using the
list functions to get data from the list, will I use the Chr() function to
specify the tab as the delimiter? (what is the ASCII value for a tab?)

Im figuring tab is a good delimiter because the some of the data in the list
are strings so I want to allow commas and quotes and things.

Thanks again,
Jeff


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



RE: Creating lists from excel file

2000-04-18 Thread David L. Rice

You could do it that way. You might also wish to investigate CFGRID.

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

"Making the simple complicated is commonplace; making the complicated
simple, awesomely simple, that's creativity".
--Charles Mingus... I stole this tag line somewhere, just can't remember
where... ;)
-

 -Original Message-
 From: Jeff Green [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, April 18, 2000 12:53 PM
 To: [EMAIL PROTECTED]
 Subject: Creating lists from excel file



 Hi all

 Im looking to populate my db from an excel spreadsheet. I
 think I have an
 idea of how to do it.  But Im sure there are some dos and
 donts that I not
 aware of.  So any comments are appreciated and thank you for
 taking the time
 to look it over.

 Im figuring my spread sheet would be set up just like the table rows.

 Export in a delimited text file.  Is tab delimited good?

 Read with CFFILE, now I have my list of data in a varible.
 When using the
 list functions to get data from the list, will I use the
 Chr() function to
 specify the tab as the delimiter? (what is the ASCII value for a tab?)

 Im figuring tab is a good delimiter because the some of the
 data in the list
 are strings so I want to allow commas and quotes and things.

 Thanks again,
 Jeff


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



Using Bit Manipulation Functions

2000-04-18 Thread Ric Smith

Anyone know where I can find some information on the bit
manipulation functions? Besides the Forta books. 

Thanks.

-- Ric Smith  


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



Re: Reading the Type of a Row?

2000-04-18 Thread Urs Nyffenegger



Seth Petry-Johnson wrote:

 I don't know if you can get the info from SQL or not, but I have done
 something like this with great success.

 I created a table with the following fields (well, almost... I've left most
 of the advanced things out... trade secrets and all g)

 .FieldName
 .DataType
 .InputType

Cool!

That's a much better idea then what I intended to do. I will build the whole thing 
like that, but I'm gonna add

.DefaultValues

so I can use SQL or anything to populate a certain field.

Thanks!!
--
urs nyffenegger|   new media developer
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NO INK AG - Ihr Partner für Neue Medien
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
http://www.noink.ch   |  ++41 56 618 30 02


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



RE: Reloading of the field values on add/edit form

2000-04-18 Thread Michael Blair

If they form isn't validated correctly just use the javascript back function
("javascript: history.back()").  This will take them back to where they
were.  The best validation is done on within the same form actually.  Look
at CFFORM instead of Form.  There is already some inherited checking
feature with it and if not you can create your own with Javascript.  This
way your form doesn't have to be processed and the checking is done on the
client side rather than the server side in turn making the user have a
shorter load time


Michael W. Blair

Web Applications Developer
Canyon WebWorks
An Arizona Internet LLC Company
http://www.canyon.net
[EMAIL PROTECTED]
PHONE: (520) 773-9059
FAX:   (520) 773-4945

-Original Message-
From: Perez, Bismark [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, April 18, 2000 8:21 AM
To: '[EMAIL PROTECTED]'
Subject: Reloading of the field values on add/edit form

Hello there,

Sorry if I'm asking a question that have been asked before... I'm new to CF
and was looking for help on how to reload the values of a form once the user
submits it...

The scenario:
I have a form that I use for add/edit, once the user presses the add/update
bottom, I send it to another template that validates all the require fields,
if one fails the process is redirected to the parent form where the required
field(s) are marked.

The problem:
my problem is that when the parent form is redisplayed all the info that the
user typed disappeared, and the user have to re-enter the info again. I need
to know how to reload all the info previously keyed into the form before
displaying it to the user.

TIA

Bismarck Perez
*1-617-563-2896
* G10H
* [EMAIL PROTECTED]



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



WOT: IIS Bizarreness

2000-04-18 Thread Sean Daniels

Sorry for the OT post, but I've been searching the M$ knowledge base and am
coming up short for an answer to this one.

I have three separate web sites running on an IIS 4.0 machine (NT 4.0, SP3).
One of the sites simply stopped taking requests last night. The other two
were fine. This machine has been running rock solid for 7 months now, last
reboot was about 2 months ago. The event log revealed nothing and when I
went to the IIS console the service for the particular site in question
appeared to be running. I stopped and started the service and bing the site
was back.

Now, here's the weird part. I checked out the log files to see if I could
figure anything based on that. Lo and behold I find that although I have IIS
set to create a new log file daily, the last log file was for 3/28/2000 and
it was really really large. It appears that every single log entry made
since 9:21:27 on 3/28 was logged to the file with the exact same time stamp!
The log file was 138MB.

So this obviously is a bit strange and probably has something to do with why
the service quit. Has anyone ever heard of this problem? I know I should
prbably upgrade to the latest SP and all, but is this a documented problem?

TIA.

- 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=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Dynamic Image Display, Tables

2000-04-18 Thread Dennis Powers

Seth,

Try specifying the border, spacing and padding attributes in the
tables:

table width="100%" border="0" cellspacing="0" cellpadding="0"
BACKGROUND="#URLPrefix#images/common/redline.gif"

Best Regards,

Dennis Powers
UXB Internet
(203)879-2844
http://www.uxbinfo.com

-Original Message-
From: Curtis Layton [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 17, 2000 3:45 PM
To: [EMAIL PROTECTED]
Subject: Re: Dynamic Image Display, Tables

The Code:

TR
TDOther Content/TD


Here's the red line graphic.

CFOUTPUT

TD WIDTH="100%" BACKGROUND="#URLPrefix#images/common/redline.gif"

TABLE WIDTH="100%" BACKGROUND="#URLPrefix#images/common/redline.gif"
   TR
TD
IMG SRC="#URLPrefix#images/common/space.gif" WIDTH="1"
HEIGHT="5"nbsp;
/TD
/TR
/TABLE

/TD
 /CFOUTPUT


Supposed to meet with the Header Graphic here..

TD VALIGN="top" ALIGN="right"
CFOUTPUT
IMG SRC="#URLPrefix#images/#CurrentDir#/#Topic#-header.gif"
WIDTH="331"
HEIGHT="51"
/CFOUTPUT
/TD


/TR

- Original Message -
From: "Seth Petry-Johnson" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, April 17, 2000 3:28 PM
Subject: Re: Dynamic Image Display, Tables


 This is a multi-part message in MIME format.

 snip
 CFOUTPUT
 TD WIDTH=3D"100%"
BACKGROUND=3D"#URLPrefix#images/common/redline.gif"
TABLE WIDTH=3D"100%" =
 BACKGROUND=3D"#URLPrefix#images/common/redline.gif"
TRTDIMG SRC=3D"#URLPrefix#images/common/space.gif"
WIDTH=3D"1" =
 HEIGHT=3D"5"nbsp;/TD/TR
/TABLE
   /TD
  /CFOUTPUT
 snip

 I don't know about anyone else, but I don't feel like spending the
effort
to
 decipher the actual code from the convoluted mess above.  Could you
please
 re-post the code using PLAIN TEXT rather than HTML formatted email?
Not
 only does the HTML encoding result in the mess you see above but it
also
 wastes bandwidth.

 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=listsbody=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=listsbody=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=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Windows 2000 and Symbolic Links

2000-04-18 Thread Russel Madere

Does anyone know how to set up symbolic links for downloads with Cold Fusion
on an IIS 5/Windows 2000 server?  I need to be able to offer selected files
for downloads, but do not want to point the user to the actual file.

Windows 2K is supposed to support symbolic links.

Russel Madere, Jr.
Web Developer

"Be good and you will be lonesome.
 Be lonesome and you will be free.
 Live a lie and you will live to regret it."
  Jimmy Buffett
  That's What Living Is To Me

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



Re: [Automatically submit?]

2000-04-18 Thread double-down

wheres the code? 
look if there is any javascript that is automatically submitting

aslam bajaria [EMAIL PROTECTED] wrote:
I am looking at some code written by someone else. The
person has not used submit button in some of the
forms. 

Does the form automatically submit if there is no
submit button?

Appreciate.
A.B.

__
Do You Yahoo!?
Send online invitations with Yahoo! Invites.
http://invites.yahoo.com
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in the
body.



Get free email and a permanent address at http://www.netaddress.com/?N=1
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebarRstsbodyRsts/cf_talk or send a message 
to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: newbie wants to pull tag list from allaire

2000-04-18 Thread Joel Firestone

Geo:

I would "assume" they used CFHTTP to read the content in the table on the
Developer's page showing the last 10 submissions. You would read the data,
strip out the excess code, and display the info on your page. But this is my
guess.

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

 I've seen on some CF sites where they've "pulled" Allaire's "Recent
 Additions" top 10 list from the Developer's Exchange...  How is this done?

 TIA
 geo




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



Line Item shipping output in ACB

2000-04-18 Thread Larry Juncker

I have created a Shopping Mall using Able Commerce 2.61. It works great
except that shipping is calculated on the entire basket. I have multiple
sellers in the Mall and therefore need to figure my shipping on a per line
item basis. Has anyone already done this? I know that I have to add a column
to my order Details table, but where do I go to initially find the shipping
amount for each item to send it to this column. The table already holds a
weight value so the calculation is really all that is needed. Any quick help
would be greatly appreciated.


H   Larry Juncker
 L  Senior Cold Fusion Programmer
  I Heartland Communications Group
  Internet Division

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



Re: WOT: IIS Bizarreness

2000-04-18 Thread Jennifer

At 01:38 PM 4/18/00 -0400, you wrote:
So this obviously is a bit strange and probably has something to do with why
the service quit. Has anyone ever heard of this problem? I know I should
prbably upgrade to the latest SP and all, but is this a documented problem?

I don't know much about your problem, but I think the latest NT Service 
Pack breaks some ColdFusion functions. Be careful with what you install. I 
take it you have checked all the server settings against the working servers?
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Errors in Log File

2000-04-18 Thread Sreang Kim

This is a multi-part message in MIME format.

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

I have the following errors in my log files:

Applicaiton Log:

"Error","TID=3D73270352","04/18/100","12:30:30","192.232.120.194, =
Mozilla/4.0 [en] (Win95; I), 'Error attempting to read the content from =
web server '"

Server Log:"Warning","TID=3D73270352","04/18/100","12:30:30","Template: =
/search_results2.cfm, Ran: 20468 seconds."

I noticed that once in a while search_results2.cfm takes long to process =
and then I get these errors.  What could be the reason for this?


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

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
HTMLHEAD
META content=3D"text/html; charset=3Diso-8859-1" =
http-equiv=3DContent-Type
META content=3D"MSHTML 5.00.2919.6307" name=3DGENERATOR
STYLE/STYLE
/HEAD
BODY bgColor=3D#ff
DIVFONT face=3D"Courier New" size=3D2
PFONT face=3DArialI have the following errors in my log =
files:/FONT/P
PFONT face=3DArialApplicaiton Log:/FONT/P
P"Error","TID=3D73270352","04/18/100","12:30:30","192.232.120.194, =
Mozilla/4.0=20
[en] (Win95; I), 'Error attempting to read the content from web server =
'"/P
PServer Log:FONT face=3D"Courier New"=20
size=3D2"Warning","TID=3D73270352","04/18/100","12:30:30","Template:=20
/search_results2.cfm, Ran: 20468 seconds."/P
PFONT face=3DArialI noticed that once in a while search_results2.cfm =
takes=20
long to process and then I get these errors.nbsp; What could be the =
reason for=20
this?/FONT/P/FONT/FONT/DIV/BODY/HTML

--=_NextPart_000_0077_01BFA934.EF628CF0--

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



Which is more secure?

2000-04-18 Thread Robert M. Saxon, Jr.

I have a datasource with a username and password to connect to SQL Server 7
from CF 4.01. Is it more secure to include the username and password as part
of the datasource (in CF Administrator) or to pass it with each cfquery?

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



using CFFILE to save a file directly to a sql database

2000-04-18 Thread Joel Richards

--=_5598966==_.ALT
Content-Type: text/plain; charset="us-ascii"


Is there a way to have CFFILE insert an image file directly into a sql database
rather than save it to a directory?
Thanks
Joel

Joel Richards
Web Developer
Brainstorm Industries
http://www.brainstormin.net/[EMAIL PROTECTED]
--=_5598966==_.ALT
Content-Type: text/html; charset="us-ascii"

htmldivIs there a way to have CFFILE insert an image file directly
into a sql database rather than save it to a directory?/div
divThanks/div
divJoel/div
br

font face="Tahoma"Joel Richardsbr
Web Developerbr
Brainstorm Industriesbr
a href="http://www.brainstormin.net/"[EMAIL PROTECTED]/a/font/html

--=_5598966==_.ALT--

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



CFMAIL HTML Messages

2000-04-18 Thread DSJ

Does anyone know if it is possible to send an HTML message with CFMAIL, and
if so, how?

Thanks!

DSJ

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



Re: CFMAIL HTML Messages

2000-04-18 Thread Brian Peddle


In CFMAIL tag add - type="HTML"

-- Original Message --
From: "DSJ" [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
Date: Tue, 18 Apr 2000 14:04:29 -0600

Does anyone know if it is possible to send an HTML message with CFMAIL, and
if so, how?

Thanks!

DSJ

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



CFM templates not accessible to clients

2000-04-18 Thread Jeffrey G. Brown

Gentlebeings...

Bear with me, please, as I am somewhat new to Coldfusion and NT administration.

I began development of our intranet site in VBScript on IIS 4.0, and then we 
switched to CF. The VBScript site, named cimnet2d, is still online, and all 
users can view it. The new site, named cimnetcf, is totally CFM-based. 
Admin-type users can see it, but not non-admin, ordinary users (hereafter 
referred to as 'Joe User').

The directory trees for each site have exactly the same ACL permissions set 
throughout, and the IIS 4.0 settings are the same. Both directory trees are 
configured for Win NT 4.0 NTLM authentication (no anonymous or basic), and 
have been given Read access throughout to members of the Authenticated Users 
group. I finally realized that Coldfusion itself might have something to do 
with the access problem, and tried an experiment.

A very simple file, containing only HTML (no VBScript or CFM code), named 
'simple.htm' was placed in the cimnet2d home directory ( which has always 
been accessible to Joe User). Log in as Joe User and access it with IE 4.0. 
Result: access good. Rename it to simple.asp: access good. BUT, rename to 
simple.cfm: no access! Same results in the cimnetcf home directory. The 
problem, thus, lies not in the directory permissions for the site or the IIS 
authentication settings, but in access to some Coldfusion resource.

The ACL for the \programs\coldfusion directory tree on the server contains 
only SYSTEM and the Domain Admins group. Adding a user to the Doman Admins 
group gives him access to cimnetcf; not practical for security reasons, 
obviously. Windows NT is running the CF Server under the SYSTEM user.

What resource(s) must I make accessible, and to whom, for the CF site to work 
for all authenticated users? How, in general, can I effectively integrate CF 
with IIS/NT 4.0 security?

Many thanks...

JGB

===
Jeffrey G. Brown Intranet Webmaster
Milacron, Inc.  Voice: 513-841-8655   Fax: 513-841-7345
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Classifieds in CF

2000-04-18 Thread David L. Rice

www.fusionfx.com -- Classifieds, AutoMall and others...

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

"Making the simple complicated is commonplace; making the complicated
simple, awesomely simple, that's creativity".
--Charles Mingus... I stole this tag line somewhere, just can't remember
where... ;)
-

 -Original Message-
 From: Jordie Fike [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, April 18, 2000 3:35 PM
 To: [EMAIL PROTECTED]
 Subject: Classifieds in CF


 Looking for a recommendation for a Classifieds or Auction
 software written
 in CF .. budget is only $400-$600 dollars.
 TIA,

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



Anyone know good Able Commerce hosting company?

2000-04-18 Thread pardeep


Does anyone know of a good Able Commerce hosting vendor?

I am running into too many problems with the current vendor, mapping 
incorrect, e-mail not POP acct not working, etc.
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: using CFFILE to save a file directly to a sql database

2000-04-18 Thread Percy E Perez

Check the tag Gallery in allaire's website.  There is one tag that deals 
with BLOBs.

Percy E Perez



At 01:58 PM 4/18/00 -0600, you wrote:
--=_5598966==_.ALT
Content-Type: text/plain; charset="us-ascii"


Is there a way to have CFFILE insert an image file directly into a sql 
database
rather than save it to a directory?
Thanks
Joel

Joel Richards
Web Developer
Brainstorm Industries
http://www.brainstormin.net/[EMAIL PROTECTED]
--=_5598966==_.ALT
Content-Type: text/html; charset="us-ascii"

Is there a way to have CFFILE insert an image file directly into a sql 
database rather than save it to a directory?
Thanks
Joel

Joel Richards
Web Developer
Brainstorm Industries
http://www.brainstormin.net/[EMAIL PROTECTED]
--=_5598966==_.ALT--

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



A little OT fun... enjoy

2000-04-18 Thread Bill Killillay

What All Those Acronyms Really Mean:

 ISDN = It Still Does Nothing
 APPLE = Arrogance Produces Profit-Losing Entity
 IBM = I Blame Microsoft
 DEC = Do Expect Cuts
 CA = Constant Acquisitions
 CD-ROM = Consumer Device, Rendered Obsolete in Months
 OS/2 = Obsolete Soon, Too.
 SCSI = System Can't See It
 DOS = Defunct Operating System
 BASIC = Bill's Attempt to Seize Industry Control
 WWW = World Wide Wait
 MACINTOSH = Most Applications Crash; If Not, The OS Hangs

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



RE: Which is more secure?

2000-04-18 Thread Jeff Shepler

I don't think it really makes a difference, but if I HAD to choose an
answer, I'd say having them on the pages. Clients can't see either one, so
why does it make a difference?

If you have the account information as part of the datasource, then ANY cf
page that wants to connect to the database can do so. Malicious users could
hack into your system and submit a .cfm page to be executed by your sever,
connect to the database, and do what they want.

If you have the account information as part of the page and NOT the
datasource, then it doesn't matter if they submit a .cfm page to be
executed. They would not be able to connect to the database by just using
the datasource name.

These are just observations as not "real world applications" - I've never
tested it.

-Original Message-
From: Robert M. Saxon, Jr. [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, April 18, 2000 1:54 PM
To: Cf-Talk
Subject: Which is more secure?


I have a datasource with a username and password to connect to SQL Server 7
from CF 4.01. Is it more secure to include the username and password as part
of the datasource (in CF Administrator) or to pass it with each cfquery?


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



RE: Which is more secure?

2000-04-18 Thread Jacob

Jeff as a good point.  But here is my defense passwords set in CF Administrator

1.  We have about 10 html/cold fusion programmers.  Sometimes they do weird 
things which mess up templates.  This is one less thing for them to mess up 
on.   Also, only I and another administrator have access to the CF 
Administrator and the SQL Server properties.  The programmers not do know 
the passwords, just in case one leaves and wants revenge.

2.  Your .cfm or .htm files are not secure.  Your CF Administrator pages 
are.  We have a co-location site across country and it is possible for 
someone at the site to open your .htm pages using notepad and get access to 
the databases.  The password is encrpyted in the ODBC settings, CF 
Administrator, and SQL server, not on the html pages.

Jacob

At 05:01 PM 4/18/00 -0400, you wrote:
I don't think it really makes a difference, but if I HAD to choose an
answer, I'd say having them on the pages. Clients can't see either one, so
why does it make a difference?

If you have the account information as part of the datasource, then ANY cf
page that wants to connect to the database can do so. Malicious users could
hack into your system and submit a .cfm page to be executed by your sever,
connect to the database, and do what they want.

If you have the account information as part of the page and NOT the
datasource, then it doesn't matter if they submit a .cfm page to be
executed. They would not be able to connect to the database by just using
the datasource name.

These are just observations as not "real world applications" - I've never
tested it.

-Original Message-
From: Robert M. Saxon, Jr. [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, April 18, 2000 1:54 PM
To: Cf-Talk
Subject: Which is more secure?


I have a datasource with a username and password to connect to SQL Server 7
from CF 4.01. Is it more secure to include the username and password as part
of the datasource (in CF Administrator) or to pass it with each cfquery?


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



This is a test. Please ignore it.

2000-04-18 Thread Hubert Earl

I'm testing to see if my isp is allowing me to send mail to the list.

---
Hubert Earl
ICQ#:  16199853

I develop  maintain web sites internationally.  I also build web
applications using CGI scripts written in Perl.  I accept subcontracting
work.

**Personal web site:  http://www.geocities.com/SiliconValley/Peaks/8702/
(please remember to view this with a sense of humour!)

**Business web page:  http://home.talkcity.com/MigrationPath/hearl/

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



Cold Fusion 4.5.1 Linux and NT Oracle

2000-04-18 Thread Jimmy Tam


I need some help setting up an ODBC datasource on Linux to an Oracle 8
database on WinNT 4.0.

I have been looking for info on setting up the Connect String.

Jimmy Tam   
Web Technical Director2105 Garnet Ave
PINT.com  San Diego, CA 92109
P:858-270-2086 F:858-270-0410
www.pint.com[EMAIL PROTECTED] 



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



Breaking strings apart

2000-04-18 Thread Tiffany - Tech Support

What I am looking to do is seperate a username from a domain in an email
address.

So you have [EMAIL PROTECTED]  What function or tag or what could I use
to have it detect everything before the @ symbol and call that the username,
and everything after the @ to set as the domain?

Thanks!
_
Tiffany
Technical Support
the spa! online services
[EMAIL PROTECTED]  (413)539-9818

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



Re: Automatically submit?

2000-04-18 Thread Reuben King

In [EMAIL PROTECTED], aslam bajaria 
([EMAIL PROTECTED]) in a fit of unbridled passion, wrote:
 I am looking at some code written by someone else. The
 person has not used submit button in some of the
 forms. 
 
 Does the form automatically submit if there is no
 submit button?
 
 Appreciate.
 A.B.

If it is a one-text-field form, then it will submit when the user 
presses Enter inside one of the text fields.  Otherwise, unless there is 
some Javascript which submits the form programatically, it will not 
submit.  There is also the input type="image" which acts like a submit 
button.
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Breaking strings apart

2000-04-18 Thread Dana Larose

Hi Tiffany,

You could use the GetToken function:

cfset part1 = GetToken(yourString,1,"@" will give you before the @ and
cfset part2 = GetToken(yourString,2,"@" will give you after the @.

Dana

-Original Message-
From: Tiffany - Tech Support [EMAIL PROTECTED]
To: [EMAIL PROTECTED] [EMAIL PROTECTED]
Date: Tuesday, April 18, 2000 4:32 PM
Subject: Breaking strings apart


What I am looking to do is seperate a username from a domain in an email
address.

So you have [EMAIL PROTECTED]  What function or tag or what could I use
to have it detect everything before the @ symbol and call that the
username,
and everything after the @ to set as the domain?

Thanks!
_
Tiffany
Technical Support
the spa! online services
[EMAIL PROTECTED]  (413)539-9818

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



Re: Breaking strings apart

2000-04-18 Thread Tiffany - Tech Support

Thank you Dana and Howie.. They both work very well!

-Tiffany

- Original Message -
From: Dana Larose [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, April 18, 2000 6:09 PM
Subject: Re: Breaking strings apart


 Hi Tiffany,

 You could use the GetToken function:

 cfset part1 = GetToken(yourString,1,"@" will give you before the @ and
 cfset part2 = GetToken(yourString,2,"@" will give you after the @.

 Dana

 -Original Message-
 From: Tiffany - Tech Support [EMAIL PROTECTED]
 To: [EMAIL PROTECTED] [EMAIL PROTECTED]
 Date: Tuesday, April 18, 2000 4:32 PM
 Subject: Breaking strings apart


 What I am looking to do is seperate a username from a domain in an email
 address.
 
 So you have [EMAIL PROTECTED]  What function or tag or what could I
use
 to have it detect everything before the @ symbol and call that the
 username,
 and everything after the @ to set as the domain?
 
 Thanks!
 _
 Tiffany
 Technical Support
 the spa! online services
 [EMAIL PROTECTED]  (413)539-9818
 

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



Re: Which is more secure?

2000-04-18 Thread Tinh Tran


--1DECCAAAEB3298A24BBA015C
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

Jacob,
should I ?

Jacob wrote:

 Jeff as a good point.  But here is my defense passwords set in CF Administrator

 1.  We have about 10 html/cold fusion programmers.  Sometimes they do weird
 things which mess up templates.  This is one less thing for them to mess up
 on.   Also, only I and another administrator have access to the CF
 Administrator and the SQL Server properties.  The programmers not do know
 the passwords, just in case one leaves and wants revenge.

 2.  Your .cfm or .htm files are not secure.  Your CF Administrator pages
 are.  We have a co-location site across country and it is possible for
 someone at the site to open your .htm pages using notepad and get access to
 the databases.  The password is encrpyted in the ODBC settings, CF
 Administrator, and SQL server, not on the html pages.

 Jacob

 At 05:01 PM 4/18/00 -0400, you wrote:
 I don't think it really makes a difference, but if I HAD to choose an
 answer, I'd say having them on the pages. Clients can't see either one, so
 why does it make a difference?
 
 If you have the account information as part of the datasource, then ANY cf
 page that wants to connect to the database can do so. Malicious users could
 hack into your system and submit a .cfm page to be executed by your sever,
 connect to the database, and do what they want.
 
 If you have the account information as part of the page and NOT the
 datasource, then it doesn't matter if they submit a .cfm page to be
 executed. They would not be able to connect to the database by just using
 the datasource name.
 
 These are just observations as not "real world applications" - I've never
 tested it.
 
 -Original Message-
 From: Robert M. Saxon, Jr. [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, April 18, 2000 1:54 PM
 To: Cf-Talk
 Subject: Which is more secure?
 
 
 I have a datasource with a username and password to connect to SQL Server 7
 from CF 4.01. Is it more secure to include the username and password as part
 of the datasource (in CF Administrator) or to pass it with each cfquery?
 
 
 --
 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=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=listsbody=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=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

--1DECCAAAEB3298A24BBA015C
Content-Type: text/html; charset=us-ascii
Content-Transfer-Encoding: 7bit

!doctype html public "-//w3c//dtd html 4.0 transitional//en"
html
Jacob,
brshould I ?
pJacob wrote:
blockquote TYPE=CITEJeff as a good point.nbsp; But here is my defense
passwords set in CF Administrator
p1.nbsp; We have about 10 html/cold fusion programmers.nbsp; Sometimes
they do weird
brthings which mess up templates.nbsp; This is one less thing for them
to mess up
bron.nbsp;nbsp; Also, only I and another administrator have access
to the CF
brAdministrator and the SQL Server properties.nbsp; The programmers
not do know
brthe passwords, just in case one leaves and wants revenge.
p2.nbsp; Your .cfm or .htm files are not secure.nbsp; Your CF Administrator
pages
brare.nbsp; We have a co-location site across country and it is possible
for
brsomeone at the site to open your .htm pages using notepad and get access
to
brthe databases.nbsp; The password is encrpyted in the ODBC settings,
CF
brAdministrator, and SQL server, not on the html pages.
pJacob
pAt 05:01 PM 4/18/00 -0400, you wrote:
brI don't think it really makes a difference, but if I HAD to choose
an
branswer, I'd say having them on the pages. Clients can't see either
one, so
brwhy does it make a difference?
br
brIf you have the account information as part of the datasource, then
ANY cf
brpage that wants to connect to the database can do so. Malicious users
could
brhack into your system and submit a .cfm page to be executed by your
sever,
brconnect to the database, and do what they want.
br
brIf you have the account information as part of the page and NOT the
brdatasource, then it doesn't matter if they submit a .cfm page to be
brexecuted. They would not be able to connect to the database by just
using
brthe datasource name.
br
brThese are just observations as not "real world applications" - I've
never
brtested it.
br
br-Original 

Re: Which is more secure?

2000-04-18 Thread Jacob

Tinh

It really does not matter.
Just put the username and password on the main page of you site.  That way 
it will take the fun out of hacking... :)

Jacob

At 03:17 PM 4/18/00 +0100, you wrote:

--1DECCAAAEB3298A24BBA015C
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

Jacob,
should I ?

Jacob wrote:

  Jeff as a good point.  But here is my defense passwords set in CF 
 Administrator
 
  1.  We have about 10 html/cold fusion programmers.  Sometimes they do weird
  things which mess up templates.  This is one less thing for them to mess up
  on.   Also, only I and another administrator have access to the CF
  Administrator and the SQL Server properties.  The programmers not do know
  the passwords, just in case one leaves and wants revenge.
 
  2.  Your .cfm or .htm files are not secure.  Your CF Administrator pages
  are.  We have a co-location site across country and it is possible for
  someone at the site to open your .htm pages using notepad and get access to
  the databases.  The password is encrpyted in the ODBC settings, CF
  Administrator, and SQL server, not on the html pages.
 
  Jacob
 
  At 05:01 PM 4/18/00 -0400, you wrote:
  I don't think it really makes a difference, but if I HAD to choose an
  answer, I'd say having them on the pages. Clients can't see either one, so
  why does it make a difference?
  
  If you have the account information as part of the datasource, then ANY cf
  page that wants to connect to the database can do so. Malicious users 
 could
  hack into your system and submit a .cfm page to be executed by your sever,
  connect to the database, and do what they want.
  
  If you have the account information as part of the page and NOT the
  datasource, then it doesn't matter if they submit a .cfm page to be
  executed. They would not be able to connect to the database by just using
  the datasource name.
  
  These are just observations as not "real world applications" - I've never
  tested it.
  
  -Original Message-
  From: Robert M. Saxon, Jr. [mailto:[EMAIL PROTECTED]]
  Sent: Tuesday, April 18, 2000 1:54 PM
  To: Cf-Talk
  Subject: Which is more secure?
  
  
  I have a datasource with a username and password to connect to SQL 
 Server 7
  from CF 4.01. Is it more secure to include the username and password 
 as part
  of the datasource (in CF Administrator) or to pass it with each cfquery?
  
  --- 
 -
  --
  Archives: http://www.eGroups.com/list/cf-talk
  To Unsubscribe visit
  http://www.houseoffusion.com/index.cfm?sidebar=listsbody=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=listsbody=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=listsbody=lists/cf_talk 
 or send a message to [EMAIL PROTECTED] with 'unsubscribe' 
 in the body.

--1DECCAAAEB3298A24BBA015C
Content-Type: text/html; charset=us-ascii
Content-Transfer-Encoding: 7bit

!doctype html public "-//w3c//dtd html 4.0 transitional//en"
Jacob,
should I ?

Jacob wrote:
Jeff as a good point.  But here is my defense passwords set in CF 
Administrator

1.  We have about 10 html/cold fusion programmers.  Sometimes they do weird
things which mess up templates.  This is one less thing for them to mess up
on.   Also, only I and another administrator have access to the CF
Administrator and the SQL Server properties.  The programmers not do know
the passwords, just in case one leaves and wants revenge.

2.  Your .cfm or .htm files are not secure.  Your CF Administrator pages
are.  We have a co-location site across country and it is possible for
someone at the site to open your .htm pages using notepad and get access to
the databases.  The password is encrpyted in the ODBC settings, CF
Administrator, and SQL server, not on the html pages.

Jacob

At 05:01 PM 4/18/00 -0400, you wrote:
 I don't think it really makes a difference, but if I HAD to choose an
 answer, I'd say having them on the pages. Clients can't see either one, so
 why does it make a difference?
 
 If you have the account information as part of the datasource, then ANY cf
 page that wants to connect to the database can do so. Malicious users 
 could
 hack into your system and submit a .cfm page to be executed by your sever,
 connect to the database, and do what they want.
 
 If you have the account information as part of the page and NOT the
 datasource, then it doesn't matter if they submit a .cfm page to be
 executed. They would not be able 

Re: Classifieds in CF

2000-04-18 Thread Julia Green

If you pay me $400 - $600, I'll write a Classified Software program for you.

Julia Green
Julia Computer Consulting
http://www.juliagreen.com/
Email:  [EMAIL PROTECTED]
Phone:  617-926-3413
FAX:  413-771-0306
- Original Message -
From: Jordie Fike [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, April 18, 2000 3:34 PM
Subject: Classifieds in CF


 Looking for a recommendation for a Classifieds or Auction software written
 in CF .. budget is only $400-$600 dollars.
 TIA,

 --

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



CF calender for Oracle

2000-04-18 Thread Marlene Buffa

Does anyone have a decent functioning CF calendar with cells 
big enuf to list title of event? Then a pop up window for expanded 
event info.
I can make it pretty, I just need it to work!
marlene
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Cf Studio resources hog? anyone see this?

2000-04-18 Thread Mark W. Breneman

Does anyone else have this problem:

When I have CF Studio 4.5.1 running it seems to take over about 40% of my
resources.
I run in the yellow / red (sometimes no color at all) with the MS resource
meter most all the time.

Ok, I tend to keep lots of apps open I would be happy to be able to run:
CF Studio
MS Access
FTP Access
2 or three Netscape windows.
Outlook
AOL Instant Massager 4

I consider this minimum running set of apps.

I would be nice to also have these apps open too:
SQL Manager
winamp
PCanywhere
MS Query

It seems that when I open and close apps my memory (ram) becomes fragmented.
So I just leave them open.  (note: I am not saying this as a fact.  Just a
theory.)

Does anyone know of anything I can disable in CF studio that saves
resources?  Or any tweaks that helps?  Would Windows 2000 help?


System:
Pent III 500
128 Mb RAM (tried 256MB no change)
Win 98


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=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Cf Studio resources hog? anyone see this?

2000-04-18 Thread Jennifer

At 06:55 PM 4/18/00 -0500, you wrote:
Does anyone else have this problem:

When I have CF Studio 4.5.1 running it seems to take over about 40% of my
resources.
I run in the yellow / red (sometimes no color at all) with the MS resource
meter most all the time.

Ok, I tend to keep lots of apps open I would be happy to be able to run:
CF Studio
MS Access
FTP Access
2 or three Netscape windows.
Outlook
AOL Instant Massager 4

I consider this minimum running set of apps.

I consider this reasonable.

It seems that when I open and close apps my memory (ram) becomes fragmented.
So I just leave them open.  (note: I am not saying this as a fact.  Just a
theory.)

This sounds like a memory leak. I had this problem with CFStudio and I 
upgraded to Win 98b. This fixed my problem.

System:
Pent III 500
128 Mb RAM (tried 256MB no change)
Win 98

Since you have tried doubling the RAM with no success, you may have a 
memory allocation problem or some vague memory leak or something silly like 
that. There is a memory leak in Win 98a (if I remember correctly) so make 
sure you have Win 98b. I wouldn't go with Win 2000 until the work out some 
more of the (now that they've released a bug fix) 32,000 known bugs.
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Cf Studio resources hog? anyone see this?

2000-04-18 Thread Steve Aylor


I agree, and have theorized the same on NT and 98.  But, alas.. I was
presented with a tip just this afternoon for WIN98 usage that may
improve"  -not fix - the sitch

start | Control Panel | System Icon | Performance Tab | File System tab |
Select Network Server from the drop down

and perform the glorious William Gates - salute - "reboot".


Supposedly the win98 default setting for this option (Desktop...) does not
handle memory mgmnt as well as the Network Server setting.  Caveat emptor
and YMMV.  I have instituted this change on my win98PC with no current
problems.  However the change/benefit has been unoticeable so far - 2 hrs
worth of use.


All the best/HTH,

Steve





 Does anyone else have this problem:

 When I have CF Studio 4.5.1 running it seems to take over about 40% of my
 resources.
 I run in the yellow / red (sometimes no color at all) with the MS resource
 meter most all the time.

 Ok, I tend to keep lots of apps open I would be happy to be able to run:
 CF Studio
 MS Access
 FTP Access
 2 or three Netscape windows.
 Outlook
 AOL Instant Massager 4

 I consider this minimum running set of apps.

 I would be nice to also have these apps open too:
 SQL Manager
 winamp
 PCanywhere
 MS Query

 It seems that when I open and close apps my memory (ram) becomes
fragmented.
 So I just leave them open.  (note: I am not saying this as a fact.  Just a
 theory.)

 Does anyone know of anything I can disable in CF studio that saves
 resources?  Or any tweaks that helps?  Would Windows 2000 help?


 System:
 Pent III 500
 128 Mb RAM (tried 256MB no change)
 Win 98


 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=listsbody=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=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



OT: Need some MSDE help

2000-04-18 Thread Bud

Hi. I installed the WebBoard demo on my server, but for some reason 
it doesn't create the database during install. If I create an empty 
database at home with SQL Server desktop, what steps do I need to 
take to get it to run under MSDE on the server?

Any help would be appreciated. Been fooling with this for a couple 
weeks and the demo is only a month long.

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=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



OT: WINNT system on seperate drive

2000-04-18 Thread Adrian Cesana

Im finally building a new MSSQL server and separating it form my CF server.
Im using a nice and fast 18GB LVD drive for my data drive.  I was also going
to create a 2GB partition for the WINNT system.  I was thinking that it may
be better to place the WINNT system on a separate older 1GB SCSI drive I
have and create the swap file onto the fast drive.

If my WINNT system is installed on a slow older SCSI-II drive would I be
degrading my system performance bigtime?or am I much better of creating
the partition on the fast drive for the system...?

Also if I have 1GB-RAM would I want to still set my swap file at
512-512MB...?

Thanks,Adrian


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



Re: WOT: IIS Bizarreness

2000-04-18 Thread Kym Kovan

Hi Sean,

Sorry for the OT post, 

Actually when you see the answer its not off-topic at all :-)

...One of several Websites dead, rest OK
... I checked out the log files to see if I could
figure anything based on that. Lo and behold I find that although I have IIS
set to create a new log file daily, the last log file was for 3/28/2000 and
it was really really large. It appears that every single log entry made
since 9:21:27 on 3/28 was logged to the file with the exact same time stamp!

We had exactly the same thing and had to do the same thing, restart the
service.

We checked back thru' the logs and found that at the time the server went
funny with its logging there was an obscure cf error logged. It seems that
the error condition freaked the webserver in some odd way.

... I know I should
prbably upgrade to the latest SP and all, 

Only go to SP5.

but is this a documented problem?

Not that we are aware of.



--

Yours,

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



(ot) Unlocking mail boxes

2000-04-18 Thread Michael Dinowitz

Is there a way to unlock a locked mailbox using CFHTTP or CFX_Socket? Any
command to use?

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



Re: (ot) Unlocking mail boxes

2000-04-18 Thread Howie Hamlin

Every mail server has its own way of locking a mailbox.  So, you need to
know how your mail server is locking the mailbox first.  For example, some
mail servers write a file with a special extension (like mailboxname.lck) in
the mailbox directory and the presence of that file alone sets the mailbox
to a locked state.

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: Michael Dinowitz [EMAIL PROTECTED]
To: cf-talk [EMAIL PROTECTED]
Sent: Tuesday, April 18, 2000 9:13 PM
Subject: (ot) Unlocking mail boxes


 Is there a way to unlock a locked mailbox using CFHTTP or CFX_Socket? Any
 command to use?

 --

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



Hosting CF sites overseas - anyone done it?

2000-04-18 Thread Michael Kear

I'm in Australia, and I've built my business up to now mostly on small
businesses.  Then I discovered ColdFusion and I can see how most of my
clients will benefit from the things CF could provide.  In short I could
do a better job for them.

But as anyone in Australia can tell you, Australian-based CF hosters
aren't low-budget business, while my clients are.

I have to either get them to pay a lot more, or host them overseas - no
doubt a US based hoster.

Has anyone in Australia/NZ hosted sites on US CF servers?  What I'm
interested in is whether the horror tales of very slow download speeds etc
are for real or just Aussie salesman's talk.  I can see that from a sheer
money point of view, there are a zillion better options than the 4 or 5
main CF hosts here in Australia.  But if it results in clients saying they
are moving because their site pisses off too many of their customers
because it's too slow, it's not much of a bargain.

For those who don't fully appreciate the issue,  it's all well and good
for a hosting company to say they have multiple T3s and load balancing and
fast servers etc, but if the site is held in a bottleneck getting across
the Pacific Ocean, the site's still slow.  What I'm not sure about is
whether this is just talk or it's a real problem for US Hosted .com.au
sites.


Cheers,
Mike Kear
AFP Web Development
Windsor, NSW, Australia 
http://www.afp.zip.com.au



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



Any problems with Excel as a datasourse? Other than speed.

2000-04-18 Thread Jeff Fongemie


I need a simple datasourse that will handle as many as 600 records. My
clients only have Microsoft Excel and want to be able to get their hand on
the file whenever they want.

Speed is not a huge issue here. Any other problems I might expect???

Thanks,

Jeff Fongemie

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



Re: Cf Studio resources hog? anyone see this?

2000-04-18 Thread Michael Blair

I am not sure how the background of everything works, but AOL instant
messenger kills everything I have ever tried to run with that on my machine.
I got rid of it and since have no problems.

- Original Message -
From: Mark W. Breneman [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, April 18, 2000 4:55 PM
Subject: Cf Studio resources hog? anyone see this?


 Does anyone else have this problem:

 When I have CF Studio 4.5.1 running it seems to take over about 40% of my
 resources.
 I run in the yellow / red (sometimes no color at all) with the MS resource
 meter most all the time.

 Ok, I tend to keep lots of apps open I would be happy to be able to run:
 CF Studio
 MS Access
 FTP Access
 2 or three Netscape windows.
 Outlook
 AOL Instant Massager 4

 I consider this minimum running set of apps.

 I would be nice to also have these apps open too:
 SQL Manager
 winamp
 PCanywhere
 MS Query

 It seems that when I open and close apps my memory (ram) becomes
fragmented.
 So I just leave them open.  (note: I am not saying this as a fact.  Just a
 theory.)

 Does anyone know of anything I can disable in CF studio that saves
 resources?  Or any tweaks that helps?  Would Windows 2000 help?


 System:
 Pent III 500
 128 Mb RAM (tried 256MB no change)
 Win 98


 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=listsbody=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=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Error help....

2000-04-18 Thread Jeff Fongemie

Am I missing something basic here??

I used the drill down wizard in Studio and the result gives me an error when
I choose to see details.

Am I doing something wrong with the database column names??

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


[Microsoft][ODBC Microsoft Access Driver] Syntax error in query expression
'register2.19_under'.



The error occurred while processing an element with a general identifier of
(CFQUERY), occupying document position (2:1) to (2:46).


Date/Time: 04/18/00 21:55:15
Browser: Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)
Remote Address: 127.0.0.1
HTTP Referer: http://127.0.0.1//HillClimb/fusion1/drill2_Result.cfm
Template: c:\inetpub\wwwroot\HillClimb\fusion1\drill2_Detail.cfm
Query String: ID=32


Jeff Fongemie

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



Re: Question on FuseBox model

2000-04-18 Thread Fred Sanders

Pass it as a hidden field.

form action="index.cfm" method="post"
input type="hidden" name="fuseaction" value="whatever"
...

Fred T. Sanders
Galveston Island, TX
--
Having a bad day?
Imagine this...

You are in total seclusion from that hectic place called "The World".
The soothing sound of a gentle waterfall fills the air with a cascading
serenity.
The water is clear.
You can easily make out the face of the person you are holding underwater.

Feeling better?


- Original Message -
From: "aslam bajaria" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, April 18, 2000 7:50 PM
Subject: Question on FuseBox model


 I am trying to learn the fusebox model. I have a
 created a file called index.cfm.

 That file has a switch statement.

 The question I have is that if I have a file that  has
 a form, then how do I submit that form so that the
 index.cfm file can include the right action page.

 The only way I know so far is that I say something
 like

 cfif form.state="CA"...
 But,
 I think that in fusebox model you say:

 cfswitch expression="#attributes.fuseaction#"

  cfcase value="00"
 cfinclude template="testing.cfm"
  /cfcase

 and so on.

 What code do I write in the form page that when the
 user clicks 'Submit', a fuseaction value is passed to
 the index.cfm page.

 Thank you.
 Mirza

 __
 Do You Yahoo!?
 Send online invitations with Yahoo! Invites.
 http://invites.yahoo.com
 --

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



Re: Cf Studio resources hog? anyone see this?

2000-04-18 Thread Fred Sanders

Actually its file management that is improved the most by that setting.
But it does help.

Fred T. Sanders
Galveston Island, TX
--
Having a bad day?
Imagine this...

You are in total seclusion from that hectic place called "The World".
The soothing sound of a gentle waterfall fills the air with a cascading
serenity.
The water is clear.
You can easily make out the face of the person you are holding underwater.

Feeling better?


- Original Message -
From: "Steve Aylor" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, April 18, 2000 7:11 PM
Subject: Re: Cf Studio resources hog? anyone see this?



 I agree, and have theorized the same on NT and 98.  But, alas.. I was
 presented with a tip just this afternoon for WIN98 usage that may
 improve"  -not fix - the sitch

 start | Control Panel | System Icon | Performance Tab | File System tab |
 Select Network Server from the drop down

 and perform the glorious William Gates - salute - "reboot".


 Supposedly the win98 default setting for this option (Desktop...) does not
 handle memory mgmnt as well as the Network Server setting.  Caveat emptor
 and YMMV.  I have instituted this change on my win98PC with no current
 problems.  However the change/benefit has been unoticeable so far - 2 hrs
 worth of use.


 All the best/HTH,

 Steve





  Does anyone else have this problem:
 
  When I have CF Studio 4.5.1 running it seems to take over about 40% of
my
  resources.
  I run in the yellow / red (sometimes no color at all) with the MS
resource
  meter most all the time.
 
  Ok, I tend to keep lots of apps open I would be happy to be able to run:
  CF Studio
  MS Access
  FTP Access
  2 or three Netscape windows.
  Outlook
  AOL Instant Massager 4
 
  I consider this minimum running set of apps.
 
  I would be nice to also have these apps open too:
  SQL Manager
  winamp
  PCanywhere
  MS Query
 
  It seems that when I open and close apps my memory (ram) becomes
 fragmented.
  So I just leave them open.  (note: I am not saying this as a fact.  Just
a
  theory.)
 
  Does anyone know of anything I can disable in CF studio that saves
  resources?  Or any tweaks that helps?  Would Windows 2000 help?
 
 
  System:
  Pent III 500
  128 Mb RAM (tried 256MB no change)
  Win 98
 
 
  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=listsbody=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=listsbody=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=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: UNSUBSCRIBE

2000-04-18 Thread Fred Sanders

eww an 3LiTe Hack3r

Fred T. Sanders
Galveston Island, TX
--
Having a bad day?
Imagine this...

You are in total seclusion from that hectic place called "The World".
The soothing sound of a gentle waterfall fills the air with a cascading
serenity.
The water is clear.
You can easily make out the face of the person you are holding underwater.

Feeling better?


- Original Message -
From: "Reuben King" [EMAIL PROTECTED]
Newsgroups: cf-talk
To: [EMAIL PROTECTED]
Sent: Tuesday, April 18, 2000 3:04 PM
Subject: Re: UNSUBSCRIBE


 In 001e01bfa8bd$99fad0a0$[EMAIL PROTECTED], Julia Green
 ([EMAIL PROTECTED]) in a fit of unbridled passion, wrote:
  Mr. Haubrich --
 
  Hi, my name is Julia Green and I am a Cold Fusion Programmer at UPS.
  Did you mean that I personally should unsubscribe?  I actually need to
post
  to solve a DateDiff() problem in a Vacation Posting problem I am doing
  at work?  However, I don't have the code as of yet.  Probably
tomorrow...
 
  Also, I am a little at lost at where and how I should post?  Should I
just
  reply
  to an email, or is there an actual board where I should post and how
should
  I do it?
 
  If you can help me with any of these problems, great?

 m3 +00 pl3aZ aDd m3 thNaks ok bye
 --

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



Re: Hosting CF sites overseas - anyone done it?

2000-04-18 Thread Seamus Campbell

--=_307100056==_.ALT
Content-Type: text/plain; charset="us-ascii"; format=flowed

Mike I used to use http://www.localweb.com/ - didn't notice any slowness - 
but did have a problem if I wanted to actually talk to someone there (cost 
of phonecall)
I now use http://www.webone.com.au/ who are just as cheap as localweb was 
and give very good service
(I'm in Canberra)
seamus








At 11:32 am 19/4/2000 , you wrote:
I'm in Australia, and I've built my business up to now mostly on small
businesses.  Then I discovered ColdFusion and I can see how most of my
clients will benefit from the things CF could provide.  In short I could
do a better job for them.

But as anyone in Australia can tell you, Australian-based CF hosters
aren't low-budget business, while my clients are.

I have to either get them to pay a lot more, or host them overseas - no
doubt a US based hoster.

Has anyone in Australia/NZ hosted sites on US CF servers?  What I'm
interested in is whether the horror tales of very slow download speeds etc
are for real or just Aussie salesman's talk.  I can see that from a sheer
money point of view, there are a zillion better options than the 4 or 5
main CF hosts here in Australia.  But if it results in clients saying they
are moving because their site pisses off too many of their customers
because it's too slow, it's not much of a bargain.

For those who don't fully appreciate the issue,  it's all well and good
for a hosting company to say they have multiple T3s and load balancing and
fast servers etc, but if the site is held in a bottleneck getting across
the Pacific Ocean, the site's still slow.  What I'm not sure about is
whether this is just talk or it's a real problem for US Hosted .com.au
sites.


Cheers,
Mike Kear
AFP Web Development
Windsor, NSW, Australia
http://www.afp.zip.com.au



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

Seamus Campbell   BookBusiness - Netinfo
www.bookbusiness.com.au   [EMAIL PROTECTED]
ph 02 6297 4883   fax  02 6297 8464   mob 0416 055 171
In the Book Business? You need BookBusiness! 
--=_307100056==_.ALT
Content-Type: text/html; charset="us-ascii"

html
font size=3Mike I used to use
/fonta href="http://www.localweb.com/" eudora="autourl"font size=3 
color="#FF"uhttp://www.localweb.com//a/font/ufont size=3
- didn't notice any slowness - but did have a problem if I wanted to
actually talk to someone there (cost of phonecall)br
I now use
/fonta href="http://www.webone.com.au/" eudora="autourl"font size=3 
color="#FF"uhttp://www.webone.com.au//a/font/ufont size=3
who are just as cheap as localweb was and give very good servicebr
(I'm in Canberra)br
seamusbr
br
br
br
br
br
br
br
br
At 11:32 am 19/4/2000 , you wrote:br
blockquote type=cite citeI'm in Australia, and I've built my business
up to now mostly on smallbr
businesses.nbsp; Then I discovered ColdFusion and I can see how most of
mybr
clients will benefit from the things CF could provide.nbsp; In short I
couldbr
do a better job for them.br
br
But as anyone in Australia can tell you, Australian-based CF 
hostersbr
aren't low-budget business, while my clients are.br
br
I have to either get them to pay a lot more, or host them overseas -
nobr
doubt a US based hoster.br
br
Has anyone in Australia/NZ hosted sites on US CF servers?nbsp; What
I'mbr
interested in is whether the horror tales of very slow download speeds
etcbr
are for real or just Aussie salesman's talk.nbsp; I can see that from a
sheerbr
money point of view, there are a zillion better options than the 4 or
5br
main CF hosts here in Australia.nbsp; But if it results in clients
saying theybr
are moving because their site pisses off too many of their 
customersbr
because it's too slow, it's not much of a bargain.br
br
For those who don't fully appreciate the issue,nbsp; it's all well and
goodbr
for a hosting company to say they have multiple T3s and load balancing
andbr
fast servers etc, but if the site is held in a bottleneck getting
acrossbr
the Pacific Ocean, the site's still slow.nbsp; What I'm not sure about
isbr
whether this is just talk or it's a real problem for US Hosted
.com.aubr
sites.br
br
br
Cheers,br
Mike Kearbr
AFP Web Developmentbr
Windsor, NSW, Australia br
a href="http://www.afp.zip.com.au/" eudora="autourl"http://www.afp.zip.com.au/abr
br
br
br
--br
Archives:
a href="http://www.egroups.com/list/cf-talk" 
eudora="autourl"http://www.eGroups.com/list/cf-talk/abr
To Unsubscribe visit
a href="http://www.houseoffusion.com/index.cfm?sidebar=listsamp;body=lists/cf_talk" 
eudora="autourl"http://www.houseoffusion.com/index.cfm?sidebar=listsamp;body=lists/cf_talk/a
or send a message to 

RE: HELP: Retrieving 5 most recent records by date...

2000-04-18 Thread Chris Chambers

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

SELECT  TOP 5 field
FROMtablename
ORDER BYdatefield

_

Chris Chambers

ICQ: 40311211
AIM: CTC HOME

VOX: 757-896-6393
FAX: 757-896-0774 
_

- -Original Message-
From: Dave Notik [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, April 18, 2000 10:34 PM
To: ColdFusion List
Subject: HELP: Retrieving 5 most recent records by date...
Importance: High


All:

I've done this many times in the past, but am now arguing the most
efficient
way to handle querying a database and retrieving the 5 (or however
many)
most recent records, as defined by date.

E.g. say I have a database in which I insert articles.  I have a
DateEntered
field which has a smalldatetime datatype.  I want to list the most
recent
first, second most recent, third most recent, etc...

Is there an "efficient" way of doing this or do I have to select all,
order
by the DateEntered field, loop over the results, etc?  Any help or
suggestions is appreciated as to what is the best method for handling
this
case.

- -Dave

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

-BEGIN PGP SIGNATURE-
Version: PGPfreeware 6.5.3 for non-commercial use http://www.pgp.com

iQA/AwUBOP0fUkejih2dfV0dEQJdzwCgsFDEtITgjE6/6wObVIha5T8W2wAAoIkY
mVzg5F/mFV1TzQv2ix/ZIiMf
=yFeJ
-END PGP SIGNATURE-

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



RE: Question on FuseBox model

2000-04-18 Thread Pete Freitag

If your form method is post you can pass the fuseaction in the form action,
like this...

form action="index.cfm?fuseaction=whatever" method="post"
input type="text" name="test"
/form

url.fuseaction
form.test
That way the fuseaction retains the url scoping, and a
cf_formurl2attributes call is not required.

___
Pete Freitag
CFDEV.COM
Cold Fusion Developer Resources
http://www.cfdev.com/
-Original Message-
From: Fred Sanders [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, April 18, 2000 9:33 PM
To: [EMAIL PROTECTED]
Subject: Re: Question on FuseBox model


Pass it as a hidden field.

form action="index.cfm" method="post"
input type="hidden" name="fuseaction" value="whatever"
...

Fred T. Sanders
Galveston Island, TX
--
Having a bad day?
Imagine this...

You are in total seclusion from that hectic place called "The World".
The soothing sound of a gentle waterfall fills the air with a cascading
serenity.
The water is clear.
You can easily make out the face of the person you are holding underwater.

Feeling better?


- Original Message -
From: "aslam bajaria" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, April 18, 2000 7:50 PM
Subject: Question on FuseBox model


 I am trying to learn the fusebox model. I have a
 created a file called index.cfm.

 That file has a switch statement.

 The question I have is that if I have a file that  has
 a form, then how do I submit that form so that the
 index.cfm file can include the right action page.

 The only way I know so far is that I say something
 like

 cfif form.state="CA"...
 But,
 I think that in fusebox model you say:

 cfswitch expression="#attributes.fuseaction#"

  cfcase value="00"
 cfinclude template="testing.cfm"
  /cfcase

 and so on.

 What code do I write in the form page that when the
 user clicks 'Submit', a fuseaction value is passed to
 the index.cfm page.

 Thank you.
 Mirza

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



Re: Parent/Child query

2000-04-18 Thread Michael Imhoff

Are you trying to do this so that you can thread your messages such as in a
forums application?

If so, let me know.

-Michael


Michael Imhoff  www.omnicypher.com  icq: 10495667
[EMAIL PROTECTED] (home)  (320) 255-4447 (home)
[EMAIL PROTECTED] (cell)  (612) 247-8159 (cell)
Allaire Alliance Consulting Partner


- Original Message -
From: "Chris Evans" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, April 18, 2000 8:30 PM
Subject: Parent/Child query


 I have two tables.  One contains messages, with MessageID as a primary key
 and a bunch of other columns.  I have a second table that has a Parent
 column, and a MessageID column.  I am trying to grab the messages, and use
 the Parent and MessageID table to build the parent child relationships. I
 want the query to return with parent message followed by children
messages.
 I can't get it to work correctly, though.

 Any ideas?

 Chris Evans
 [EMAIL PROTECTED]
 http://www.fuseware.com




 --

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



Re: Classifieds in CF

2000-04-18 Thread David Shadovitz

Weren't you directed to unsubscribe?

On Tue, 18 Apr 2000 19:01:40 -0400 "Julia Green" [EMAIL PROTECTED]
writes:
 If you pay me $400 - $600, I'll write a Classified Software program 
 for you.
 
 - Original Message -
 From: Jordie Fike [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Tuesday, April 18, 2000 3:34 PM
 Subject: Classifieds in CF
 
 
  Looking for a recommendation for a Classifieds or Auction software 
 written
  in CF .. budget is only $400-$600 dollars.

YOU'RE PAYING TOO MUCH FOR THE INTERNET!
Juno now offers FREE Internet Access!
Try it today - there's no risk!  For your FREE software, visit:
http://dl.www.juno.com/get/tagj.
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Cf Studio resources hog? anyone see this?

2000-04-18 Thread Max Paperno



AOL Instant Massager 4


Now THAT sounds like the killer app!

Of course it would probably stop every 45 seconds to try to sell you something.

 :-)


-Max

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



Re: Classifieds in CF

2000-04-18 Thread Carter Development

ROTFLMAO.  :)

Poor Julia.  :)

Sincerely,
Shawnea Carter
- Original Message -
From: "David Shadovitz" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, April 18, 2000 10:41 PM
Subject: Re: Classifieds in CF


 Weren't you directed to unsubscribe?

 On Tue, 18 Apr 2000 19:01:40 -0400 "Julia Green" [EMAIL PROTECTED]
 writes:
  If you pay me $400 - $600, I'll write a Classified Software program
  for you.
 
  - Original Message -
  From: Jordie Fike [EMAIL PROTECTED]
  To: [EMAIL PROTECTED]
  Sent: Tuesday, April 18, 2000 3:34 PM
  Subject: Classifieds in CF
 
 
   Looking for a recommendation for a Classifieds or Auction software
  written
   in CF .. budget is only $400-$600 dollars.
 
 YOU'RE PAYING TOO MUCH FOR THE INTERNET!
 Juno now offers FREE Internet Access!
 Try it today - there's no risk!  For your FREE software, visit:
 http://dl.www.juno.com/get/tagj.
 --

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



Re: WINNT system on seperate drive

2000-04-18 Thread Will

Well, I think its fairly proven that writing/reading/etc between drives is
faster than doing so on the same drive, cross partitions. I actually did a
similar thing and noticed a bit of a performance increase. We put the system
and a few other things we have running a 4.5 GB U2 drive and the rest on a
second 9GB U160 drive. Our previous configuration had been just a single 9
GB U2 drive with partitions (yes, some of the performance boost may be from
upgrading to U160 from U2, but I think the separate drives help out
tremendously). But again, if the system drive is a LOT slower, it might be
more of a hindrance than putting it on a partition on the faster drive.
Hopefully someone else will have more specific answers to your exact
situation.

-Will

- Original Message -
From: "Adrian Cesana" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, April 18, 2000 5:28 PM
Subject: OT: WINNT system on seperate drive


 Im finally building a new MSSQL server and separating it form my CF
server.
 Im using a nice and fast 18GB LVD drive for my data drive.  I was also
going
 to create a 2GB partition for the WINNT system.  I was thinking that it
may
 be better to place the WINNT system on a separate older 1GB SCSI drive I
 have and create the swap file onto the fast drive.

 If my WINNT system is installed on a slow older SCSI-II drive would I be
 degrading my system performance bigtime?or am I much better of
creating
 the partition on the fast drive for the system...?

 Also if I have 1GB-RAM would I want to still set my swap file at
 512-512MB...?

 Thanks,Adrian


 --

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



Re: Classifieds in CF

2000-04-18 Thread Steve Reich

ROTFLMAO


- Original Message -
From: "David Shadovitz" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, April 18, 2000 10:41 PM
Subject: Re: Classifieds in CF


 Weren't you directed to unsubscribe?

 On Tue, 18 Apr 2000 19:01:40 -0400 "Julia Green" [EMAIL PROTECTED]
 writes:
  If you pay me $400 - $600, I'll write a Classified Software program
  for you.
 
  - Original Message -
  From: Jordie Fike [EMAIL PROTECTED]
  To: [EMAIL PROTECTED]
  Sent: Tuesday, April 18, 2000 3:34 PM
  Subject: Classifieds in CF
 
 
   Looking for a recommendation for a Classifieds or Auction software
  written
   in CF .. budget is only $400-$600 dollars.
 
 YOU'RE PAYING TOO MUCH FOR THE INTERNET!
 Juno now offers FREE Internet Access!
 Try it today - there's no risk!  For your FREE software, visit:
 http://dl.www.juno.com/get/tagj.
 --

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



Re: Classifieds in CF

2000-04-18 Thread Skip Ogden


   If you pay me $400 - $600, I'll write a Classified Software program
   for you.

I thought programs WERE software?

Classified sites are not as easy as they seem.

Skip

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



CF Classes

2000-04-18 Thread LH Rothman

I'm a newbie to CF and am considering taking the Fast Track to CF
class.  Anyone have anything good/bad to say about this class?  It's put
on by Productivity Point in LA.

Thanks,
-Laura

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



What the heck is wrong with 4.5 and my queries?

2000-04-18 Thread Erika Foster

The first problem I encountered after ugrading was this error:
~
Error Diagnostic Information
Cannot convert 99 to integer.
Please, check the ColdFusion manual for the allowed conversions between data
types
The error occurred while processing an element with a general identifier of
(CFQUERY), occupying document position (68:3) to (72:35) in the template
file C:\CFUSION\CustomTags\QUERY_Repeater.cfm.
~~~

When using query_repeater.  This error never happened with 4.01.

Now, I'm getting the following error with the code below:

Error:

ODBC Error Code = S1000 (General error)
[Microsoft][ODBC Microsoft Access Driver] Operation must use an updateable
query.
SQL = "INSERT INTO Inventory (SL, SLN, compound, manufacturer, activity,
product, NSN, ContainerSize, quantity, ro, rop) VALUES ('FL-1', 'abc',
'256', 'abc', '05A05', 'abc', 'abc', 'abc', 'a', 'abc', 'abc')"

Code:

cfloop index="i" FROM="1" TO= "10" 
  cfset Thissl = Evaluate("Form.sl"  i)
  cfset Thiscompound = Evaluate("Form.compound"  i)
  cfset Thisactivity = Evaluate("Form.activity"  i)
  cfset ThisManufacturer = Evaluate("Form.Manufacturer"  i)
  cfset ThisProduct = Evaluate("Form.Product"  i)
  cfset ThisNSN = Evaluate("Form.NSN"  i)
  cfset ThisContainerSize = Evaluate("Form.ContainerSize"  i)
  cfset ThisQuantity = Evaluate("Form.Quantity"  i)
  cfset ThisRO = Evaluate("Form.RO"  i)
  cfset ThisROP = Evaluate("Form.ROP"  i)
  cfset ThisSLN = Evaluate("Form.SLN"  i)

   cfif (Evaluate("Form.Product"i) NEQ "")
   cfquery name="addrow" datasource="facilities"
INSERT INTO Inventory (SL, SLN, compound, manufacturer, activity,
product, NSN, ContainerSize, quantity, ro, rop)
 VALUES ('#thissl#', '#thissln#', '#thiscompound#',
'#ThisManufacturer#', '#thisactivity#', '#thisproduct#', '#thisNSN#',
'#thiscontainersize#', '#thisquantity#', '#thisro#', '#thisrop#')
   /cfquery
   /cfif
 /cfloop

Can someone help?  I'm in the process of upgrading to 4.5.1 right now - I'm
hovering at 89% complete but I'm tired and cranky and need this to work
tomorrow.  Will the upgrade fix this?  Anyone?

Thanks,
Erika

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



Re: CF Classes

2000-04-18 Thread Chris Giminez

I took it and would recommend it. It didn't cover as much as I hoped, but still was a 
"Fast Track"


Chris Giminez



 I'm a newbie to CF and am considering taking the Fast Track to CF
 class.  Anyone have anything good/bad to say about this class?  It's put
 on by Productivity Point in LA.

 Thanks,
 -Laura

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



RE: What the heck is wrong with 4.5 and my queries?

2000-04-18 Thread Duane Boudreau

Make sure your database file is not read only


Duane



-Original Message-
From: Erika Foster [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 19, 2000 12:56 AM
To: [EMAIL PROTECTED]
Subject: What the heck is wrong with 4.5 and my queries?


The first problem I encountered after ugrading was this error:
~
Error Diagnostic Information
Cannot convert 99 to integer.
Please, check the ColdFusion manual for the allowed conversions between data
types
The error occurred while processing an element with a general identifier of
(CFQUERY), occupying document position (68:3) to (72:35) in the template
file C:\CFUSION\CustomTags\QUERY_Repeater.cfm.
~~~

When using query_repeater.  This error never happened with 4.01.

Now, I'm getting the following error with the code below:

Error:

ODBC Error Code = S1000 (General error)
[Microsoft][ODBC Microsoft Access Driver] Operation must use an updateable
query.
SQL = "INSERT INTO Inventory (SL, SLN, compound, manufacturer, activity,
product, NSN, ContainerSize, quantity, ro, rop) VALUES ('FL-1', 'abc',
'256', 'abc', '05A05', 'abc', 'abc', 'abc', 'a', 'abc', 'abc')"

Code:

cfloop index="i" FROM="1" TO= "10" 
  cfset Thissl = Evaluate("Form.sl"  i)
  cfset Thiscompound = Evaluate("Form.compound"  i)
  cfset Thisactivity = Evaluate("Form.activity"  i)
  cfset ThisManufacturer = Evaluate("Form.Manufacturer"  i)
  cfset ThisProduct = Evaluate("Form.Product"  i)
  cfset ThisNSN = Evaluate("Form.NSN"  i)
  cfset ThisContainerSize = Evaluate("Form.ContainerSize"  i)
  cfset ThisQuantity = Evaluate("Form.Quantity"  i)
  cfset ThisRO = Evaluate("Form.RO"  i)
  cfset ThisROP = Evaluate("Form.ROP"  i)
  cfset ThisSLN = Evaluate("Form.SLN"  i)

   cfif (Evaluate("Form.Product"i) NEQ "")
   cfquery name="addrow" datasource="facilities"
INSERT INTO Inventory (SL, SLN, compound, manufacturer, activity,
product, NSN, ContainerSize, quantity, ro, rop)
 VALUES ('#thissl#', '#thissln#', '#thiscompound#',
'#ThisManufacturer#', '#thisactivity#', '#thisproduct#', '#thisNSN#',
'#thiscontainersize#', '#thisquantity#', '#thisro#', '#thisrop#')
   /cfquery
   /cfif
 /cfloop

Can someone help?  I'm in the process of upgrading to 4.5.1 right now - I'm
hovering at 89% complete but I'm tired and cranky and need this to work
tomorrow.  Will the upgrade fix this?  Anyone?

Thanks,
Erika


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



RE: What the heck is wrong with 4.5 and my queries?

2000-04-18 Thread Peter Tilbrook

The custom tag just might not be compatible with 4.5. I had to go back to
4.01 for a similar reason (but with a CFX).

-Original Message-
From: Erika Foster [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, 19 April 2000 2:56 PM
To: [EMAIL PROTECTED]
Subject: What the heck is wrong with 4.5 and my queries?


The first problem I encountered after ugrading was this error:
~
Error Diagnostic Information
Cannot convert 99 to integer.
Please, check the ColdFusion manual for the allowed conversions between data
types
The error occurred while processing an element with a general identifier of
(CFQUERY), occupying document position (68:3) to (72:35) in the template
file C:\CFUSION\CustomTags\QUERY_Repeater.cfm.
~~~

When using query_repeater.  This error never happened with 4.01.

Now, I'm getting the following error with the code below:

Error:

ODBC Error Code = S1000 (General error)
[Microsoft][ODBC Microsoft Access Driver] Operation must use an updateable
query.
SQL = "INSERT INTO Inventory (SL, SLN, compound, manufacturer, activity,
product, NSN, ContainerSize, quantity, ro, rop) VALUES ('FL-1', 'abc',
'256', 'abc', '05A05', 'abc', 'abc', 'abc', 'a', 'abc', 'abc')"

Code:

cfloop index="i" FROM="1" TO= "10" 
  cfset Thissl = Evaluate("Form.sl"  i)
  cfset Thiscompound = Evaluate("Form.compound"  i)
  cfset Thisactivity = Evaluate("Form.activity"  i)
  cfset ThisManufacturer = Evaluate("Form.Manufacturer"  i)
  cfset ThisProduct = Evaluate("Form.Product"  i)
  cfset ThisNSN = Evaluate("Form.NSN"  i)
  cfset ThisContainerSize = Evaluate("Form.ContainerSize"  i)
  cfset ThisQuantity = Evaluate("Form.Quantity"  i)
  cfset ThisRO = Evaluate("Form.RO"  i)
  cfset ThisROP = Evaluate("Form.ROP"  i)
  cfset ThisSLN = Evaluate("Form.SLN"  i)

   cfif (Evaluate("Form.Product"i) NEQ "")
   cfquery name="addrow" datasource="facilities"
INSERT INTO Inventory (SL, SLN, compound, manufacturer, activity,
product, NSN, ContainerSize, quantity, ro, rop)
 VALUES ('#thissl#', '#thissln#', '#thiscompound#',
'#ThisManufacturer#', '#thisactivity#', '#thisproduct#', '#thisNSN#',
'#thiscontainersize#', '#thisquantity#', '#thisro#', '#thisrop#')
   /cfquery
   /cfif
 /cfloop

Can someone help?  I'm in the process of upgrading to 4.5.1 right now - I'm
hovering at 89% complete but I'm tired and cranky and need this to work
tomorrow.  Will the upgrade fix this?  Anyone?

Thanks,
Erika


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



CF Classes in Toronto?

2000-04-18 Thread Marco Gil

I'm absolutely excited and motivated to learn everything about Cold
Fusion... My current non-related employment runs out on May 26th and I was
wondering if anyone knows of any good CF classes that are really detailed
and would allow me to secure a position as a web developer using Cold
Fusion.

I just wish a company would take the chance on me.  I'm so driven and
passionate about this... wish I would have gotten into web development years
ago.  I know a little about Cold Fusion and SQL based on two projects I've
been working on.. but want to have a lot of in depth knowledge.  I haven't
as of yet learned anything with regards to cookies, and the different types
of variables such as client, application etc... but I want to learn.  I'm in
the Toronto area and if anyone knows of some classes... please let me
know... Thanks!

Marco

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



Re: CF Classes in Toronto?

2000-04-18 Thread cragrat

- Original Message -
 I'm absolutely excited and motivated to learn everything about Cold
 Fusion... My current non-related employment runs out on May 26th and I was
 wondering if anyone knows of any good CF classes that are really detailed
 and would allow me to secure a position as a web developer using Cold
 Fusion.


Check out the Toronto CFUG @ http://www.cfugtoronto.org/ they  have a link to
www.torontotechnology.com  and information on courses offered by the Toronto
Technology Group. I don't know if taking a course will secure you employment but
it couldn't hurt :-) The TTG is to the best of my knowledge the only Allaire
Certified training facility in Toronto.

For CF based jobs in Toronto take a look at the Toronto CFUG job board and
http://globecareers.workopolis.com/ at the Globe and Mail site. I subscribed to
their email job alert and they usually have about 10-30 positions that have the
word "ColdFusion OR  (Cold AND Fusion)" in it every week.

Good luck!


: David Nesbitt
: Web Production Specialist
: (e) [EMAIL PROTECTED]





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



RE: CF Classes

2000-04-18 Thread Kelly Matthews

Its good but I had already read the CF Construction Kit book so the class
covered about 80% of what I already knew, it was a good refresher.  However,
the Advanced class, which I just took was extremely good. It used to be 2
days but they have stretched it out to 3, i learned quite a bit.
Kelly

-Original Message-
From: LH Rothman
To: [EMAIL PROTECTED]
Sent: 4/18/00 11:44 PM
Subject: CF Classes

I'm a newbie to CF and am considering taking the Fast Track to CF
class.  Anyone have anything good/bad to say about this class?  It's put
on by Productivity Point in LA.

Thanks,
-Laura


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



Re: CF Classes

2000-04-18 Thread Marco Gil

Would you recommend a relative newbie like myself take the advanced one?  I
have been doing queries, inserts, updates etc... the basic stuff for over 2
weeks now on these 2 projects... What do you suggest?  Where I really lack
is knowledge in variables such as client variables, session variables,
cookies, application.cfm's etc. etc... Forta's book seems to cover these
items in a measly 5 pages :)

Marco

- Original Message -
From: "Kelly Matthews" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, April 19, 2000 12:36 AM
Subject: RE: CF Classes


 Its good but I had already read the CF Construction Kit book so the class
 covered about 80% of what I already knew, it was a good refresher.
However,
 the Advanced class, which I just took was extremely good. It used to be 2
 days but they have stretched it out to 3, i learned quite a bit.
 Kelly

 -Original Message-
 From: LH Rothman
 To: [EMAIL PROTECTED]
 Sent: 4/18/00 11:44 PM
 Subject: CF Classes

 I'm a newbie to CF and am considering taking the Fast Track to CF
 class.  Anyone have anything good/bad to say about this class?  It's put
 on by Productivity Point in LA.

 Thanks,
 -Laura

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



Re: CF Classes

2000-04-18 Thread Emily B. Kim

Would you recommend a relative newbie like myself take the advanced one?  I
have been doing queries, inserts, updates etc... the basic stuff for over 2
weeks now on these 2 projects... What do you suggest?  Where I really lack
is knowledge in variables such as client variables, session variables,
cookies, application.cfm's etc. etc... Forta's book seems to cover these
items in a measly 5 pages :)

i teach the advanced class for allaire and, as an instructor, i would
suggest that you learn about session variables, cookies, and the
application framework before taking the course. the advanced class assumes
knowledge equivalent to the fast track to coldfusion class - which covers
those topics. i also recommend that students have a working knowledge of cf
for at least 3-6 months before attending the class. a lot of people assume
that ftcf is step one in the process of learning cf (which it is) but the
advanced class is NOT step 2. the advanced class helps you improve your
coding and teaches you more advanced topics that will allow you to create
more complex apps - that really implies that you should ideally already
feel very comfortable with cf. 

i have people attend the class who don't have the equivalent knowledge of
ftcf and they can GET THROUGH the class, but i don't think they get nearly
as much out of it as people who meet the prerequisites simply because they
are spending most of their time filling in the gaps. 

(also, the ftcf class doesn't just cover cf, it also covers studio in a lot
of detail so you will also get more familiar with the development
environment which also will help your coding.)

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



Classes Detailed Info on Variables/Cookies/Application.cfm

2000-04-18 Thread Marco Gil

Curious... are there good reference sites on the internet which discuss in
detail session variables, cookies and the application framework as it
applies to CF?  Documentation in Forta's book is very weak at best (5 pages
in total I think).

Also, with regards to the 1st course... they cover all these issues in
detail?  Thanks in advance.

Marco

- Original Message -
From: "Emily B. Kim" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, April 19, 2000 1:42 AM
Subject: Re: CF Classes


 Would you recommend a relative newbie like myself take the advanced one?
I
 have been doing queries, inserts, updates etc... the basic stuff for over
2
 weeks now on these 2 projects... What do you suggest?  Where I really
lack
 is knowledge in variables such as client variables, session variables,
 cookies, application.cfm's etc. etc... Forta's book seems to cover these
 items in a measly 5 pages :)

 i teach the advanced class for allaire and, as an instructor, i would
 suggest that you learn about session variables, cookies, and the
 application framework before taking the course. the advanced class assumes
 knowledge equivalent to the fast track to coldfusion class - which covers
 those topics. i also recommend that students have a working knowledge of
cf
 for at least 3-6 months before attending the class. a lot of people assume
 that ftcf is step one in the process of learning cf (which it is) but the
 advanced class is NOT step 2. the advanced class helps you improve your
 coding and teaches you more advanced topics that will allow you to create
 more complex apps - that really implies that you should ideally already
 feel very comfortable with cf.

 i have people attend the class who don't have the equivalent knowledge of
 ftcf and they can GET THROUGH the class, but i don't think they get nearly
 as much out of it as people who meet the prerequisites simply because they
 are spending most of their time filling in the gaps.

 (also, the ftcf class doesn't just cover cf, it also covers studio in a
lot
 of detail so you will also get more familiar with the development
 environment which also will help your coding.)

 hth!! -emily
 --

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



Re: CF Classes

2000-04-18 Thread Kevin R. Merker

Marco,
Forta's the known Guru of ColdFusion. But, there is another book called
Mastering ColdFusion 4 by Arman Danesh  Kristin Motlagh. Where the chapters
on Implementing ColdFusion Web Application Framework.
Cover:
Application Framework
Client Management
Session Management
Application Variables
Server Variables
CFLOCK
Putting It All Together

Just for this chapter alone the book was worth the purchase.

The sample CD application code I thought sucked because it is full of bugs
which end product frustrated me.
Unlike Forta's that helped you understand by watching it work. The two
together will help you immensely.

Kevin


- Original Message -
From: Marco Gil [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, April 19, 2000 5:15 AM
Subject: Re: CF Classes


 Would you recommend a relative newbie like myself take the advanced one?
I
 have been doing queries, inserts, updates etc... the basic stuff for over
2
 weeks now on these 2 projects... What do you suggest?  Where I really lack
 is knowledge in variables such as client variables, session variables,
 cookies, application.cfm's etc. etc... Forta's book seems to cover these
 items in a measly 5 pages :)

 Marco

 - Original Message -
 From: "Kelly Matthews" [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Wednesday, April 19, 2000 12:36 AM
 Subject: RE: CF Classes


  Its good but I had already read the CF Construction Kit book so the
class
  covered about 80% of what I already knew, it was a good refresher.
 However,
  the Advanced class, which I just took was extremely good. It used to be
2
  days but they have stretched it out to 3, i learned quite a bit.
  Kelly
 
  -Original Message-
  From: LH Rothman
  To: [EMAIL PROTECTED]
  Sent: 4/18/00 11:44 PM
  Subject: CF Classes
 
  I'm a newbie to CF and am considering taking the Fast Track to CF
  class.  Anyone have anything good/bad to say about this class?  It's put
  on by Productivity Point in LA.
 
  Thanks,
  -Laura
 
  
  --
  Archives: http://www.eGroups.com/list/cf-talk
  To Unsubscribe visit
  http://www.houseoffusion.com/index.cfm?sidebar=listsbody=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=listsbody=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=listsbody=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=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: CF Classes

2000-04-18 Thread Emily B. Kim

oh, one more thing...in the ftcf course you build an application from the
ground up, so you get a good sense of how to build an entire application -
adding in a simple security level as well. but in the acfd, most of the
applications are already built and you just add the higher functionality to
it (and a lot of the application uses session/application variables). so,
i've found that people with less experience with cf tend to get confused in
this class because it's harder for them to figure out what the application
is doing since they didn't build the whole thing themselves. ok, enough ;)
-emily

At 11:42 PM 4/18/2000 -0600, you wrote:
Would you recommend a relative newbie like myself take the advanced one?  I
have been doing queries, inserts, updates etc... the basic stuff for over 2
weeks now on these 2 projects... What do you suggest?  Where I really lack
is knowledge in variables such as client variables, session variables,
cookies, application.cfm's etc. etc... Forta's book seems to cover these
items in a measly 5 pages :)

i teach the advanced class for allaire and, as an instructor, i would
suggest that you learn about session variables, cookies, and the
application framework before taking the course. the advanced class assumes
knowledge equivalent to the fast track to coldfusion class - which covers
those topics. i also recommend that students have a working knowledge of cf
for at least 3-6 months before attending the class. a lot of people assume
that ftcf is step one in the process of learning cf (which it is) but the
advanced class is NOT step 2. the advanced class helps you improve your
coding and teaches you more advanced topics that will allow you to create
more complex apps - that really implies that you should ideally already
feel very comfortable with cf. 

i have people attend the class who don't have the equivalent knowledge of
ftcf and they can GET THROUGH the class, but i don't think they get nearly
as much out of it as people who meet the prerequisites simply because they
are spending most of their time filling in the gaps. 

(also, the ftcf class doesn't just cover cf, it also covers studio in a lot
of detail so you will also get more familiar with the development
environment which also will help your coding.)

hth!! -emily
---
---
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=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=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: CF Classes

2000-04-18 Thread David Shadovitz

Laura,

If you're in LA, consider coming to the monthly Southern California
ColdFusion User Group meeting.  Check out www.sccfug.org.  The main group
is in Seal Beach and a branch meets in Marina Del Rey.

-David  

On Tue, 18 Apr 2000 21:03:59 -0700 "Chris Giminez"
[EMAIL PROTECTED] writes:
 I took it and would recommend it. It didn't cover as much as I hoped, 
 but still was a "Fast Track"
 
 
 Chris Giminez
 
 
 
  I'm a newbie to CF and am considering taking the Fast Track to CF
  class.  Anyone have anything good/bad to say about this class?  
 It's put
  on by Productivity Point in LA.
 
  Thanks,
  -Laura
 
  

-
-
  Archives: http://www.eGroups.com/list/cf-talk
  To Unsubscribe visit 
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=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=listsbody=lists/cf_talk

 or send a message to [EMAIL PROTECTED] with 
 'unsubscribe' in the body.


YOU'RE PAYING TOO MUCH FOR THE INTERNET!
Juno now offers FREE Internet Access!
Try it today - there's no risk!  For your FREE software, visit:
http://dl.www.juno.com/get/tagj.
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: CF Classes

2000-04-18 Thread Emily B. Kim

At 12:42 AM 4/19/2000 -, you wrote:
Marco,
Forta's the known Guru of ColdFusion. But, there is another book called
Mastering ColdFusion 4 by Arman Danesh  Kristin Motlagh. Where the chapters
on Implementing ColdFusion Web Application Framework.

also, although you won't believe it, the help files in studio itself are
great! just search on any of those topics and you will find a lot of info.
it's a little more scattered than a book, but if you're dedicated you can
get all the info you need out of them. -emily
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



memory variables cflock

2000-04-18 Thread Emily B. Kim

btw, for those of you who will/are using server, application, or session
variables, you should also be locking those variables using CFLOCK. more
information on that can be found in this knowledge base artlcle:

http://www.allaire.com/Handlers/index.cfm?ID=14165Method=Full

this article also has a link to a migration tool that will upgrade your
code from 4.01 to 4.5 (locking is implemented differently in 4.5). -emily
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.