Dynamically populating a CFINCLUDE

2000-06-04 Thread C

I'd like to setup a CFINCLUDE that dynamically populates.. something like:

CFINCLUDE TEMPLATE="#var#

This would go to fill a DIV component with HTML that explains the 
selection they are making..

Now, I obviously don't want them to have to submit the form in order to see 
what the heck the option is, I need a way for once they click any of the 
image options / radioboxes / or make a CFSELECT for, within the same page, 
it to transfer the variable to the CFINCLUDE.

Or do I need to start thinking about a different solution?

--
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.



Dynamically populating a CFINCLUDE

2000-06-04 Thread C

I'd like to setup a CFINCLUDE that dynamically populates.. something like:

CFINCLUDE TEMPLATE="#var#

This would go to fill a DIV component with HTML that explains the 
selection they are making..

Now, I obviously don't want them to have to submit the form in order to see 
what the heck the option is, I need a way for once they click any of the 
image options / radioboxes / or make a CFSELECT for, within the same page, 
it to transfer the variable to the CFINCLUDE.

Or do I need to start thinking about a different solution?

-

Following up myself, I'm beginning to wonder if this is the means..

have the divCFINCLUDE TEMPLATE="finder.cfm?#var# /div

And have the finder.cfm basically turn the var field into the HTML to load 
where finder.cfm ends up starting a second spawn of CFINCLUDE with the 
proper file selected ... the problem is turning the image map variables, or 
just a Javascript feed into the #var#

then again, it's 2AM, the problem could be no sleep!

--
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: Cookies in IE And Netscape

2000-06-04 Thread Jeff

ben,

:~~
: From: Ben Densmore [EMAIL PROTECTED]
:
: Is it common for a cookie not to be recognized in
: Netscape if it's been set initially using IE? I'm doing
: some testing on an App I just finished, I originally used
: IE to test it and the cookie I am setting worked fine, I then
: wanted to make sure everything was working in Netscape
: and it didn't seem to recognize the cookie, once I filled out
: the form and the cookie was set using Netscape it works
: fine. Just curious as to whether this is normal or not.
:~~

when you consider that a cookie is a file that's relative to the browser
that set it, then yes, this is normal behavior.  cookies set when ie is used
are not accessible by netscape and vice versa.  they don't even store them
in the same places.  ie stores them in your temporary internet files folder
under c:/windows/.  netscape stores them in a single text file called
cookies.txt located somewhere within the folders created during the netscape
install.

good luck,

.jeff

name://jeff.howden
game://web.development
http://www.evolt.org/
mailto:[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: Counting Characters in a Word Document

2000-06-04 Thread David Shadovitz

 I was wondering if anyone knows of a custom tag (or something?)
that will
 dynamically count the number of words in an uploaded Word Document.

Edward,

You can use CFOBJECT to instantiate Word, open the uploaded doc, and then
get the following properties:

  ActiveDocument.Characters.Count 
  ActiveDocument.Words.Count (includes periods and paragraph markers)
  ActiveDocument.Sentences.Count 

-David

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: Another question on performance -- better than lists?

2000-06-04 Thread Nick Slay

In order to get the element specified in ListGetAt, CF still has to work 
through the list and find that element, which still means reading each 
character etc etc.

You can do the same with an array without calling a funciton... 
nameofarray[elementno]

If you can, use arrays over lists.






At 12:23 2/06/00 -0400, you wrote:
your tests suggest looping through lists performs slower than other data
structures. however, what about list functions like ListGetAt()? list
functions are a large reason why i choose lists over arrays most of the
time.

mike

  -Original Message-
  From: Chris Evans [mailto:[EMAIL PROTECTED]]
  Sent: Thursday, June 01, 2000 1:32 PM
  To: [EMAIL PROTECTED]
  Subject: RE: Another question on performance -- better than lists?
 
 
  I just ran some tests, and was surprised by the results.
 
  Caveats:
 
  1)  These are simple looping tests, and only give a general idea of speed.
  YMMV.
  2)  Use the most reasonable variable type for the job.
  Converting a list to
  an array to use array functions may negate any performance gains you may
  see. If you are looking for a value, and you only know its name, use a
  structure.
 
  The tests:
 
  I created a series of simple loop statements for each variable type:
  Queries, Arrays, Structures, and Lists.  They were all equivalent to a
  2-dimensional array.  Each "Set" loop consisted of 5000
  iterations.  I then
  created another set of loops of 100 iterations to grab some values.
 
  Summary:
 
I expected Structures to be fastest, but that honor went to Arrays.
  Arrays are followed closely by Queries.  Structures were a little slower,
  and lists took *forever*. Structures are very powerful, and
  definitely have
  performance gains if you are dealing with keys/values, but are not
  inherently faster.
 
  Results:
 
  Query Set Time: 3515 ms
  Query Get Time: 10 ms
  --
  --
  
  Array Set Time: 3174 ms
  Array Get Time: 10 ms
  --
  --
  
  Struct Set Time: 5368 ms
  Struct Get Time: 20 ms
  --
  --
  
  List Set Time: 47248 ms
  List Get Time: 711 ms
 
 
  If anybody wants to see the test code, let me know and I'll mail
  it offlist.
  If anybody else has done any testing, I would like to see those results as
  well.
 
  Chris Evans
  [EMAIL PROTECTED]
  http://www.fuseware.com
 
 
  -Original Message-
  From: Mike Amburn [mailto:[EMAIL PROTECTED]]
  Sent: Thursday, June 01, 2000 10:21 AM
  To: [EMAIL PROTECTED]
  Subject: RE: Another question on performance -- better than lists?
 
 
   ok... so when it comes to performance, it's better to use
   strutctures than
   arrays and both of those are better than lists.
 
  i thought lists were always fastest. is this not true? when did
  this happen?
 
  mike
 
  --
  --
  --
  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 pages coming up as text

2000-06-04 Thread Al Musella, DPM

just reinstall cf!

Al

At 10:15 AM 6/2/2000 -0500, you wrote:
We just had to reinstall MS IIS, and now our CF pages are coming up as text.
Any ideas? Happy to send more information.


--
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: cfgrid question

2000-06-04 Thread Seamus Campbell

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

I had this problem when testing cfgrid on my personal machine - however it 
went away when used "live"
HTH
Seamus

At 01:36 am 4/6/2000 , you wrote:

I am trying to do insert with cfgrid and when I type anything in a field, it
shows up twice i.e.
I enter 1 and it shows up as 11.

I have tried about every combination of options I can think of, checked out
all doc on
the cfgrid and cfcolumn. Reinstalled cf server 4.5 and copied new
cfrdsservice.exe
I have checked the cf faq for cfgrid and checked out the responses but no
joy.
I am about out of ideas, can anyone help.

thanks
Jim Kellow
[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.

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! 
--=_16233252==_.ALT
Content-Type: text/html; charset="us-ascii"

html
font size=3I had this problem when testing cfgrid on my personal
machine - however it went away when used quot;livequot;br
HTHbr
Seamusbr
br
At 01:36 am 4/6/2000 , you wrote:br
blockquote type=cite citenbsp;br
I am trying to do insert with cfgrid and when I type anything in a field,
itbr
shows up twice i.e.br
I enter 1 and it shows up as 11.br
nbsp;br
I have tried about every combination of options I can think of, checked
outbr
all doc onbr
the cfgrid and cfcolumn. Reinstalled cf server 4.5 and copied newbr
cfrdsservice.exebr
I have checked the cf faq for cfgrid and checked out the responses but
nobr
joy.br
I am about out of ideas, can anyone help.br
nbsp;br
thanksbr
Jim Kellowbr
[EMAIL PROTECTED]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 [EMAIL PROTECTED] with 'unsubscribe' in the body. 
/font/blockquotebr
divSeamus Campbellnbsp;nbsp; BookBusiness - Netinfo/div
diva href="http://www.bookbusiness.com.au/" 
EUDORA=AUTOURLwww.bookbusiness.com.au/anbsp;nbsp;nbsp;nbsp;nbsp;nbsp; 
[EMAIL PROTECTED]/div
divph 02 6297 4883nbsp;nbsp; faxnbsp; 02 6297 8464nbsp;nbsp; mob 0416 055 171 
/div
In the Book Business? You need BookBusiness!
/html

--=_16233252==_.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.



Re: Cookies in IE And Netscape

2000-06-04 Thread James Sleeman


On Sat, 03 Jun 2000 02:05:41 Ben Densmore wrote:

 Is it common for a cookie not to be recognized in Netscape if it's been =
 set initially using IE? I'm doing some testing on an App I just =
 finished, I originally used IE to test it and the cookie I am setting =
 worked fine, I then wanted to make sure everything was working in =
 Netscape and it didn't seem to recognize the cookie, once I filled out =
 the form and the cookie was set using Netscape it works fine. Just =
 curious as to whether this is normal or not.
 
 Thanks
 
 Ben Densmore
 Webmaster
 eSupport.com, Inc
 TouchStone Software Corp.
 

Cookies are set per-browser, that is, NS doesn't know about cookies that IE has
stored, 
IE doesn't know about cookies that NS has stored.  Remember that cookies are
stored in the
browser (well, the browser stores them somewhere on disk) not on server.


--
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: offline

2000-06-04 Thread Chris

At 11:24 AM 6/3/2000 -0400, you wrote:
You know, this is probably been posted 1 million times, but the list has
been down for two days… or I’m not getting any email from it… either way,
will someone email me directly if the list is still up and I’ve been
unsubscribed?


Seems to be OK, it just pukes up a storm of mail all at once for me, around 
11PM CST every night..

CW

--
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.



Question about invoking Evaluate in a list attribute of a cfloop.

2000-06-04 Thread Tim Dempsey

Folks,

I'm sorry if this appears twice on thelist. But I submitted it the first
time about 13 hours ago and I still don't sdee it. So I'm trying again.


I have a question about where function invocations are legal.

Maybe someone can explain this for me. Here's what prompted my question:

1.) I have a form with a  number of different sets of checkboxes. Thay are
named c1, c2, c3, c4, ... cn

2.) The sets are placed on the form with
cfselect name="C#n#" query="G" value="q" required="Yes"
multiple/cfselect
where #n# is a loop counter.

3.) Note the required="Yes" and multiple attributes in the cfselect. They
guarantee that
there will always be a value for form field Cn and sometimes that value
will be a
comma-separated list.

4.) When I tried the following, ColdFusion balked on the Evaluate function
in the list attribute:
:
cfloop index="n" from="1" to="#number_of_sets#"
cfloop index="this_group" list="Evaluate('FORM.C#n#')"...
...
...   /cfloop
/cfloop

5.) But it worked when I used the Evaluate function in a cfset tag and
referred to the variable in the cfloop's list attribute. Thus:

cfset xlist = Evaluate('FORM.C#n#')
cfloop index="n" from="1" to="#number_of_sets#"
cfloop index="this_group" list="xlist"  ...... ... 
/cfloop
/cfloop


How come? Can I use a function in the list attribute of the cfloop tag? Or
is it the way I coded the Evaluate tag?

Anybody

Thanks,
  -- Tim Dempsey

--
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: Slightly OT

2000-06-04 Thread Shane Witbeck

I do all of my coding in CF Studio 4 and switch to Dreamweaver for anything
design-related.

I recently acquired the newest step up from Dreamweaver (Dreamweaver
UltraDev) which fell short of my expectations. It promised live data
manipulation as you designed the page and this is nearly impossible unless
your ODBC datasource is local.

In short I would stick with CF Studio/Homesite and additionally Dreamweaver
3 for designing (works great for manipulating tables, image maps, etc.)

...my 2 sense :P

Sincerely,

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




-Original Message-
From: Roberts, Jesse D [mailto:[EMAIL PROTECTED]]
Sent: Thursday, June 01, 2000 3:31 PM
To: '[EMAIL PROTECTED]'
Subject: RE: Slightly OT


Yeah.  Homesite is basically ColdFusion repackaged.  It has a few different
features, but it is NOT wysiwyg.  If you're looking for simple editor
besides FrontPage, you could of course use either the Composer part of
Netscape, or Front Page express.  If you don't like that option, what's
wrong with either PageMill or DreamWeaver.  I guess it just depends on the
level of the user which of these are considered easy or not.

Jesse D. Roberts
Business Process Analyst
Procurement Quality Assurance
Boeing - Huntington Beach, CA


 -Original Message-
 From: Jeffrey Cohen [SMTP:[EMAIL PROTECTED]]
 Sent: Thursday, June 01, 2000 9:08 AM
 To:   House OfFusion
 Subject:  Slightly OT

 Does anyone have experience with homesite?

 I need to recommend a SIMPLE wysiwyg editor to a customer of mine. Is
 Homesite Wysywyg or an HTML editor?, and if it's html, can anyone
 recommend a simple wys...editor BESIDES front page?

 Thanks,

 Jeffrey Cohen
 ImageWorks

 --
 
 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: Replacing line breaks and paragraph breaks with HTML equivelents

2000-06-04 Thread John Allred

Dennis Powers wrote:
 
 Dave,
 
 BTW: Although I have never taken your course, you have taught me much
 through this medium and for that I thank you.
 

Me too. Hey! You got a course? Where can I find out more?
-- 
John Allred / Jackson, Mississippi
Mississippi Counties
http://www.mscounties.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.



RE: Password Verification

2000-06-04 Thread Steve Pierce

Double password login is not any more secure than single password. Unless
you use two different passwords.

 - Steve


-Original Message-
From: Marlene Buffa [mailto:[EMAIL PROTECTED]]
Sent: Thursday, June 01, 2000 6:12 PM
To: [EMAIL PROTECTED]
Subject: Password Verification


Hello,

I have a set up form for people to  type in their Username and
Password which gets input into the DB.

We want them to type in their password twice to verify, for this
initial input.

Is there a way to do this in CF (client side?) or do I have to use
JavaScript?  In either case does anyone know how to do this?

thanks
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.

--
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.



JRE.exe

2000-06-04 Thread paul smith

What is jre.exe?

Where did it come from?  (ColdFusion or WebSitePro?)

Why do I need it?

best,  paul

--
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.



Los Angeles Chapter Southern California ColdFusion Users Group

2000-06-04 Thread Marcia Booth



Oops!  I forgot to post the address!

The Los Angeles Chapter of the Southern California ColdFusion Users Group will
hold its monthly meeting on Tuesday, June 6 at 7:00.  Doug Nottage will deliver
a presentation on How to Scale ColdFusion Applications.

The meeting will be held at Event411.com, 13160 Mindanao Way, Suite 300, Marina
del Rey, CA.   Here are directions:

Take the 405 Fwy to the Marina Fwy (90) West. When the
freeway ends, continue straight until Mindanao Way and turn right.
Continue for 1/2 block, then turn right into the Marina
Business Center at 13160 Mindanao Way. Event 411 is in Suite 300.

Seating is limited, so please RSVP by e-mail to [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.



No Subject

2000-06-04 Thread Marcia Booth



Oops!  I forgot to post the address!

The Los Angeles Chapter of the Southern California ColdFusion Users Group will
hold its monthly meeting on Tuesday, June 6 at 7:00.  Doug Nottage will deliver
a presentation on How to Scale ColdFusion Applications.

The meeting will be held at Event411.com, 13160 Mindanao Way, Suite 300, Marina
del Rey, CA.   Here are directions:

Take the 405 Fwy to the Marina Fwy (90) West. When the
freeway ends, continue straight until Mindanao Way and turn right.
Continue for 1/2 block, then turn right into the Marina
Business Center at 13160 Mindanao Way. Event 411 is in Suite 300.

Seating is limited, so please RSVP by e-mail to [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.



removing space between words being uploaded to a database

2000-06-04 Thread AustralianAccommodation.com Pty. Ltd.

This is a multi-part message in MIME format.

--=_NextPart_000_0021_01BFCE3C.048BE5A0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

can I ask what the code is to remove spaces between words so that I can =
update the database with the values minus the blank spaces


Kind Regards

Claude Raiola (Director)
AustralianAccommodation.com Pty. Ltd.
Website: www.AustralianAccommodation.com
Email: [EMAIL PROTECTED]

--=_NextPart_000_0021_01BFCE3C.048BE5A0
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.2722.2800" name=3DGENERATOR
STYLE/STYLE
/HEAD
BODY bgColor=3D#ff
DIVFONT face=3DArial size=3D2can I ask what the code is to remove =
spaces between=20
words so that I can update the database with the values minus the blank=20
spaces/FONT/DIV
DIVFONT face=3DArial size=3D2/FONTnbsp;/DIV
DIVnbsp;/DIV
DIVFONT face=3DArial size=3D2Kind Regards/FONT/DIV
DIVnbsp;/DIV
DIVFONT face=3DArial size=3D2Claude Raiola=20
(Director)BRAustralianAccommodation.com Pty. Ltd.BRWebsite: A=20
href=3D"http://www.AustralianAccommodation.com"www.AustralianAccommodati=
on.com/ABREmail:=20
A=20
href=3D"mailto:[EMAIL PROTECTED]"Director@AustralianA=
ccommodation.com/A/FONT/DIV/BODY/HTML

--=_NextPart_000_0021_01BFCE3C.048BE5A0--

--
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: Password Verification

2000-06-04 Thread Pablo Nevares

I had users do this to register for a forum I modified (e-mail registration
is cool =), and basically in the page the form is submitted to i put a

cfif Form.password1 NEQ Form.password2
[error message, javascript to pop up an altert and send them back, or
something]
/cfif

That worked fine.

Pablo Nevares
Information Technology
Hendricks  Partners
[EMAIL PROTECTED]

 -Original Message-
 From: Marlene Buffa [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, June 01, 2000 3:12 PM
 To: [EMAIL PROTECTED]
 Subject: Password Verification


   Hello,

 I have a set up form for people to  type in their Username and
 Password which gets input into the DB.

   We want them to type in their password twice to verify, for this
 initial input.

   Is there a way to do this in CF (client side?) or do I have to use
 JavaScript?  In either case does anyone know how to do this?

   thanks
   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.

--
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: writing to a database error

2000-06-04 Thread James Sleeman


On Fri, 02 Jun 2000 22:17:23 Samantha Jones wrote:
 Hi, 
 I'm new to this so I hope I've mailed the right list...

   FromDate='#FromDate#',
   ToDate='#ToDate#',

   WHERE ID='#Session.TradeID#'

Probably it is one of these causing your problem, I'm guessing that FromDate
and ToDate are Access Date/Time fields, in which case they should be inserted
in
ODBC format and without quotes (ie #CreateODBCDate(FromDate)# ), I'm also
guessing that ID is probably an integer field of some sort, in which case lose
the
quotes there too (i.e #Session.TradeID#).

--
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.



studio errors

2000-06-04 Thread Greg Saunders

I'm running Studio 4.5.1, and seeing lots of exception errors.  I reboot my
machine, start Studio, and then quit, and I get:

Application Error:  Exception EAccessViolation in module 
cfstudio45.exe at address 004F9614 in module 'cfstudio45.exe'.  
Read of address 01ADC064.

This happens repeatedly when I quit.  It did not happen when I first
installed 4.5, but it seems suddenly frequent, and I'm not sure what changed.

Also, occasionally when I save a file, the file is saved, but the file tab
still shows the file as unsaved, and I occasionally also get exception
errors while editing.

Any ideas what would cause this?  Should I reinstall?  Originally I was
running 4.0, then I installed a 4.5 upgrade, and finally I installed the
4.5.1 upgrade.  If I reinstall, do I need to follow these steps again, or
is the 4.5.1 upgrade a complete version?

Gregory M. Saunders, Ph.D.
Senior Design Architect
Cognitive Arts Corporation  (http://www.cognitivearts.com)
1840 Oak Avenue, 4th Floor
Evanston, IL 60201-5914

--
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: [Re: Replacing line breaks and paragraph breaks with HTML equivelents]

2000-06-04 Thread double-down

function stripcr()

"pan" [EMAIL PROTECTED] wrote:

From: Dave Watts [EMAIL PROTECTED]

 It can't be too stupid a question, because I don't really know what it is.
I
 believe it's an instruction to the printer to move to the next line, but
 given that's what a carriage return is as well, I don't have a good answer.
 In Windows, text files usually end each line with a carriage return
 (Chr(13)) followed by a line feed (Chr(10)). Text files in Unix, on the
 other hand, typically do without line feeds; when you open up a text file
 created in Unix in Notepad, you'll see all these little black "unprintable
 character" squares - carriage returns without line feeds.


Unix uses 'newline' to delimit lines. Text paragraphs get orthographically
presented 'correctly' because unix environments drop the cursor down
one line for each newline char.

MSDOS/etc uses 'linefeed' + 'carriage return' (chr10, chr13 respectively).
This is modelled almost like how a platen is controlled in a typewriter.
When you operate the handle at the end of the typewriter you are both
actuating a lever that rolls the platen back one line and the horizontal
pulling
on that same lever returns the carriage to the first printing position. Thus,
'linefeed' and 'carriage return'.

newline==linefeed

without linefeed chars but with cr all lines get "printed" on the same line
without cr but with linefeed all lines get run together as one long line

Those uprintable chars you see in a DOS environment trying to display
a unix file are linefeeds - without an associated cr there is only one
line as far as DOS is concerned - only wraps and display limts forces
any formatting. You can see this by looking at an unix file in DOS by
dragging the dimensions of the window - the unix file will fill the window
much like water seeking its own level - a chr10+chr13 delimited file will
show the same line formatting no matter the size of the window.

It is all about using certain characters as controls to move the cursor.
Thus 'control characters' :)

Pan



--
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: studio errors

2000-06-04 Thread paul smith

These happen to me, too.  But only occasionally.
The good news is that 4.5.1 doesn't appear to be
zeroing out templates.

In addition, I get a phony "Someone else has
modified the file" (or some such) when I'm the
only one here doing it.

It's annoying to worrying as to if Studio is
going to explode and wipe my hard drive or
something;-)

Don't know the fixes.

best,  paul

At 06:34 AM 6/4/00 -0500, you wrote:
I'm running Studio 4.5.1, and seeing lots of exception errors.  I reboot my
machine, start Studio, and then quit, and I get:

 Application Error:  Exception EAccessViolation in module
 cfstudio45.exe at address 004F9614 in module 'cfstudio45.exe'.
 Read of address 01ADC064.

This happens repeatedly when I quit.  It did not happen when I first
installed 4.5, but it seems suddenly frequent, and I'm not sure what changed.

Also, occasionally when I save a file, the file is saved, but the file tab
still shows the file as unsaved, and I occasionally also get exception
errors while editing.

Any ideas what would cause this?  Should I reinstall?  Originally I was
running 4.0, then I installed a 4.5 upgrade, and finally I installed the
4.5.1 upgrade.  If I reinstall, do I need to follow these steps again, or
is the 4.5.1 upgrade a complete version?

Gregory M. Saunders, Ph.D.
Senior Design Architect
Cognitive Arts Corporation  (http://www.cognitivearts.com)
1840 Oak Avenue, 4th Floor
Evanston, IL 60201-5914

--
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.



Structures and Arrays and Memory Usage

2000-06-04 Thread Tim Dempsey

Folks,

I now need some help on another topic.

I am developing a web page that will pose a set of questions to users,
analyze their responses, and then pose other questions based on those
responses. This cycle can continue for a very long time.

I am keeping track of the questions on the page being displayed by storing
information in an array with one element for every question that get placed
on the page. The contents of that element is a structure that contains the
information about the query (query_text, answer_type,
answer_form_field_name, etc. etc.). The array is in the Session scope. The
action template for the question page will analyze the user's responses by
looping through the array to determine how to handle the form fields..

My question is: as I place a question on the page and need to fill in the
structure that will go into the array, should I do something like cfset
Session.question_info = StructNew() ??? If so, it seems that I will be
constructing an indefinitely large number of these strucures(one for each
question on a page and pages being constructed and displayed  until the user
exits from the process).

Won't that eat up an inordinate amount of memory? Is there a way to free up
or delete all of the structures that were constructed for a page after it is
analyzed and before the next page is begun? Or is that not necessary?

Can anyone enlighten me?

Thanks,
  -- Tim Dempsey


--
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: studio errors

2000-06-04 Thread Shane Witbeck

I have these also and they only seem to happen if I have Dreamweaver open at
the same time? I never did research to resolve the problem, instead I just
closed and restarted each program (DW and CF Studio).

Sincerely,

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




-Original Message-
From: paul smith [mailto:[EMAIL PROTECTED]]
Sent: Sunday, June 04, 2000 9:16 AM
To: [EMAIL PROTECTED]
Subject: Re: studio errors


These happen to me, too.  But only occasionally.
The good news is that 4.5.1 doesn't appear to be
zeroing out templates.

In addition, I get a phony "Someone else has
modified the file" (or some such) when I'm the
only one here doing it.

It's annoying to worrying as to if Studio is
going to explode and wipe my hard drive or
something;-)

Don't know the fixes.

best,  paul

At 06:34 AM 6/4/00 -0500, you wrote:
I'm running Studio 4.5.1, and seeing lots of exception errors.  I reboot my
machine, start Studio, and then quit, and I get:

 Application Error:  Exception EAccessViolation in module
 cfstudio45.exe at address 004F9614 in module 'cfstudio45.exe'.
 Read of address 01ADC064.

This happens repeatedly when I quit.  It did not happen when I first
installed 4.5, but it seems suddenly frequent, and I'm not sure what
changed.

Also, occasionally when I save a file, the file is saved, but the file tab
still shows the file as unsaved, and I occasionally also get exception
errors while editing.

Any ideas what would cause this?  Should I reinstall?  Originally I was
running 4.0, then I installed a 4.5 upgrade, and finally I installed the
4.5.1 upgrade.  If I reinstall, do I need to follow these steps again, or
is the 4.5.1 upgrade a complete version?

Gregory M. Saunders, Ph.D.
Senior Design Architect
Cognitive Arts Corporation  (http://www.cognitivearts.com)
1840 Oak Avenue, 4th Floor
Evanston, IL 60201-5914

---
---
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: Dynamically populating a CFINCLUDE

2000-06-04 Thread Seth Petry-Johnson

 I'd like to setup a CFINCLUDE that dynamically populates.. something like:

 CFINCLUDE TEMPLATE="#var#

 This would go to fill a DIV component with HTML that explains the
 selection they are making..
snip

 have the divCFINCLUDE TEMPLATE="finder.cfm?#var# /div

 And have the finder.cfm basically turn the var field into the HTML to load
 where finder.cfm ends up starting a second spawn of CFINCLUDE with the
 proper file selected ... the problem is turning the image map variables,
or
 just a Javascript feed into the #var#

It sounds like you're having trouble differentiating between client side
code and server side code.  CF is server side, which means that CF
statements are evaluated BEFORE the page gets sent to the browser.  User
requests page - CF server evaluates CF code and creates a simple HTML
document - HTML document is sent to user.  Once the browser receives the
HTML no more CF code will run unless you request another page from the
server.

You can not invoke any CF tags such as CFINCLUDE once the page has been sent
to the browser, so you're going to have to find another way of doing what
you want.

Based upon your application specs there are a couple of ways you can do
this.  They all require some level of JavaScript support by the browser.

1) Each time the user makes a selection you could reload the page to show
the info about their selection, but this is a pretty nasty way to go.
However, it requires no special client side scripting and will work in all
browsers.

2) You could create a series of overlapping layers where each layer contains
the info for one of the possible selections.  Each time the user clicks on a
selection you could make the relevant layer to the "highest" on the stack,
thereby making it visible.  This should work in both Netscape and IE (4.x+
versions) but has two disadvantages: first, you would have to include the
info for all possible selections as hidden layers.  This could result in the
document becoming relatively large and therefore a long download.  Secondly,
the HTML code itself could get a little ugly with all of the overlapped
layers.

3) If you are targeting an IE 4.x+ audience only you can use the DIV's
.innerHTML or .innerText properties to dynamically rewrite the contents of
the DIV tag.  This is far easier to do then the layer method but only works
on IE 4 and up.

4) You could use frames in such a way that each time the user makes a
selection a frame updates to show the info for that selection.  This will
work in all frame aware browsers and is better than option 1 because only a
small portion of the page reloads each time the user makes a selection.

Hope this helps,
Seth Petry-Johnson
Argo Enterprise and Associates
Using
divCFINCLUDE TEMPLATE="finder.cfm?#var# /div

will result in a DIV section containing the output of finder.cfm, but

--
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: Dynamically populating a CFINCLUDE

2000-06-04 Thread C


It sounds like you're having trouble differentiating between client side
code and server side code.  CF is server side, which means that CF
statements are evaluated BEFORE the page gets sent to the browser.  User
requests page - CF server evaluates CF code and creates a simple HTML
document - HTML document is sent to user.  Once the browser receives the
HTML no more CF code will run unless you request another page from the
server.

Yep, I figured that, I just figured there was a way to basically drop down 
CFINCLUDEs.. after a good night sleep (which was needed) I came to this 
conclusion:

2) You could create a series of overlapping layers where each layer contains
the info for one of the possible selections.  Each time the user clicks on a
selection you could make the relevant layer to the "highest" on the stack,
thereby making it visible.  This should work in both Netscape and IE (4.x+
versions) but has two disadvantages: first, you would have to include the
info for all possible selections as hidden layers.  This could result in the
document becoming relatively large and therefore a long download.  Secondly,
the HTML code itself could get a little ugly with all of the overlapped
layers.

This is somewhat what I did.  I created 5 DIVS with seperate CFINCLUDEs 
so that I can continuously change the content upon demand and enabled them 
via DHTML drop downs..

3) If you are targeting an IE 4.x+ audience only you can use the DIV's
.innerHTML or .innerText properties to dynamically rewrite the contents of
the DIV tag.  This is far easier to do then the layer method but only works
on IE 4 and up.

Yeah, I thought about this, but had to rule it out ;(

Using multiple DIVCFINCLUDE TEMPLATE functions basically worked out to 
fix the problem I was after.. and it fundamentally wasn't that bad.

(then again, I'm not trying to recreate madness, ala 
http://news.ortaga.com/ which someone referred me to, just four dropdowns.. )

CW

--
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: Dynamically populating a CFINCLUDE

2000-06-04 Thread Fred T. Sanders

Why not just use a cfswitchcfset group and bring up
whatever cfinclude you need.

cfparam name="url.dspaction" type="string"
default="mydefault"

cfswitch expression = "#url.dspaction"

cfcase value="mydefault"
cfinclude template="mydefault.cfm"
/cfcase

cfcase value="mysecondchoice"
cfinclude template="my2ndchoice.cfm"
/cfcase

cfcase value="mythirdchoice"
cfinclude template="my3rdchoice.cfm"
/cfcase

/cfswitch

like so.  your template might be a little lengthy but the
resulting html should be a bit smaller, and load faster.

Fred

- Original Message -
From: "C" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Sunday, June 04, 2000 11:30 AM
Subject: Re: Dynamically populating a CFINCLUDE
 snip snip ---


 Yeah, I thought about this, but had to rule it out ;(

 Using multiple DIVCFINCLUDE TEMPLATE functions
basically worked out to
 fix the problem I was after.. and it fundamentally wasn't
that bad.

 (then again, I'm not trying to recreate madness, ala
 http://news.ortaga.com/ which someone referred me to, just
four dropdowns.. )

 CW


--
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: Slightly OT

2000-06-04 Thread Steve Reich

Dreamweaver has my vote as well and don't ever say "FrontPage" in this
forum again!..;-)

Steve

- Original Message -
From: "Jeffrey Cohen" [EMAIL PROTECTED]
To: "House OfFusion" [EMAIL PROTECTED]
Sent: Thursday, June 01, 2000 12:07 PM
Subject: Slightly OT


 Does anyone have experience with homesite?

 I need to recommend a SIMPLE wysiwyg editor to a customer of mine. Is
 Homesite Wysywyg or an HTML editor?, and if it's html, can anyone
 recommend a simple wys...editor BESIDES front page?

 Thanks,

 Jeffrey Cohen
 ImageWorks

 --

 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.



#DateFormat(abcd)#

2000-06-04 Thread Anand Sunny


#DateFormat(abcd)# using Access (2000)worked just fine on my pws/98. While
uploaded it onto the iis/nt using Access (??) is giving problem. The problem
is the #Date# which is a Date/Time field in the db is outputting "6/4/200"
instead of "6/4/2000". I checked it with #DateFormat(Now())# where year
shows '2000'.

Can anyone help me in this regard please? I appreciate it very much. Thanks
in advance.


APS

--
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.



test

2000-06-04 Thread Dick Applebaum

Test
--
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: #DateFormat(abcd)#

2000-06-04 Thread Shane Witbeck

use #DateFormat(date_added,"mm.dd.")#

Sincerely,

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




-Original Message-
From: Anand Sunny [mailto:[EMAIL PROTECTED]]
Sent: Sunday, June 04, 2000 1:23 PM
To: [EMAIL PROTECTED]
Subject: #DateFormat(abcd)#



#DateFormat(abcd)# using Access (2000)worked just fine on my pws/98. While
uploaded it onto the iis/nt using Access (??) is giving problem. The problem
is the #Date# which is a Date/Time field in the db is outputting "6/4/200"
instead of "6/4/2000". I checked it with #DateFormat(Now())# where year
shows '2000'.

Can anyone help me in this regard please? I appreciate it very much. Thanks
in advance.


APS


--
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.



test

2000-06-04 Thread cftalk

This is a test

SD Solutions
Uwe Degenhardt
Fon: 08122/903791
Fax: 08122/903792
Web: http://www.sdsolutions.de
E-Mail: [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.



List question?

2000-06-04 Thread Joseph Eugene

Hello all,

When Posting to this list, is it necessary to paste this?
"
 ---
---
 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.

"
or am i doing something wrong?

Thanks
Joe









 --

 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: studio errors

2000-06-04 Thread William J Wheatley

yes i get the same crap with mine and its only when i have DW3 open =0) so
hopefully they'll come out with a fix cause its an annoying problem
- Original Message -
From: "paul smith" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Sunday, June 04, 2000 9:16 AM
Subject: Re: studio errors


 These happen to me, too.  But only occasionally.
 The good news is that 4.5.1 doesn't appear to be
 zeroing out templates.

 In addition, I get a phony "Someone else has
 modified the file" (or some such) when I'm the
 only one here doing it.

 It's annoying to worrying as to if Studio is
 going to explode and wipe my hard drive or
 something;-)

 Don't know the fixes.

 best,  paul

 At 06:34 AM 6/4/00 -0500, you wrote:
 I'm running Studio 4.5.1, and seeing lots of exception errors.  I reboot
my
 machine, start Studio, and then quit, and I get:
 
  Application Error:  Exception EAccessViolation in module
  cfstudio45.exe at address 004F9614 in module 'cfstudio45.exe'.
  Read of address 01ADC064.
 
 This happens repeatedly when I quit.  It did not happen when I first
 installed 4.5, but it seems suddenly frequent, and I'm not sure what
changed.
 
 Also, occasionally when I save a file, the file is saved, but the file
tab
 still shows the file as unsaved, and I occasionally also get exception
 errors while editing.
 
 Any ideas what would cause this?  Should I reinstall?  Originally I was
 running 4.0, then I installed a 4.5 upgrade, and finally I installed the
 4.5.1 upgrade.  If I reinstall, do I need to follow these steps again, or
 is the 4.5.1 upgrade a complete version?
 
 Gregory M. Saunders, Ph.D.
 Senior Design Architect
 Cognitive Arts Corporation  (http://www.cognitivearts.com)
 1840 Oak Avenue, 4th Floor
 Evanston, IL 60201-5914
 

---
---
 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: studio errors

2000-06-04 Thread Ben Densmore

I run inot the same problem all the time, alot of times I end up just using
CF Studio 4.0.1   it seems to be alot more stable than 4.5.1, I haven't
tried reinstalling mine yet. i'm not positive but I think 4.5.1 might just
be an upgrade
Ben
- Original Message -
From: William J Wheatley [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, June 04, 2001 2:27 PM
Subject: Re: studio errors


 yes i get the same crap with mine and its only when i have DW3 open =0) so
 hopefully they'll come out with a fix cause its an annoying problem
 - Original Message -
 From: "paul smith" [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Sunday, June 04, 2000 9:16 AM
 Subject: Re: studio errors


  These happen to me, too.  But only occasionally.
  The good news is that 4.5.1 doesn't appear to be
  zeroing out templates.
 
  In addition, I get a phony "Someone else has
  modified the file" (or some such) when I'm the
  only one here doing it.
 
  It's annoying to worrying as to if Studio is
  going to explode and wipe my hard drive or
  something;-)
 
  Don't know the fixes.
 
  best,  paul
 
  At 06:34 AM 6/4/00 -0500, you wrote:
  I'm running Studio 4.5.1, and seeing lots of exception errors.  I
reboot
 my
  machine, start Studio, and then quit, and I get:
  
   Application Error:  Exception EAccessViolation in module
   cfstudio45.exe at address 004F9614 in module 'cfstudio45.exe'.
   Read of address 01ADC064.
  
  This happens repeatedly when I quit.  It did not happen when I first
  installed 4.5, but it seems suddenly frequent, and I'm not sure what
 changed.
  
  Also, occasionally when I save a file, the file is saved, but the file
 tab
  still shows the file as unsaved, and I occasionally also get exception
  errors while editing.
  
  Any ideas what would cause this?  Should I reinstall?  Originally I was
  running 4.0, then I installed a 4.5 upgrade, and finally I installed
the
  4.5.1 upgrade.  If I reinstall, do I need to follow these steps again,
or
  is the 4.5.1 upgrade a complete version?
  
  Gregory M. Saunders, Ph.D.
  Senior Design Architect
  Cognitive Arts Corporation  (http://www.cognitivearts.com)
  1840 Oak Avenue, 4th Floor
  Evanston, IL 60201-5914
  
 

---
 ---
  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: test

2000-06-04 Thread Steve Robson

It wasn't a very difficult test, there were no questions :-)

-Original Message-
From: cftalk [mailto:[EMAIL PROTECTED]]
Sent: 04 June 2000 19:10
To: [EMAIL PROTECTED]
Subject: test


This is a test

SD Solutions
Uwe Degenhardt
Fon: 08122/903791
Fax: 08122/903792
Web: http://www.sdsolutions.de
E-Mail: [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.



(job) ColdFusion/JSP/EJB developers, Atlanta (Norcross)

2000-06-04 Thread Mike Amburn

This is a multi-part message in MIME format.

--=_NextPart_000_001C_01BFCE36.D5E20AE0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 8bit

After receiving our first round of funding, we have approximately twenty
(20) open full-time positions for ColdFusion/JSP/EJB developers.

AtWork - Online™ provides business services for over 20,000 users of its
WorkForce optimization solution, which has Internet applications for human
resource processes including benefits administration, organization
management, payroll services, time and attendance, recruiting, staffing and
hiring, and education and training.

We are now beginning to migrate our existing ColdFusion code to JSP using a
platform of EJBs (Enterprise Java Beans). Therefore, we need:
  * ColdFusion developers to continue developing new functionality
  * JSP developers to begin the migration of current processes
  * EJB/java developers to assist in the development of business objects

For more information about any position, please email me and I will forward
details and requirements regarding any particular position or area.

Mike Amburn [EMAIL PROTECTED]
Application Development
6410 Atlantic Blvd., Suite 180 • Norcross, GA 30071-1296
Phone: 678.268.1515 • Fax: 678.268.1501

--=_NextPart_000_001C_01BFCE36.D5E20AE0
Content-Type: image/gif;
name="atworklogo_very_small.gif"
Content-Transfer-Encoding: base64
Content-ID: 061135018@04062000-198f

R0lGODlhhwAsAPcAAMDAwHNzc4SEhKWlpa2trdbW1ufn5+/v77Wtpf/nvffWnP/vzv/nte/WpXtr
Sv/WhPfv3vfWjO/OhPfGWvfGUvfOa++9OffWc+fGY+/GUue9Svfv1v/nnP/nlN7Gc97Ga+/GKffG
GOe1CPfGCP/GAJSMa+fWjFpSMf/WMee9GOe9APfGAN7Wrf/nc97GUv/eQufGKf/3xv/nUu/WSt7G
Of/ve9bGSu/npefWQt7OOf/3nP/3jP/3e//3Y6WlnM7Ovf//zv//xu/vra2te///td7elPf/vd7n
pdbn1qW9tWN7c87W1rW9vUpSUnuMjDFCQuf3/6W1vYyltb3Gzpylrd7v/4SMlGNrc0pSWtbe55Sc
pVJaY9bn/zFCWhAhOb3O56W1zmNzjL3G1pyltXuElFpjczlCUsbO3qWtvYSMnJytzjlKaxAhQhgx
YwgYOdbe787W57W9zq21xoyUpXN7jGtzhHOErWNznBApawgYQgghY73G3nuEnFpje5Sl1jlKezFC
cxgpWhAhUsbO56WtxpSctYyUrWNrhFJac0pSa2t7rWNzpSkxSkpajFJjnCk5axAhWggYSgAQQpyl
xoyc1oSUzjlCYzFChBghQhgpawAQStbe/7W93q211r3G73N7nGNrjFJae1pjjHOEzjE5WikxUiEp
Sik5exAYORAhawgYWoyUvWtznEpSe0JKcyExexAYQhgpewgQOcbO/62156Wt3pSczoSMvXuEtWNr
nDlCezE5ayEpWhghUrW994yUzoSMxkpSjCkxayEpYxAYUkJKjCkxcykxhCEpcyEpexAYWhAYYwgQ
Wufn787O1rW1vaWlrZycpdbW597e78bG1r29zpycrdbW72tre97e/4yMpb293lJSY7W13sbG94SE
pb2973t7nGtrjISEtSEhMTExSmNjpSEhQjExYzExawgIIca9xmtja/fn7wAA
ACH5BAEALACHACwA
QAj/AAEIHEiwoMGDCBMqXMiwocOHECNKLHigWho02yYqvDaslxaNIEO+OWXMi6kkY9oYCwSoChSC
tgJlWjamILheMxFVEWin1zA8vCC1eZRFYCGhmA4BsMPMmKBHhgYRLBBtDaY2gsIIFCCoVxdpBBcJ
aiPMG4BBXjJl+ghACjNkqAq1C6nQTiRjy0qFqtMnVJ8+ZUKRSnXMFCiBtQQtw0MF4RxNxpAdcxOK
oBQ3bTLFitUl20Bs6kixa0KIS0FPgIY9yhPmJRlVeLpsAhBOVi9BtQiCK5UJjyGBZCQN4+WHLsgD
KlbAsMDBiEQgQHRwaFEhQwYDCw1MmXaGyZmEU5ox/0TyA3vCAg7FxDHOvr17hQecERiw7oBCJAbm
vt/fEMqeOdgkws0VZFAhxxnTAGAfANPAEccY34SCSiTDGAMMfxgWxIkuyhijVhtRDATFGLZMMskq
haA4iRSTVHEIMcMo00hB2xgjDB6CLFKQL714aEYnBNGyiiKiNJKLId14BgAddAg0hSGrmGgiIZ1I
VRCUwCxRUCeTkCEFEhk2EskpmdgBABRo5oJMMpAUI9AGEBRiSiCBWGPQNFYJ84gvjQTSCyOmkQEJ
HplQMsoy6ESCBgCtmJLJMGYpROYwbqYB2zC5gGLOH2xEEskTjQEADjqQBNLIbYEokqFAaDSBSCiJ
fP93kAw4lHBCGYlsoZ5ffYSIkBh9JIIIWwRdww43JzjQwA0sCAGBiGKE04clpZRiSR/hUGPQAK0g
UkeCAlFzSCgDOgPAGX2IEsozBYkjTiJ1oLeqQjeYYAMNKeSrb74wwIDBBxKYkMACxp3BjkB0aHGG
AHMkAsAS0kBjJzdvpGHIG30MEs41AByyxzdgfMMHAIawAkYhnXxzDSgrg7FNOIWA8gkYVzbZhxiD
pEHNFlnENy+GVVwDhjZ1FFOMLrukk84aruQyTiez/Sz1qllQQ4c4VshBkH4ONbMKOrwQ48TU+3VS
LSm8dKOgQ4ScA/Yu4EhTzRTyAjMMG4Ac9E0v6Jz/c4h5DE1jRhlku/eFJcS0gcxMeDBipSfo9NJL
OjDyogwvkaDzxhvFQKJWqABcww2MeuBhii0DNROKKcMQ881ZhxgjSRuQQKKKIIG00QYzyezyy0Bp
KNPGMMLY2EsebuRhiRoCcYIJMszUJFAnfUSShyucrFpFIjGasgpPdymzhmkDrWIK7dIT9A2dptwC
gDe89GKKHbWUEoseSmVjSS+88DJLJcoYRiCU8BKE8AESwpDEHQBghWW0oRSzIAguehGJUuzhLOcj
BiGqIIo8EAMQb5gXF/qwjEw8QhilYEOnMMELZOAhFqmogzTgZIte0M5OBunE+TLxCmTcZg4CMcAf
/2TSQ2RgojVLyUNmmpSQOQwvEouAwmsy8QdbhAIWqpkE+QQyi1K0AQ+d8AYgTCGJRoQwQ2noHy+C
gRAgDIEUpohck2rBCwGCziCLgIUwlGGJLxCEC4K6hIcQAAAjCIEIQmBCAEqhDqEEYhiQzEQbiBGI
UBBiIE5QBSTQwTEATAITiQpFJ3cjyUUJpBvoyIQyENHJwgEAAiRQgQeI8B4dSCcCDWCAK3cJEQpo
QAQiGEEIZNADDuggCMhMpg52UIMayGAGOaCBDVxgggY8yyEFcAY1yDCNZzTjDUsAFzW0lAQ6hPNc
0hjEGc8gKzrYaRrUANcZqGGIM0jvDHB4yTSuIf+rgVihDgDYAz8LmIV1TKUovNTIMxKRoCloAyxn
sMIYziCNOdhJolZQGB2ogYY4TMEaBbACGphAhTOkwUF1sKjVqiGHek4DDWg4gzWYAI2BEE0adYip
Fpwxh2fQbQwGTahQh0rU9kwjC0jAD+CKylSQVGMM4rCEKchxjnNAUhjCABsmYDEhUoRCa00N60GW
YIhgHcIQ1ChgQzbxCWNgLh1iEGtTpfGMOQhgG0qiCyvCNja5OoQa1agGuyKChj10Iq4CWQcB5CCN
bHhiDxc0SAGqcYbAQiRyU/BrQ8KBClNEAhOigMg1ygGLXmBiHAYJBSbyMAywDiQb6IAkKl7HEPv/
oCERQNLsQr6RuZUYQxkBGMggGIGKCWGCFKXABCpkwYg3EGJ4KjmjQKzRC+HhYQ1RE8gvOqSMPggk
C0nARv8CoQxMmNcUoeBEyLQEACfAwhSeJYc6TFGKRPABsQAQAzkCkYffLCgOppCFOsrA3gzZgQ2Z
EMYlHKEHZJBDCjuBghr8QAtztE4YiqiFLWqxk0UkDg9KEcgZrGoMPQAiDwsUCBK6YApI6IJjokCF
SjRxikVUAhiK+IMgXpEKXjgCDsCBUTF+MYtZ2EIUvSiFG0RhGk+YAhnI+B4AmkEHVPACHVJe1Rhk

Re: studio errors

2000-06-04 Thread Sean Renet

I have found this to be the case when I have other applications open.  I
think it is because studio is a ram hog (hehe part of allaire's new dna
testing on animals) and when you attempt to close it there is not enough
"room" to close it properly.  You will be happy to know that this doesn't
happen on my gig'o'ram machine.
- Original Message -
From: "Ben Densmore" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Sunday, June 04, 2000 11:35 AM
Subject: Re: studio errors


 I run inot the same problem all the time, alot of times I end up just
using
 CF Studio 4.0.1   it seems to be alot more stable than 4.5.1, I haven't
 tried reinstalling mine yet. i'm not positive but I think 4.5.1 might just
 be an upgrade
 Ben
 - Original Message -
 From: William J Wheatley [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Monday, June 04, 2001 2:27 PM
 Subject: Re: studio errors


  yes i get the same crap with mine and its only when i have DW3 open =0)
so
  hopefully they'll come out with a fix cause its an annoying problem
  - Original Message -
  From: "paul smith" [EMAIL PROTECTED]
  To: [EMAIL PROTECTED]
  Sent: Sunday, June 04, 2000 9:16 AM
  Subject: Re: studio errors
 
 
   These happen to me, too.  But only occasionally.
   The good news is that 4.5.1 doesn't appear to be
   zeroing out templates.
  
   In addition, I get a phony "Someone else has
   modified the file" (or some such) when I'm the
   only one here doing it.
  
   It's annoying to worrying as to if Studio is
   going to explode and wipe my hard drive or
   something;-)
  
   Don't know the fixes.
  
   best,  paul
  
   At 06:34 AM 6/4/00 -0500, you wrote:
   I'm running Studio 4.5.1, and seeing lots of exception errors.  I
 reboot
  my
   machine, start Studio, and then quit, and I get:
   
Application Error:  Exception EAccessViolation in module
cfstudio45.exe at address 004F9614 in module 'cfstudio45.exe'.
Read of address 01ADC064.
   
   This happens repeatedly when I quit.  It did not happen when I first
   installed 4.5, but it seems suddenly frequent, and I'm not sure what
  changed.
   
   Also, occasionally when I save a file, the file is saved, but the
file
  tab
   still shows the file as unsaved, and I occasionally also get
exception
   errors while editing.
   
   Any ideas what would cause this?  Should I reinstall?  Originally I
was
   running 4.0, then I installed a 4.5 upgrade, and finally I installed
 the
   4.5.1 upgrade.  If I reinstall, do I need to follow these steps
again,
 or
   is the 4.5.1 upgrade a complete version?
   
   Gregory M. Saunders, Ph.D.
   Senior Design Architect
   Cognitive Arts Corporation  (http://www.cognitivearts.com)
   1840 Oak Avenue, 4th Floor
   Evanston, IL 60201-5914
   
  
 

---
  ---
   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.


--
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.



Querying a recordset ...

2000-06-04 Thread Todd Ashworth

I have a custom tag that returns certain results in the form of a recordset.
The only problem is that I don't need/want all of the data that is returned.
I would like to be able to further filter the recordset using a list of
keywords that I have.  Can anyone tell me the most efficient way to do this?

Todd

--
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: Querying a recordset ...

2000-06-04 Thread David Shadovitz

Todd,

It's not clear whether you want to filter out rows or columns, nor
whether you can modify the custom tag.

If you want to filter out rows, add to your SQL statement's "where"
clause.

If you want to filter out columns:
If the keywords correspond to column names, only output those columns
whose name contains a keyword.
If the keywords correspond to data, you'd evaluate each column and check
whether it contains a keyword.

Please provide more information!

-David

Todd Ashworth [EMAIL PROTECTED] writes:
 I have a custom tag that returns certain results in the form of a 
 recordset.
 The only problem is that I don't need/want all of the data that is 
 returned.
 I would like to be able to further filter the recordset using a list 
 of
 keywords that I have.  Can anyone tell me the most efficient way to 
 do this?
 
 Todd

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: Querying a recordset ...

2000-06-04 Thread Todd Ashworth

I can't get to the query .. it's in the custom tag, which is encrypted, so
WHERE is not an option.  What the query returns is a recordset which I can
reference like .. #recordset_name.field_name#  just like any other query.
What I want to do is futher refine the recordset and remove all of the rows
that don't have anything to do with what I want to show.

Example:  I have a tag that pulls some news headlines in certain categories
and then creates links to the full article.  Say I chose the 'Entertainment'
category.  The tag returns all entertainment related news, including movies,
music, etc.  Well, say I only want to show things related to music and not
the movies.  How do I only display those headlines containing info about the
music?  I suppose I could do a cfif every time I get ready to display a
row and check to see if it contains the words I am looking for, but then I
would have to loop through a bunch of rows I don't care about and apply
cfswitch statement.  I figure there is a more efficient way.  I would
really like to avoid a big cfswitch statement in the middle of a loop,
just to filter out a few rows.

Todd

- Original Message -
From: David Shadovitz [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Sunday, June 04, 2000 4:35 PM
Subject: Re: Querying a recordset ...


 Todd,

 It's not clear whether you want to filter out rows or columns, nor
 whether you can modify the custom tag.

 If you want to filter out rows, add to your SQL statement's "where"
 clause.

 If you want to filter out columns:
 If the keywords correspond to column names, only output those columns
 whose name contains a keyword.
 If the keywords correspond to data, you'd evaluate each column and check
 whether it contains a keyword.

 Please provide more information!

 -David

--
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: Querying a recordset ...

2000-06-04 Thread Jim McAtee

I don't think you have any choice.  _Something_ has to loop through all the rows
of the query and make a decision on what to include/exclude.  If you find (or
write) another custom tag to do this, it may actually end up being less
effecient (even if cleaner looking in your CF templates).  You've got the
original query, a loop through every record to do the filtering, then another
loop through the records to display what's left.  Currently you have just the
original query and your display loop which does the filtering.

Jim


-Original Message-
From: Todd Ashworth [EMAIL PROTECTED]
To: [EMAIL PROTECTED] [EMAIL PROTECTED]
Date: Sunday, June 04, 2000 3:58 PM
Subject: Re: Querying a recordset ...


I can't get to the query .. it's in the custom tag, which is encrypted, so
WHERE is not an option.  What the query returns is a recordset which I can
reference like .. #recordset_name.field_name#  just like any other query.
What I want to do is futher refine the recordset and remove all of the rows
that don't have anything to do with what I want to show.

Example:  I have a tag that pulls some news headlines in certain categories
and then creates links to the full article.  Say I chose the 'Entertainment'
category.  The tag returns all entertainment related news, including movies,
music, etc.  Well, say I only want to show things related to music and not
the movies.  How do I only display those headlines containing info about the
music?  I suppose I could do a cfif every time I get ready to display a
row and check to see if it contains the words I am looking for, but then I
would have to loop through a bunch of rows I don't care about and apply
cfswitch statement.  I figure there is a more efficient way.  I would
really like to avoid a big cfswitch statement in the middle of a loop,
just to filter out a few rows.

Todd

- Original Message -
From: David Shadovitz [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Sunday, June 04, 2000 4:35 PM
Subject: Re: Querying a recordset ...


 Todd,

 It's not clear whether you want to filter out rows or columns, nor
 whether you can modify the custom tag.

 If you want to filter out rows, add to your SQL statement's "where"
 clause.

 If you want to filter out columns:
 If the keywords correspond to column names, only output those columns
 whose name contains a keyword.
 If the keywords correspond to data, you'd evaluate each column and check
 whether it contains a keyword.

 Please provide more information!

 -David


--
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: Querying a recordset ...

2000-06-04 Thread Todd Ashworth

I see, but if I had access to the actual query, I could get rid of all of
the stuff I don't need in the query itself, and then only have to loop
through that info that I am actually outputing, which would also negate the
need for the cfswitch every time through.  Oh well, what can ya do?  I
don't suppose it's that big of a deal .. yet. ;)

Thanks all.

Todd

 On Sun, 4 Jun 2000 16:17:35 -0600 "Jim McAtee" [EMAIL PROTECTED]
 writes:
  I don't think you have any choice.  _Something_ has to loop through
  all the rows
  of the query and make a decision on what to include/exclude.  If you
  find (or
  write) another custom tag to do this, it may actually end up being
  less
  effecient (even if cleaner looking in your CF templates).  You've
  got the
  original query, a loop through every record to do the filtering,
  then another
  loop through the records to display what's left.  Currently you have
  just the
  original query and your display loop which does the filtering.

--
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 Training?

2000-06-04 Thread Marco Gil

Christine,

I find myself in a very similar boat.  I am currently in the midst of a
career change... I have done about 3 websites from scratch using Cold
Fusion, some more advanced than others but still not utilizing everything
that CF has to offer.

If you come across any replies that you found very informative with regards
to further pursuing a career in CF development, by all means forward it to
me.  Thanks again and I hope you find what you're looking for because I to
am looking for the same :)

Regards,

Marco
[EMAIL PROTECTED]

- Original Message -
From: "Christine Kelley" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, May 31, 2000 10:10 PM
Subject: CF Training?


 This is a multi-part message in MIME format.

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

 Hi all!
 I have read CFWACK4.0 cover to cover (along with doing all the =
 exercises) and am starting on the Advanced book.  I'm wondering if I =
 should attend the training courses by Allaire, FT to CF and Advanced CF =
 development.  I have starting writing applications on the side for =
 people, but I would like to make this my full-time career (I love this =
 stuff!).  OK CF gurus, how do I get my foot in the door for a career in =
 CF?  My background (I'll keep this short) is a BA in Biology with a =
 minor in math and some misc additional courses that mean just as little. =
  The important stuff I've been working on though is self-study in CF, =
 SQL, Visual Basic, NetObjects Fusion and Access.   Please advise!!
 Thanks,  Christine

 --=_NextPart_000_0009_01BFCB33.E53B42A0
 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.3017.1000" name=3DGENERATOR
 STYLE/STYLE
 /HEAD
 BODY bgColor=3D#ff
 DIVFONT face=3DArial size=3D2Hi all!/FONT/DIV
 DIVFONT face=3DArial size=3D2nbsp;nbsp;nbsp; I have read =
 CFWACK4.0 cover to=20
 cover (along with doing all the exercises) and am starting on the =
 Advanced=20
 book.nbsp; I'm wondering if I should attend the training courses by =
 Allaire, FT=20
 to CF and Advanced CF development.nbsp; I have starting writing =
 applications on=20
 the side for people, but I would like to make this my full-time career =
 (I love=20
 this stuff!).nbsp; OK CF gurus, how do I getnbsp;my foot in the door =
 for a=20
 career in CF?nbsp; /FONTFONT face=3DArial size=3D2My background =
 (I'll keep this=20
 short) is a BA in Biology with a minor in math and some =
 miscnbsp;additional=20
 courses that mean just as little.nbsp; Thenbsp;important stuff I've =
 been=20
 working on though is self-study in CF, SQL, Visual Basic, NetObjects =
 Fusion and=20
 Access.nbsp;nbsp; Please advise!!/FONT/DIV
 DIVFONT face=3DArial size=3D2nbsp;nbsp;nbsp; nbsp;nbsp;nbsp;=20
 nbsp;nbsp;nbsp; nbsp;nbsp;nbsp; nbsp;nbsp;nbsp; =
 nbsp;nbsp;nbsp;=20
 nbsp;nbsp;nbsp; nbsp;nbsp;nbsp; Thanks,nbsp;=20
 Christine/FONT/DIV/BODY/HTML

 --=_NextPart_000_0009_01BFCB33.E53B42A0--

 --

 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: List question?

2000-06-04 Thread Seth Petry-Johnson

 Hello all,

 When Posting to this list, is it necessary to paste this?
 "
  -
--
 ---
  Archives: http://www.eGroups.com/list/cf-talk
snip

No, that part is added automatically to every email sent to the list.  All
you need to type is your message.

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: CF Training?

2000-06-04 Thread Sharon DiOrio

My recommendation to anyone wanting to get more into CF is to find a
company that specializes in it.  It's the only way you'll get to see what
CF is really capable of.  Most corporations don't use 1/10th of the CF
power available to them.  I believe that in order to get really good with
the software, you'll need to be challenged by people wanting more than you
can deliver, and surrounded by people who can show you how it's done.  I
won't say that you can't get good learning by yourself, but it takes a lot
more effort on your part.

Check out the Allaire Partners on the allaire website.  I'm sure there is
one near you.  When you interview, tell them exactly what you're looking
for: an opportunity to become a CF guru.  Most of them will be thrilled to
talk to you.  And these days, having URLs means a lot more than a degree.

If actually changing jobs isn't an option now, then join your nearest CFUG.
 Network your hiney off and find a couple of "coding partners" who would be
willing to share ideas, code, and provide a CF sounding board.

Sharon

At 08:47 PM 6/4/2000 -0400, Marco Gil wrote:
Christine,

I find myself in a very similar boat.  I am currently in the midst of a
career change... I have done about 3 websites from scratch using Cold
Fusion, some more advanced than others but still not utilizing everything
that CF has to offer.

If you come across any replies that you found very informative with regards
to further pursuing a career in CF development, by all means forward it to
me.  Thanks again and I hope you find what you're looking for because I to
am looking for the same :)

Regards,

Marco
[EMAIL PROTECTED]
 
- Original Message -
From: "Christine Kelley" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, May 31, 2000 10:10 PM
Subject: CF Training?


 This is a multi-part message in MIME format.

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

 Hi all!
 I have read CFWACK4.0 cover to cover (along with doing all the =
 exercises) and am starting on the Advanced book.  I'm wondering if I =
 should attend the training courses by Allaire, FT to CF and Advanced CF =
 development.  I have starting writing applications on the side for =
 people, but I would like to make this my full-time career (I love this =
 stuff!).  OK CF gurus, how do I get my foot in the door for a career in =
 CF?  My background (I'll keep this short) is a BA in Biology with a =
 minor in math and some misc additional courses that mean just as little. =
  The important stuff I've been working on though is self-study in CF, =
 SQL, Visual Basic, NetObjects Fusion and Access.   Please advise!!
 Thanks,  Christine

 --=_NextPart_000_0009_01BFCB33.E53B42A0
 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.3017.1000" name=3DGENERATOR
 STYLE/STYLE
 /HEAD
 BODY bgColor=3D#ff
 DIVFONT face=3DArial size=3D2Hi all!/FONT/DIV
 DIVFONT face=3DArial size=3D2nbsp;nbsp;nbsp; I have read =
 CFWACK4.0 cover to=20
 cover (along with doing all the exercises) and am starting on the =
 Advanced=20
 book.nbsp; I'm wondering if I should attend the training courses by =
 Allaire, FT=20
 to CF and Advanced CF development.nbsp; I have starting writing =
 applications on=20
 the side for people, but I would like to make this my full-time career =
 (I love=20
 this stuff!).nbsp; OK CF gurus, how do I getnbsp;my foot in the door =
 for a=20
 career in CF?nbsp; /FONTFONT face=3DArial size=3D2My background =
 (I'll keep this=20
 short) is a BA in Biology with a minor in math and some =
 miscnbsp;additional=20
 courses that mean just as little.nbsp; Thenbsp;important stuff I've =
 been=20

 working on though is self-study in CF, SQL, Visual Basic, NetObjects =
 Fusion and=20
 Access.nbsp;nbsp; Please advise!!/FONT/DIV
 DIVFONT face=3DArial size=3D2nbsp;nbsp;nbsp; nbsp;nbsp;nbsp;=20
  nbsp;nbsp;nbsp; nbsp;nbsp;nbsp; nbsp;nbsp;nbsp; =
 nbsp;nbsp;nbsp;=20
 nbsp;nbsp;nbsp; nbsp;nbsp;nbsp; Thanks,nbsp;=20
 Christine/FONT/DIV/BODY/HTML

 --=_NextPart_000_0009_01BFCB33.E53B42A0--

 --

 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: Replacing line breaks and paragraph breaks with HTML equivelents

2000-06-04 Thread Dave Watts

 Me too. Hey! You got a course? Where can I find out more?

It's certainly not "my" course - I can't take credit for that. I'm a
certified Allaire instructor, and teach Allaire courses through Allaire and
through Fig Leaf.

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

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



RE: Where the data?

2000-06-04 Thread Dave Watts

 I have a simple form that creates a username and password for
 an individual. I have a SQL INSERT statement that puts the
 usernames and passwords into Access. For some reason the data
 is now not going into the DB (it used to), and I get no errors.
 However, when I perform a query to retrieve the all usernames
 and passwords, the usernames and passwords that are not in the
 DB but I added are there along with the ones that ARE in the DB.

 ??

 Where are they going/coming from ... the registry ... if so where?

This may sound a bit glib, but if you're inserting them into the database,
and then selecting them back from the database, odds are they're in the
database. What makes you think the inserts are failing?

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

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



RE: writing to a database error

2000-06-04 Thread Dave Watts

 I keep getting the following error:

 ODBC Error Code = 22005 (Error in assignment)
 [Microsoft][ODBC Microsoft Access Driver] Data type mismatch
 in criteria expression.
...
   WHERE ID='#Session.TradeID#'

Is the ID field also a text field, or is it numeric? If it's numeric, remove
the quotes.

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

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



Is there a CFUG in Grand Rapids, MI

2000-06-04 Thread Simha R. Magal

Greetings,

I will be moving to Grand Rapids, MI in the next month or so.  I looked up
Allaire for a  CFUG in the area but could not find it.

Does anyone know of one in that area?

Thanks,

Simha
--

Simha R. Magal ([EMAIL PROTECTED])
Internet Commerce Solutions www.magal.com
Placement Online dot com www.PlacementOnline.com
Voice:  419-353-6822  Fax:  353-3522
--
--
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.



Shopping Cart Question (For Everyone)

2000-06-04 Thread KJis18

Well, I'm just wondering what is everyone's most recommended shopping cart 
application that is OPEN SOURCE?  

Thanks

Kevin
--
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.



ClusterCats

2000-06-04 Thread Jason Clark

Anyone have experiences to share regarding clustercats? I played with it a 
bit this weekend and had nothing but problems.
First off the version with 4.5.1 showed the servers at 100% all the time 
even though they were at maybe 5%, so backed off and
went to 4.0.1 and now it randomly shows servers as unreachable half the 
time? The instructions for setting it up and tech docs
are the worst I have ever seen. Anyway, any input/suggestions are welcome. 

--
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: ASP!

2000-06-04 Thread David Shadovitz

Can any of you ASP programmers tell me whether the following code will
work?

It is the action page of a login form.  It should get the user's record
from a database and display the user's first name and chosen color.  I'm
not too concerned that it should be graceful, I just want working code.

Thanks.
-David 

===
(I've omitted the beginning and ending HTML tag)

head
titleUser Info/title
/head
body
h1User Info/h1
p
%
Set Conn = Server.CreateObject("ADODB.Connection")
Conn.Open "demo"
set RS = Conn.Execute("select * from [UserInfo] where [username]=" 
request.form("username")  " and [password] = request.form("password"))
%
table border="1" cellspacing="2" cellpadding="2" bgcolor="%
=RS("color") %"
trtdHello, % =RS("f_name") %!/td/tr
/table
p
Additional page content goes here.
/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.



ClusterCats

2000-06-04 Thread Jason Clark

Anyone have experiences to share regarding clustercats? I played with it a 
bit this weekend and had nothing but problems.
First off the version with 4.5.1 showed the servers at 100% all the time 
even though they were at maybe 5%, so backed off and
went to 4.0.1 and now it randomly shows servers as unreachable half the 
time? The instructions for setting it up and tech docs
are the worst I have ever seen. Anyway, any input/suggestions are welcome.

--
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.



Test

2000-06-04 Thread Joseph Eugene

This is a multi-part message in MIME format.

--=_NextPart_000_000F_01BFCE75.9085B340
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

Test, Please ignore

--=_NextPart_000_000F_01BFCE75.9085B340
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=3DArial size=3D2Test, Please =
ignore/FONT/DIV/BODY/HTML

--=_NextPart_000_000F_01BFCE75.9085B340--

--
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.



test

2000-06-04 Thread Joseph Eugene

This is a multi-part message in MIME format.

--=_NextPart_000_0028_01BFCE76.31C09270
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

Test, please ignore

--=_NextPart_000_0028_01BFCE76.31C09270
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=3DArial size=3D2Test, please =
ignore/FONT/DIV/BODY/HTML

--=_NextPart_000_0028_01BFCE76.31C09270--

--
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.



test

2000-06-04 Thread Joseph Eugene

test, please ignore

--
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 Training?

2000-06-04 Thread Leo Schuman

Hi all,

In the interest of full disclosure, I'll state up front that I'm an 
Allaire Certified Instructor, and am V.P. of Technical Services for 
DevTech, an Allaire Authorized Training Center and Allaire Premier 
Partner with offices in Portland and Seattle.  This means I know a lot 
about the classes, and have a financial interest in promoting them.  
And, I believe I have a relevant perspective to share here.

Ben Forta's books are a great way to learn *IF* you have the time and 
discipline to work through them, cover to cover.  The Allaire courses 
(the "basic" Fast Track to ColdFusion, and Advanced ColdFusion 
Development) cover much, though not all, of what these books have to 
offer, in 3 days each.

To me, the "how should I go about learning ColdFusion" question has two 
main angles:

Learning Style - are you disciplined enough to hit the books and work 
them hard, evenings and weekends, by yourself while holding down 
another job?  Many people learn better in a classroom environment, 
where topics can be presented and absorbed in a logical flow of bite-
size chunks, during a three day period set aside to focus on taking in 
new information.

Cost - for you, is it less expensive to buy a book, and then devote a 
few months of evening and weekend work to get up to speed, or is it a 
more cost-effective use of your time to attend an intense classroom 
experience and get the core skills under your belt in about a week?

The Allaire courses are "intense" according to virtually all student 
feedback I've ever received (I've taught close to 200 students, with 
another round beginning tomorrow morning), which is why my company has 
a second-round "re-audit" policy.  Sometimes once is not enough, as 
there's a LOT in these classes.  But, my students leave with a solid 
toolbelt of useful ColdFusion techniques strapped around their waist.  
The folks at Allaire put together a very solid curriculum.

Your mileage, of course, may vary ... and I regularly plug Forta's 
books in my classes (one o' these days I'm gonna ask him for a 
kickback! grin).  It all comes down to how *you* learn best.

Leo Schuman, JD
V.P. Technical Services
Advanced Allaire Certified Instructor
DevTech, Inc.

http://www.dev-tech.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.



Re: Cookies in IE And Netscape

2000-06-04 Thread Ken M. Mevand

cookies set by IE are stored as separate files, ie. one file for each
cookie, as "Cookie:[EMAIL PROTECTED]" in C:\windows\temporary internet
files\

cookies set by NS are stored in a single file called "cookie.txt" in
C:\program files\netscape\users\.

so there shouldn't be any crashes between the two.

HTH
-ken

- Original Message -
From: James Sleeman [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Sunday, June 04, 2000 12:00 PM
Subject: Re: Cookies in IE And Netscape



 On Sat, 03 Jun 2000 02:05:41 Ben Densmore wrote:

  Is it common for a cookie not to be recognized in Netscape if it's been
=
  set initially using IE? I'm doing some testing on an App I just =
  finished, I originally used IE to test it and the cookie I am setting =
  worked fine, I then wanted to make sure everything was working in =
  Netscape and it didn't seem to recognize the cookie, once I filled out =
  the form and the cookie was set using Netscape it works fine. Just =
  curious as to whether this is normal or not.
 
  Thanks
 
  Ben Densmore
  Webmaster
  eSupport.com, Inc
  TouchStone Software Corp.
 

 Cookies are set per-browser, that is, NS doesn't know about cookies that
IE has
 stored,
 IE doesn't know about cookies that NS has stored.  Remember that cookies
are
 stored in the
 browser (well, the browser stores them somewhere on disk) not on server.


 --

 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.



CFTREE and JS

2000-06-04 Thread vinicius

Hi there:


I have a JavaScript to access an Autodesk Plugin that looks like this:

function Layers_clientessta(Layer,VAL)
{
var Mapa = getMap();
var Clientes = Mapa.getMapLayer(Layer);
var T21710 = Mapa.getMapLayer(Layer);
if (VAL == 'ON')
  {
   if (Layer == 'CLIENTESSTA'){
  Clientes.setVisibility(true);
  Clientes.setRebuild(true);
  }
  if (Layer == 'T21710'){
  T21710.setVisibility(true);
  T21710.setRebuild(true);
  }

  }else
  {
  if (Layer == 'CLIENTESSTA'){
  Clientes.setVisibility(false);
  Clientes.setRebuild(false);
  }
if (Layer == 'T21710'){
  T21710.setVisibility(false);
  T21710.setRebuild(false);
  }
  }
  Mapa.refresh();

}

As you can see I pick up 2 parameters, the name of the layer and its
visibility
(on, off) so far so good ...
I was doing it using A Tag, like:

a href="javascript:Layers_clientessta('T21710','Off')"OFF/ap

Once again, so far so good, then my boss asked me to use CFTREE, and I
tried:

Skipping the cfform and cftree, my item looks like this:

cftreeitem value="Off" parent="Supermercados" img="element"
href="javascript:Layers_clientessta('CLIENTESSTA','Off')" expand="Yes"

the problem is my href isn´t passing the atributes to my JS function.
Thanks
Vinicius Carvalho




--
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: CF Training?

2000-06-04 Thread Gregory Gooden (Annex)

Sharon, 

Truer words were never spoken!.. As a company that has recently been very
agressive in hiring CF folke, I can tell you that a URL is worth a thousand
words. High school dropout? No problem. If you've got the "stuff", then
companies like ours overlook that kinda stuff.. :)

Gregory

--- 
annex.com, Inc. - http://www.annex.com/ 
--- 
- If you EcoBuild it, they will come. - 
- http://www.ecobuilder.com/ - 
--- 


 -Original Message-
 From: Sharon DiOrio [mailto:[EMAIL PROTECTED]]
 Sent: Sunday, June 04, 2000 6:38 PM
 To: [EMAIL PROTECTED]
 Subject: Re: CF Training?
 
 
 My recommendation to anyone wanting to get more into CF is to find a
 company that specializes in it.  It's the only way you'll get 
 to see what
 CF is really capable of.  Most corporations don't use 1/10th of the CF
 power available to them.  I believe that in order to get 
 really good with
 the software, you'll need to be challenged by people wanting 
 more than you
 can deliver, and surrounded by people who can show you how 
 it's done.  I
 won't say that you can't get good learning by yourself, but 
 it takes a lot
 more effort on your part.
 
 Check out the Allaire Partners on the allaire website.  I'm 
 sure there is
 one near you.  When you interview, tell them exactly what 
 you're looking
 for: an opportunity to become a CF guru.  Most of them will 
 be thrilled to
 talk to you.  And these days, having URLs means a lot more 
 than a degree.
 
 If actually changing jobs isn't an option now, then join your 
 nearest CFUG.
  Network your hiney off and find a couple of "coding 
 partners" who would be
 willing to share ideas, code, and provide a CF sounding board.
 
 Sharon
--
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 Training?

2000-06-04 Thread Nick Slay

Sorry.. I missed the original posting so don't know where you are based... 
but if you're in Australia then drop me a line!!   We're looking for 
someone to can train in CF!!




At 21:43 4/06/00 -0700, you wrote:
Sharon,

Truer words were never spoken!.. As a company that has recently been very
agressive in hiring CF folke, I can tell you that a URL is worth a thousand
words. High school dropout? No problem. If you've got the "stuff", then
companies like ours overlook that kinda stuff.. :)

Gregory

---
annex.com, Inc. - http://www.annex.com/
---
- If you EcoBuild it, they will come. -
- http://www.ecobuilder.com/ -
---


  -Original Message-
  From: Sharon DiOrio [mailto:[EMAIL PROTECTED]]
  Sent: Sunday, June 04, 2000 6:38 PM
  To: [EMAIL PROTECTED]
  Subject: Re: CF Training?
 
 
  My recommendation to anyone wanting to get more into CF is to find a
  company that specializes in it.  It's the only way you'll get
  to see what
  CF is really capable of.  Most corporations don't use 1/10th of the CF
  power available to them.  I believe that in order to get
  really good with
  the software, you'll need to be challenged by people wanting
  more than you
  can deliver, and surrounded by people who can show you how
  it's done.  I
  won't say that you can't get good learning by yourself, but
  it takes a lot
  more effort on your part.
 
  Check out the Allaire Partners on the allaire website.  I'm
  sure there is
  one near you.  When you interview, tell them exactly what
  you're looking
  for: an opportunity to become a CF guru.  Most of them will
  be thrilled to
  talk to you.  And these days, having URLs means a lot more
  than a degree.
 
  If actually changing jobs isn't an option now, then join your
  nearest CFUG.
   Network your hiney off and find a couple of "coding
  partners" who would be
  willing to share ideas, code, and provide a CF sounding board.
 
  Sharon
--
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.


===
Nick Slay
Technical Director

Webbods Pty Ltd  (ACN 086 160 189)
PO Box 4047
Copacabana
NSW 2251

Tel:02 4381 0284
Mob:0414 810284

===
Join the BodNews mailing list for News/Announcements
and Offers from Webbods.  Send an email to
[EMAIL PROTECTED] with 'subscribe bodnews' in the
subject line.
===

Proud Sponsors of the Northern Eagles NRL Side 2000!!!

--
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 CFPARAM Statements

2000-06-04 Thread John Quarto-vonTivadar

cfparam name="#Evaluate('form.unit' i '_listed')#" default="0"


--
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 CFPARAM Statements

2000-06-04 Thread Jim McAtee

Thanks John.  Actually, I had it right the first time.  I had "cfparam"
misspelled and didn't notice.  I need to take start taking weekends off.
:-)

cfparam name="form.unit#i#_listed" default="0"

Jim



-Original Message-
From: John Quarto-vonTivadar [EMAIL PROTECTED]
To: [EMAIL PROTECTED] [EMAIL PROTECTED]
Date: Sunday, June 04, 2000 11:21 PM
Subject: Re: Dynamic CFPARAM Statements


cfparam name="#Evaluate('form.unit' i '_listed')#" default="0"


-
-
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.



CFUG in CT

2000-06-04 Thread Jay Sudowski

This is a multi-part message in MIME format.

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

Hey Folks -

I know there's supposedly a CFUG in Westport, CT, but that's somewhat of =
a drive for me.  Does anyone know of a CFUG located in Eastern CT / =
Providence, RI?

Thanks,

Jay

--=_NextPart_000_01C0_01BFCE8F.AEF2DBE0
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.3017.1000" name=3DGENERATOR
STYLE/STYLE
/HEAD
BODY bgColor=3D#ff
DIVFONT face=3DArial size=3D2Hey Folks -/FONT/DIV
DIVnbsp;/DIV
DIVFONT face=3DArial size=3D2I know there's supposedly a CFUG in =
Westport, CT,=20
but that's somewhat of a drive for me.nbsp; Does anyone know of a CFUG =
located=20
in Eastern CT / Providence, RI?/FONT/DIV
DIVnbsp;/DIV
DIVFONT face=3DArial size=3D2Thanks,/FONT/DIV
DIVnbsp;/DIV
DIVFONT face=3DArial size=3D2Jay/FONT/DIV/BODY/HTML

--=_NextPart_000_01C0_01BFCE8F.AEF2DBE0--

--
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: studio errors

2000-06-04 Thread paul smith

No DW3 here, and 256MB RAM

Still get these errors.

best,  paul

At 02:27 PM 6/4/01 -0400, you wrote:
yes i get the same crap with mine and its only when i have DW3 open =0) so
hopefully they'll come out with a fix cause its an annoying problem
- Original Message -
From: "paul smith" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Sunday, June 04, 2000 9:16 AM
Subject: Re: studio errors


  These happen to me, too.  But only occasionally.
  The good news is that 4.5.1 doesn't appear to be
  zeroing out templates.
 
  In addition, I get a phony "Someone else has
  modified the file" (or some such) when I'm the
  only one here doing it.
 
  It's annoying to worrying as to if Studio is
  going to explode and wipe my hard drive or
  something;-)
 
  Don't know the fixes.
 
  best,  paul
 

--
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.