Studio 4.5.2 wierdness

2001-05-30 Thread Kay Smoljak

Hi all,

I've got Studio 4.5.2 on Win2k SP1. Every now and then (but with increasing
frequency) Studio will refuse to save a local file. You try to close it, it
says Do you want to save as normal but when you click yes, the file is not
saved and the document is not closed. If I copy the text of the file to the
clipboard, restart Studio and then paste it over the top, it saves fine. It
seems to happen randomly, on two separate machines with the same software
specs (but different hardware).

Has anyone else had this problem?
K.

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

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

Tools for developers: http://developer.perthweb.com.au
-- cfx_pwimageproc: image processing tool
-- cfx_pwcardcrypt: credit card validation and encryption


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



OT: JS-Frame-question

2001-05-30 Thread cf-talk


Hi, I have two frames A and B.

A is the navigation-frame and B the content-frame.
I am having a frameset like:

frameset rows=25%,*
frame src=A.cfm name=oben id=oben frameborder=No scrolling=no
marginwidth=0 marginheight=0
frame src=B.cfm name=unten id=unten frameborder=No
scrolling=Auto marginwidth=0 marginheight=0
/frameset

When I call B.cfm directly all the included JS runs fine.
But it doesn't if I it run it in the belonging frameset.

What could I do to prevent this ?

Uwe


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

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



COOKIE expiration :((

2001-05-30 Thread Michael Lugassy

I'm getting really frustrated from this CFCOOKIE thing.
Apparently, after I assign the cookie with Timeout=Never the cookie
is deleted and terminated every time the user closes the browser.
I tried to change Timeout to 14 days, but it didn't help.
Closing the browser terminates the cookie.

Is there a diffrent way to assign cookies?

PLEASE HELP!!!

-=Michael.


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

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



Re: COOKIE expiration :((

2001-05-30 Thread Bryan LaPlante

You may already be doing this but the value should be EXPIRES=NEVER not
timeout

Bryan

- Original Message -
From: Michael Lugassy [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, May 30, 2001 3:27 AM
Subject: COOKIE expiration :((


 I'm getting really frustrated from this CFCOOKIE thing.
 Apparently, after I assign the cookie with Timeout=Never the cookie
 is deleted and terminated every time the user closes the browser.
 I tried to change Timeout to 14 days, but it didn't help.
 Closing the browser terminates the cookie.

 Is there a diffrent way to assign cookies?

 PLEASE HELP!!!

 -=Michael.



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

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



Images Retrieval

2001-05-30 Thread Michael Lugassy

I have a list of image URLS (i.e : http://www.picturefunny.com/family/me.jpg ...)
I'm trying to find the best way to download those pictures to my server
using some sort of HTTP request. I know I can use CFHTTP with Binary conversion
or a diffrent complicated method, but I was wondering if there is any cfx or tag
that can help me out in my task?

any pointers, would be great.

Michael.


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

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



RE: Referencing an array item

2001-05-30 Thread Steve Vosloo

So, to access a element [2][1] in the 3rd array I would have:

Application.SM[3][2][1]

?



 -Original Message-
 From: Christopher Olive, CIO [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, May 29, 2001 5:49 PM
 To: CF-Talk
 Subject: RE: Referencing an array item
 
 
 well, you collapse the three arrays into an uber array, called SM.  so
 your original statement might be..
 
 CFSET Application.SM = ArrayNew()
 cfset Application.SM[1] = SM1
 cfset Application.SM[2] = SM2
 cfset Application.SM[3] = SM3
 
 then use your number as an index into your outer array.
 
 chris olive, cio
 cresco technologies
 [EMAIL PROTECTED]
 http://www.crescotech.com
 
 
 
 -Original Message-
 From: Steve Vosloo [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, May 29, 2001 2:21 AM
 To: CF-Talk
 Subject: RE: Referencing an array item
 
 
 But I have 3 arrays, so it will really need to look like:
 
 Application.SM1[n][element]
 Application.SM2[n][element]
 Application.SM3[n][element]
 
 I can't see how else to work around this.
 
 
 
  -Original Message-
  From: Christopher Olive, CIO [mailto:[EMAIL PROTECTED]]
  Sent: Monday, May 28, 2001 8:31 PM
  To: CF-Talk
  Subject: RE: Referencing an array item
 
 
  ray has an excellent point.  however, why not exploit the nature
  of arrays?
  if you make Application.Sm an array with three elements, each one
  the arrays
  sm1..3, then you can reference an element in SM(n) by
  Application.SM[n][element].  you don't have to futz with string 
 evaluation
  at all.
 
  chris olive, cio
  cresco technologies
  [EMAIL PROTECTED]
  http://www.crescotech.com
 
 
 
  -Original Message-
  From: Steve Vosloo [mailto:[EMAIL PROTECTED]]
  Sent: Monday, May 28, 2001 8:41 AM
  To: CF-Talk
  Subject: Referencing an array item
 
 
  I have 3 arrays, which are assigned to the application scope:
 
  cfset Application.SM1 = SM1
  cfset Application.SM2 = SM2
  cfset Application.SM3 = SM3
 
  My custom tag receives a number (1,2 or 3), and with that I 
 reference the
  correct array. I need to dynamically use this number to reference the
  correct array, e.g.
 
  #ArrayLen(application.SM  attributes.Num)#
 
  (The above code does not work.) Any help would be much
  appreciated!! Thanks
  in advance.
 
  Steve
 
 
  Development Manager
  Vardus Internet Solutions (SA)
 
  Tel: (+27) 21 670 9880
  Fax: (+27) 21 674 4549
 
  Email: [EMAIL PROTECTED]
  Website: www.vardus.com
 

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

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



Re: COOKIE expiration :((

2001-05-30 Thread Michael Lugassy

Yea, I'm using Expires=Never, not timeout.
I mistakly wrote so in the message.

Thanks,

Michael Lugassy
IT/WEB Specialist
Interactive Music Ltd.
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



dhtml menu

2001-05-30 Thread Mak Wing Lok

did anyone know is there any dhtml menu CF tags that can work in IE and
Netscape, i tried CF_dhtmlMenu but it only works on IE, i need a CF tag that
will work on both browser.




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

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



RE: dhtml menu

2001-05-30 Thread alistair . davidson

YOu could try the DYNAPI project - it's an attempt to make a
Javascript/DHTML API that will work cross-browser.

Take a look at http://sourceforge.net/projects/dynapi/

-Original Message-
From: Mak Wing Lok [mailto:[EMAIL PROTECTED]]
Sent: 30 May 2001 09:41
To: CF-Talk
Subject: dhtml menu


did anyone know is there any dhtml menu CF tags that can work in IE and
Netscape, i tried CF_dhtmlMenu but it only works on IE, i need a CF tag that
will work on both browser.
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Brainbench certification

2001-05-30 Thread Mark Woods

http://www.brainbench.com

Anyone know how well respected certification from this lot is around the 
world. I know there are loads of US and some UK and Australian users on the 
list - any of you heard of them?

A friend of mine has just moved back to South Africa and she is apparently 
being asked for Brainbench certification for her CF skills, rather than the 
Allaire certification which I thought was very odd. I'm planning to move 
away from Ireland again soon and have been thinking that although I have a 
lot of proven experience, some certification wouldn't go amiss. Brainbench 
is cheap and they have certification covering pretty much all the areas in 
which I work.


Mark


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

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



RE: Brainbench certification

2001-05-30 Thread Andy Ewings

I reckon that the Allaire (oops Macromedia) certification is more highly
rearded.  We've got a couple of Brainbenchers here but no ACP's as yet.  We
are waiting for the CF5 test to come out before we send people on it because
we've heard that any certification we get now will expire as nthe newer
versions of CF come out.

-Original Message-
From: Mark Woods [mailto:[EMAIL PROTECTED]]
Sent: 30 May 2001 10:58
To: CF-Talk
Subject: Brainbench certification


http://www.brainbench.com

Anyone know how well respected certification from this lot is around the 
world. I know there are loads of US and some UK and Australian users on the 
list - any of you heard of them?

A friend of mine has just moved back to South Africa and she is apparently 
being asked for Brainbench certification for her CF skills, rather than the 
Allaire certification which I thought was very odd. I'm planning to move 
away from Ireland again soon and have been thinking that although I have a 
lot of proven experience, some certification wouldn't go amiss. Brainbench 
is cheap and they have certification covering pretty much all the areas in 
which I work.


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

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



RE: Brainbench certification

2001-05-30 Thread mike . connolly

I heard of a couple of UK people on the list that are also ACPs.  

Niklas Richardson 
Russ Michaels 

Respect

;o)

-Original Message-
From: Mark Woods [mailto:[EMAIL PROTECTED]]
Sent: 30 May 2001 10:58
To: CF-Talk
Subject: Brainbench certification


http://www.brainbench.com

Anyone know how well respected certification from this lot is around the 
world. I know there are loads of US and some UK and Australian users on the 
list - any of you heard of them?

A friend of mine has just moved back to South Africa and she is apparently 
being asked for Brainbench certification for her CF skills, rather than the 
Allaire certification which I thought was very odd. I'm planning to move 
away from Ireland again soon and have been thinking that although I have a 
lot of proven experience, some certification wouldn't go amiss. Brainbench 
is cheap and they have certification covering pretty much all the areas in 
which I work.


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

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



RE: Brainbench certification

2001-05-30 Thread Andy Ewings

Our man James Maltby is one too...

RESPECT  ;-)

Still think your better off being ACP.  Does the Brainbench certification
expire with new version releases? and what is the pass mark?

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: 30 May 2001 11:16
To: CF-Talk
Subject: RE: Brainbench certification


I heard of a couple of UK people on the list that are also ACPs.  

Niklas Richardson 
Russ Michaels 

Respect

;o)

-Original Message-
From: Mark Woods [mailto:[EMAIL PROTECTED]]
Sent: 30 May 2001 10:58
To: CF-Talk
Subject: Brainbench certification


http://www.brainbench.com

Anyone know how well respected certification from this lot is around the 
world. I know there are loads of US and some UK and Australian users on the 
list - any of you heard of them?

A friend of mine has just moved back to South Africa and she is apparently 
being asked for Brainbench certification for her CF skills, rather than the 
Allaire certification which I thought was very odd. I'm planning to move 
away from Ireland again soon and have been thinking that although I have a 
lot of proven experience, some certification wouldn't go amiss. Brainbench 
is cheap and they have certification covering pretty much all the areas in 
which I work.


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

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



Maintain Database connection?

2001-05-30 Thread Kola Oyedeji

Hi

Just a quick questions regarding the Maintain Database Connections in
Access,
should this be checked or unchecked and if it is unchecked what are the
performance
implications?

Thanks

KOla


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

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



Re: OT: JS-Frame-question

2001-05-30 Thread Dick Applebaum

Uwe

Could we see some  of the code in B?

Dick

At 9:07 AM +0200 5/30/01, [EMAIL PROTECTED] wrote:
Hi, I have two frames A and B.

A is the navigation-frame and B the content-frame.
I am having a frameset like:

frameset rows=25%,*
 frame src=A.cfm name=oben id=oben frameborder=No scrolling=no
marginwidth=0 marginheight=0
 frame src=B.cfm name=unten id=unten frameborder=No
scrolling=Auto marginwidth=0 marginheight=0
/frameset

When I call B.cfm directly all the included JS runs fine.
But it doesn't if I it run it in the belonging frameset.

What could I do to prevent this ?

Uwe

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

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



RE: Brainbench certification

2001-05-30 Thread Daniel Kemp

While there's some respect going round :)

I'm from the UK and have both the BrainBench and Allaire
certification, IMHO the Allaire/Macromedia test was harder than the
BrainBench, although the BrainBench was far better in structure 
question clarity.

It's also my opinion that the ACP should be harder than it actually
was.  The reasoning for this is that I managed to pass, and I don't
consider my own CF skills to be that particulary high.

When I'm looking for other ColdFusion programmer I'm trying to find
people with a higher skill set than my own, Someone with a ACP could
theoretically only be at the same level as me. (that said, we've had a
few temporary ppl here with just the BrainBench, and they were just
awful, with little to no grasp of basic programming concepts).

Perhaps they should have an advanced ACP test?

Dan.



This message is intended only for the use of the person(s) (the intended 
recipient(s)) to whom it is addressed.

It may contain information which is privileged and confidential within the meaning of 
the applicable law. 
If you are not the intended recipient, please contact the sender as soon as possible.
The views expressed in this communication may not necessarily be the views held by 
Live Information Systems Limited.



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

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



lfcurrencyformat

2001-05-30 Thread Mary Lou McAskill

I'm am having problems getting this to work.
I did the following and it still doesn't recognize this as English (UK)

cfset previous_locale = SetLocale(English (UK))
cfset session.local = getlocale()

#LSCurrencyFormat(999,local)#


The output from this is $ 99,999.99 and I was expecting it to be £99,999.99?
When I display a getlocale() it displays English (UK)


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

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



Re: dhtml menu

2001-05-30 Thread C Frederic Valone

Try Hiermenus http://www.webreference.com/dhtml/ If you need to use cf to dynamically 
create the menus I have gotten it to work
this way... you will need to modify the scripts a bit though. Email me off list if you 
want to see what I have done to integrate
this with cf.
Thanks,
 Frederic

Mak Wing Lok wrote:
 
 did anyone know is there any dhtml menu CF tags that can work in IE and
 Netscape, i tried CF_dhtmlMenu but it only works on IE, i need a CF tag that
 will work on both browser.
 

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

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



RE: lfcurrencyformat

2001-05-30 Thread Will Swain

Hi Mary Lou,

I have had a similar problem with this function. The locale of the server
was certainly set to English UK yet it was formatting amounts with a dollar
sign.

This was on a w2k server. Are you on one too? In the end I gave up trying to
use it and just used DecimalFormat and put a £ sign in.

Not a solution I know, but it worked!!

Cheers

Will


-Original Message-
From: Mary Lou McAskill [mailto:[EMAIL PROTECTED]]
Sent: 30 May 2001 12:25
To: CF-Talk
Subject: lfcurrencyformat


I'm am having problems getting this to work.
I did the following and it still doesn't recognize this as English (UK)

cfset previous_locale = SetLocale(English (UK))
cfset session.local = getlocale()

#LSCurrencyFormat(999,local)#


The output from this is $ 99,999.99 and I was expecting it to be £99,999.99?
When I display a getlocale() it displays English (UK)
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: Brainbench certification

2001-05-30 Thread Alex Skinner - Digital Dreams

we've heard that any certification we get now will expire as the newer
versions of CF come out.


Not the case all existing certs will be automatically upgraded to CF5
according to a macromedia bulletin I received I can forward it to you if you
like


Alex Skinner
Macromedia Certified Trainer
Digital Dreams
020 82741988 / 07980 222768
http://www.Digitaldreams.co.uk


The information contained in this email is confidential and may also be
legally
privileged. Any views or opinions presented are solely those of the author
and
do not necessarily represent those of Digital Dreams unless otherwise
stated.

The information contained in the email is intended only for the stated
addressee(s) and
access to it by any other person is forbidden. If you are not an addressee,
you agree not to disclose, copy, circulate or in any other way use or rely
on the
information contained in this email. Such unauthorised use may be unlawful.

Digital Dreams has taken all reasonable precautions to ensure that no
viruses are
transmitted from Digital Dreams to any third party. Digital Dreams accept no
responsibility for any damage or loss resulting directly or indirectly
from the use of this e-mail or its contents.

If you have received this email in error, please inform us
immediately at [EMAIL PROTECTED] and delete it and all copies
from your
system. Any opinion or advice to clients contained in this email are to be
read subject to Digital Dreams standard terms and conditions of engagement
a copy of which is available on request.





-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Andy Ewings
Sent: 30 May 2001 11:11
To: CF-Talk
Subject: RE: Brainbench certification


I reckon that the Allaire (oops Macromedia) certification is more highly
rearded.  We've got a couple of Brainbenchers here but no ACP's as yet.  We
are waiting for the CF5 test to come out before we send people on it because
we've heard that any certification we get now will expire as nthe newer
versions of CF come out.

-Original Message-
From: Mark Woods [mailto:[EMAIL PROTECTED]]
Sent: 30 May 2001 10:58
To: CF-Talk
Subject: Brainbench certification


http://www.brainbench.com

Anyone know how well respected certification from this lot is around the
world. I know there are loads of US and some UK and Australian users on the
list - any of you heard of them?

A friend of mine has just moved back to South Africa and she is apparently
being asked for Brainbench certification for her CF skills, rather than the
Allaire certification which I thought was very odd. I'm planning to move
away from Ireland again soon and have been thinking that although I have a
lot of proven experience, some certification wouldn't go amiss. Brainbench
is cheap and they have certification covering pretty much all the areas in
which I work.


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

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



RE: Brainbench certification

2001-05-30 Thread Andy Ewings

I agree with this - the ACP is supposed to be easier than the MCP tests by
all accounts.  you only need 60% to get ACP but 80% for MCP.  Bear mind that
being ACP doesn't necressarily mean that you are a top CF programmer - just
shows you know a thing or two about it.  You can exam cram and pass
easilly.  I know a guy who had very little IT knowledge at all, paid a load
of money to do 6 weeks worth of courses, and then after 6 weeks took some
exams (6 in total) and became MCSE!Now I don't care what anyone says but
I'd rather employ a guy with a couple of years experience and no
certification than someone else just because thay were MCSE.


-Original Message-
From: Daniel Kemp [mailto:[EMAIL PROTECTED]]
Sent: 30 May 2001 12:08
To: CF-Talk
Subject: RE: Brainbench certification


While there's some respect going round :)

I'm from the UK and have both the BrainBench and Allaire
certification, IMHO the Allaire/Macromedia test was harder than the
BrainBench, although the BrainBench was far better in structure 
question clarity.

It's also my opinion that the ACP should be harder than it actually
was.  The reasoning for this is that I managed to pass, and I don't
consider my own CF skills to be that particulary high.

When I'm looking for other ColdFusion programmer I'm trying to find
people with a higher skill set than my own, Someone with a ACP could
theoretically only be at the same level as me. (that said, we've had a
few temporary ppl here with just the BrainBench, and they were just
awful, with little to no grasp of basic programming concepts).

Perhaps they should have an advanced ACP test?

Dan.



This message is intended only for the use of the person(s) (the intended
recipient(s)) to whom it is addressed.

It may contain information which is privileged and confidential within the
meaning of the applicable law. 
If you are not the intended recipient, please contact the sender as soon as
possible.
The views expressed in this communication may not necessarily be the views
held by Live Information Systems Limited.
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: Brainbench certification

2001-05-30 Thread Andy Ewings

Really? - can you point me in the direction of this?  I got my info from
UniPam - the CF distributors for the UK but if Macromedia are saying
someting different...

I'm assuming though that people who pass a CF 5 exam will have an advantage
over the people who passed 4.5 exams. i.e. the 4.5 'ers will have to upgrade
at some point?  If this is the case does anyone know of timescales?

-Original Message-
From: Alex Skinner - Digital Dreams [mailto:[EMAIL PROTECTED]]
Sent: 30 May 2001 12:52
To: CF-Talk
Subject: RE: Brainbench certification


we've heard that any certification we get now will expire as the newer
versions of CF come out.


Not the case all existing certs will be automatically upgraded to CF5
according to a macromedia bulletin I received I can forward it to you if you
like


Alex Skinner
Macromedia Certified Trainer
Digital Dreams
020 82741988 / 07980 222768
http://www.Digitaldreams.co.uk


The information contained in this email is confidential and may also be
legally
privileged. Any views or opinions presented are solely those of the author
and
do not necessarily represent those of Digital Dreams unless otherwise
stated.

The information contained in the email is intended only for the stated
addressee(s) and
access to it by any other person is forbidden. If you are not an addressee,
you agree not to disclose, copy, circulate or in any other way use or rely
on the
information contained in this email. Such unauthorised use may be unlawful.

Digital Dreams has taken all reasonable precautions to ensure that no
viruses are
transmitted from Digital Dreams to any third party. Digital Dreams accept no
responsibility for any damage or loss resulting directly or indirectly
from the use of this e-mail or its contents.

If you have received this email in error, please inform us
immediately at [EMAIL PROTECTED] and delete it and all copies
from your
system. Any opinion or advice to clients contained in this email are to be
read subject to Digital Dreams standard terms and conditions of engagement
a copy of which is available on request.





-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Andy Ewings
Sent: 30 May 2001 11:11
To: CF-Talk
Subject: RE: Brainbench certification


I reckon that the Allaire (oops Macromedia) certification is more highly
rearded.  We've got a couple of Brainbenchers here but no ACP's as yet.  We
are waiting for the CF5 test to come out before we send people on it because
we've heard that any certification we get now will expire as nthe newer
versions of CF come out.

-Original Message-
From: Mark Woods [mailto:[EMAIL PROTECTED]]
Sent: 30 May 2001 10:58
To: CF-Talk
Subject: Brainbench certification


http://www.brainbench.com

Anyone know how well respected certification from this lot is around the
world. I know there are loads of US and some UK and Australian users on the
list - any of you heard of them?

A friend of mine has just moved back to South Africa and she is apparently
being asked for Brainbench certification for her CF skills, rather than the
Allaire certification which I thought was very odd. I'm planning to move
away from Ireland again soon and have been thinking that although I have a
lot of proven experience, some certification wouldn't go amiss. Brainbench
is cheap and they have certification covering pretty much all the areas in
which I work.


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

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



Re: Silly Validation Question...

2001-05-30 Thread G

Make your submit button call a javascript function that: 1) checks the
value of the select box and 2) submits if not NULL, otherwise, displays an
error message.

Something like this:


function CheckForNull( )
{
if (document.FormName.selectBox.value == )
alert (Please select a state)
else
document.FormName.submit()
}


Then your button:

input type=button value=Submit onClick=CheckForNull()

(I haven't tested the syntax of the code, remember JS is case sensitive)

HTH
Brian
- Original Message -
From: Brandon Wood [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, May 29, 2001 4:13 PM
Subject: Silly Validation Question...


 Hey,

 Does anyone have a good script or method of making a select box contain a
 value other than ?

 I am working on a state drop-down in which the first selection is Pick
 State with a value of .

 What I want to happen is for a javascript screen to pop up (or something
 like that--you know the usual CFFORM javascript validation) if a user
tries
 to submit the form without choosing a state that has a value.  I have
seenm
 this used many times and even with CFSELECT form fields, but I am having
the
 worst time trying to implement this.

 I want to populate the CFSELECT with a query from a State_Table but do not
 want to store a state with a value of  as not to populate a state field
 with NULL answer.

 Is there an OnError or someother Javanscript function that could make sure
 that a value other than  was chosen and that the error message could be
 configurable.  I know that this is so CF 101, but I have never had to do
 this and am pulling my hair out in anger.

 Thanks a ton,
 BW



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

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



CF_GOINGNUTS

2001-05-30 Thread Michael Lugassy

I'm having problems with cfhttp !
let me know if you can help with this:

I'm trying to loop over 30 cfhttp tags,
the problem is that coldfusion first goes ok,
and then for some reason the next CFHTTP or the 3rd/4th/5th CFHTTP
fails, and the rest (till 30) fails, with the SAME status CODE and SAME mimetype.
something like - it's ain't running at all after a specific number of THREADS!!!

anyone know also where can I find cfx_http and how good is it?

help, please



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

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



CF5 review in eWEEK

2001-05-30 Thread Arden Weiss

Very interesting overview of CF5 and beyond at following link...

http://www.zdnet.com/eweek/stories/general/0,11011,2764421,00.html

Sad that this kind of insight is not available direcly from 
Allaire/Macromedia.

Here we developers are -- acting essentially as outside sales folks for 
Macromedia -- and we have to depend on insight such as this from 3rd party 
sources -- oh well.

 ^
/ \__
   (@\___
  /  O
 /(_/
/_/
Whoof...
410-757-3487




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

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



Re: dhtml menu

2001-05-30 Thread Paul Johnston

I did notice that there was a cf_hiermenus tag just uploaded to the
developers exchange.

Paul
-Original Message-
From: C Frederic Valone [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Date: 30 May 2001 12:50
Subject: Re: dhtml menu


Try Hiermenus http://www.webreference.com/dhtml/ If you need to use cf to
dynamically create the menus I have gotten it to work
this way... you will need to modify the scripts a bit though. Email me off
list if you want to see what I have done to integrate
this with cf.
Thanks,
 Frederic

Mak Wing Lok wrote:

 did anyone know is there any dhtml menu CF tags that can work in IE and
 Netscape, i tried CF_dhtmlMenu but it only works on IE, i need a CF tag
that
 will work on both browser.



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

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



RE: COOKIE expiration :((

2001-05-30 Thread JoshMEagle

I don't suppose you're using cflocation anywhere in your application? I
heard that cflocation can cause cookie problems.
If you are, try scriptdocument.location.href=yourlink.cfm;/script
instead.

Just an idea.

Joshua Miller
Web Development
Eagle Technologies Group
Technology Solutions for the Next Generation
www.eagletgi.com
[EMAIL PROTECTED]

-Original Message-
From: Bryan LaPlante [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 30, 2001 3:35 AM
To: CF-Talk
Subject: Re: COOKIE expiration :((


You may already be doing this but the value should be EXPIRES=NEVER not
timeout

Bryan

- Original Message -
From: Michael Lugassy [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, May 30, 2001 3:27 AM
Subject: COOKIE expiration :((


 I'm getting really frustrated from this CFCOOKIE thing.
 Apparently, after I assign the cookie with Timeout=Never the cookie
 is deleted and terminated every time the user closes the browser.
 I tried to change Timeout to 14 days, but it didn't help.
 Closing the browser terminates the cookie.

 Is there a diffrent way to assign cookies?

 PLEASE HELP!!!

 -=Michael.



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

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



RE: CF5 review in eWEEK

2001-05-30 Thread Raymond Camden

 Sad that this kind of insight is not available direcly from
 Allaire/Macromedia.

Eh? There is nothing in this article that is not available on either the web
site, or in the streaming video announcements from last years DevConf (err,
which is ALSO on the web site).

===
Raymond Camden, Principal Spectra Compliance Engineer for Macromedia

Email   : [EMAIL PROTECTED]
ICQ UIN : 3679482

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


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

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



RE: CFFLUSH QUESTION

2001-05-30 Thread Raymond Camden

CFFLUSH doesn't know the difference between TABLE tags or any other HTML
tag. It just flushes out content. It's really up to the browser, so you will
have to test to find out.

One thing I've found is that IE will refuse to render until it gets X amount
of data. So, if you don't have a lot of output before your CFFLUSH, you
won't see anything. I got around this by using RepeatString( ,X) where X
is some number.

===
Raymond Camden, Principal Spectra Compliance Engineer for Macromedia

Email   : [EMAIL PROTECTED]
ICQ UIN : 3679482

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

 -Original Message-
 From: Pooh Bear [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, May 29, 2001 5:39 PM
 To: CF-Talk
 Subject: CFFLUSH QUESTION


 how does CFFLUSH handle tables?  i mean, let's say my page is a
 whole table,
 and there is some things inside the table that should display a
 few seconds
 after another after processing is done (which CFFLUSH is for).  however,
 would CFFLUSH be useless in this case since the browser waits for
 all of the
 Table code to be dowloaded, thus, you'll see everything at the same time
 anyways?  hehehehehhe


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

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



Re: CF_GOINGNUTS

2001-05-30 Thread Mark Woods

Maybe it's just a problem with the looping condition or code within the 
loop, but if you're sure it's not...

AFAIK CFHTTP on windows uses the wininet.dll, which has various 'issues' 
(MS speak for 'bugs'). One of these is a limited number of concurrent 
connections per server. Check these articles:
http://support.microsoft.com/support/kb/articles/Q183/1/10.ASP
http://support.microsoft.com/support/kb/articles/Q238/4/25.ASP

I'm gonna send cfx_http files in a direct email in case you want to use it, 
but it's limited in what it can do - great for spidering, but no POST 
support and it also uses the wininet.dll. I'd recommend the ASPHTTP 
component available from ServerObjects.com, if you find the problem is 
really a CFHTTP one, especially if it's related to wininet.dll (ASPHTTP 
doesn't use it).


Mark


At 02:09 PM 5/30/2001, you wrote:
I'm having problems with cfhttp !
let me know if you can help with this:

I'm trying to loop over 30 cfhttp tags,
the problem is that coldfusion first goes ok,
and then for some reason the next CFHTTP or the 3rd/4th/5th CFHTTP
fails, and the rest (till 30) fails, with the SAME status CODE and SAME 
mimetype.
something like - it's ain't running at all after a specific number of 
THREADS!!!

anyone know also where can I find cfx_http and how good is it?

help, please



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

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



RE: lfcurrencyformat

2001-05-30 Thread Thomas Chiverton

I posted a similar problem with Date/Time formatting a few weeks back, to no
avail.
I tried it on two servers, both with CF4.5.latest on. W2kSP2 with apache and
NT4Sp6a with iis4.

 I have had a similar problem with this function. The locale 
 of the server
 was certainly set to English UK yet it was formatting amounts 
 with a dollar
 sign.

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

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



Re: CF5 review in eWEEK

2001-05-30 Thread Howie Hamlin

Allaire has been mentioning the move to a Java Engine (NEO) since last November at the 
developer's conference.

Howie

- Original Message - 
From: Arden Weiss [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, May 30, 2001 8:09 AM
Subject: CF5 review in eWEEK


 Very interesting overview of CF5 and beyond at following link...
 
 http://www.zdnet.com/eweek/stories/general/0,11011,2764421,00.html
 
 Sad that this kind of insight is not available direcly from 
 Allaire/Macromedia.
 
 Here we developers are -- acting essentially as outside sales folks for 
 Macromedia -- and we have to depend on insight such as this from 3rd party 
 sources -- oh well.
 
  ^
 / \__
(@\___
   /  O
  /(_/
 /_/
 Whoof...
 410-757-3487
 
 
 
 

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

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



RE: Brainbench certification

2001-05-30 Thread Kevin Gilchrist

We view the ACP as being the more worthy of the two while we have final
stage inteviewees take the brainbench exam onsite on a PC restricted to the
brainbench domain.

We weigh experience most heavily but like to get people to demonstrate at
least some knowledge as we had a number of candidates fail reference checks
etc.

Kevin

-Original Message-
From: Mark Woods [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 30, 2001 5:58 AM
To: CF-Talk
Subject: Brainbench certification


http://www.brainbench.com

Anyone know how well respected certification from this lot is around the 
world. I know there are loads of US and some UK and Australian users on the 
list - any of you heard of them?

A friend of mine has just moved back to South Africa and she is apparently 
being asked for Brainbench certification for her CF skills, rather than the 
Allaire certification which I thought was very odd. I'm planning to move 
away from Ireland again soon and have been thinking that although I have a 
lot of proven experience, some certification wouldn't go amiss. Brainbench 
is cheap and they have certification covering pretty much all the areas in 
which I work.


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

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



Re: COOKIE expiration :((

2001-05-30 Thread Michael Lugassy

yea, I was aware of that.
and I took all of the cflocations out, but still.
the cookie terminates after I close the browser. :((

Thanks,
[EMAIL PROTECTED]

- Original Message -
From: JoshMEagle [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, May 30, 2001 2:23 PM
Subject: RE: COOKIE expiration :((


 I don't suppose you're using cflocation anywhere in your application? I
 heard that cflocation can cause cookie problems.
 If you are, try scriptdocument.location.href=yourlink.cfm;/script
 instead.

 Just an idea.

 Joshua Miller
 Web Development
 Eagle Technologies Group
 Technology Solutions for the Next Generation
 www.eagletgi.com
 [EMAIL PROTECTED]

 -Original Message-
 From: Bryan LaPlante [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, May 30, 2001 3:35 AM
 To: CF-Talk
 Subject: Re: COOKIE expiration :((


 You may already be doing this but the value should be EXPIRES=NEVER not
 timeout

 Bryan

 - Original Message -
 From: Michael Lugassy [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Wednesday, May 30, 2001 3:27 AM
 Subject: COOKIE expiration :((


  I'm getting really frustrated from this CFCOOKIE thing.
  Apparently, after I assign the cookie with Timeout=Never the cookie
  is deleted and terminated every time the user closes the browser.
  I tried to change Timeout to 14 days, but it didn't help.
  Closing the browser terminates the cookie.
 
  Is there a diffrent way to assign cookies?
 
  PLEASE HELP!!!
 
  -=Michael.
 
 
 

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

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



RE: Brainbench certification

2001-05-30 Thread Alex Skinner - Digital Dreams

Unipalm?

Well I've been searching for the email and can't find it but I think it was
the email about the CF 5 launch. Im 100% sure though as I remember being
quite pleased, I had a difficult enough time getting around to doing the
previous cert. Unipalm have no involvement with Certs so I'd check with
macromedia directly if I were you.

Alex Skinner
Macromedia Certified Trainer
Digital Dreams
020 82741988 / 07980 222768
http://www.Digitaldreams.co.uk


The information contained in this email is confidential and may also be
legally
privileged. Any views or opinions presented are solely those of the author
and
do not necessarily represent those of Digital Dreams unless otherwise
stated.

The information contained in the email is intended only for the stated
addressee(s) and
access to it by any other person is forbidden. If you are not an addressee,
you agree not to disclose, copy, circulate or in any other way use or rely
on the
information contained in this email. Such unauthorised use may be unlawful.

Digital Dreams has taken all reasonable precautions to ensure that no
viruses are
transmitted from Digital Dreams to any third party. Digital Dreams accept no
responsibility for any damage or loss resulting directly or indirectly
from the use of this e-mail or its contents.

If you have received this email in error, please inform us
immediately at [EMAIL PROTECTED] and delete it and all copies
from your
system. Any opinion or advice to clients contained in this email are to be
read subject to Digital Dreams standard terms and conditions of engagement
a copy of which is available on request.


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Andy Ewings
Sent: 30 May 2001 13:08
To: CF-Talk
Subject: RE: Brainbench certification


Really? - can you point me in the direction of this?  I got my info from
UniPam - the CF distributors for the UK but if Macromedia are saying
someting different...

I'm assuming though that people who pass a CF 5 exam will have an advantage
over the people who passed 4.5 exams. i.e. the 4.5 'ers will have to upgrade
at some point?  If this is the case does anyone know of timescales?

-Original Message-
From: Alex Skinner - Digital Dreams [mailto:[EMAIL PROTECTED]]
Sent: 30 May 2001 12:52
To: CF-Talk
Subject: RE: Brainbench certification


we've heard that any certification we get now will expire as the newer
versions of CF come out.


Not the case all existing certs will be automatically upgraded to CF5
according to a macromedia bulletin I received I can forward it to you if you
like


Alex Skinner
Macromedia Certified Trainer
Digital Dreams
020 82741988 / 07980 222768
http://www.Digitaldreams.co.uk


The information contained in this email is confidential and may also be
legally
privileged. Any views or opinions presented are solely those of the author
and
do not necessarily represent those of Digital Dreams unless otherwise
stated.

The information contained in the email is intended only for the stated
addressee(s) and
access to it by any other person is forbidden. If you are not an addressee,
you agree not to disclose, copy, circulate or in any other way use or rely
on the
information contained in this email. Such unauthorised use may be unlawful.

Digital Dreams has taken all reasonable precautions to ensure that no
viruses are
transmitted from Digital Dreams to any third party. Digital Dreams accept no
responsibility for any damage or loss resulting directly or indirectly
from the use of this e-mail or its contents.

If you have received this email in error, please inform us
immediately at [EMAIL PROTECTED] and delete it and all copies
from your
system. Any opinion or advice to clients contained in this email are to be
read subject to Digital Dreams standard terms and conditions of engagement
a copy of which is available on request.





-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Andy Ewings
Sent: 30 May 2001 11:11
To: CF-Talk
Subject: RE: Brainbench certification


I reckon that the Allaire (oops Macromedia) certification is more highly
rearded.  We've got a couple of Brainbenchers here but no ACP's as yet.  We
are waiting for the CF5 test to come out before we send people on it because
we've heard that any certification we get now will expire as nthe newer
versions of CF come out.

-Original Message-
From: Mark Woods [mailto:[EMAIL PROTECTED]]
Sent: 30 May 2001 10:58
To: CF-Talk
Subject: Brainbench certification


http://www.brainbench.com

Anyone know how well respected certification from this lot is around the
world. I know there are loads of US and some UK and Australian users on the

Re: CF_GOINGNUTS

2001-05-30 Thread Michael Lugassy

Thanks Mark,
so will CFX_http help me out?
is it better for GETTING then Allaire's CFHTTP? although the'yre both using
wininet?
I've looked into ASPHTTP which looks great, but I don't seem to undertsnad
how
to implement it on CF pages? the examples shows VB and ASP.
can you please tell me briefly how to incorporate asphttp code in my cf
page?
what I need is:
getting a webpage into a CF variable
getting a binary file to a file
getting the asphttp status code and mimetype.

I can see the xamples, but totally don't understand how to put the script
into CF.. :(

Michael.

- Original Message -
From: Mark Woods [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, May 30, 2001 2:26 PM
Subject: Re: CF_GOINGNUTS


 Maybe it's just a problem with the looping condition or code within the
 loop, but if you're sure it's not...

 AFAIK CFHTTP on windows uses the wininet.dll, which has various 'issues'
 (MS speak for 'bugs'). One of these is a limited number of concurrent
 connections per server. Check these articles:
 http://support.microsoft.com/support/kb/articles/Q183/1/10.ASP
 http://support.microsoft.com/support/kb/articles/Q238/4/25.ASP

 I'm gonna send cfx_http files in a direct email in case you want to use
it,
 but it's limited in what it can do - great for spidering, but no POST
 support and it also uses the wininet.dll. I'd recommend the ASPHTTP
 component available from ServerObjects.com, if you find the problem is
 really a CFHTTP one, especially if it's related to wininet.dll (ASPHTTP
 doesn't use it).


 Mark


 At 02:09 PM 5/30/2001, you wrote:
 I'm having problems with cfhttp !
 let me know if you can help with this:
 
 I'm trying to loop over 30 cfhttp tags,
 the problem is that coldfusion first goes ok,
 and then for some reason the next CFHTTP or the 3rd/4th/5th CFHTTP
 fails, and the rest (till 30) fails, with the SAME status CODE and SAME
 mimetype.
 something like - it's ain't running at all after a specific number of
 THREADS!!!
 
 anyone know also where can I find cfx_http and how good is it?
 
 help, please
 



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

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



RE: lfcurrencyformat

2001-05-30 Thread Mary Lou McAskill

I found out that if you set the locale on the page that your doing the LS
formatting it recognizes it as English (UK).

Is locale a variable that is kept. eg session or application? Or do you need
to setlocale() all of the time?

-Original Message-
From: Thomas Chiverton [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 30, 2001 8:37 AM
To: CF-Talk
Subject: RE: lfcurrencyformat


I posted a similar problem with Date/Time formatting a few weeks back, to no
avail.
I tried it on two servers, both with CF4.5.latest on. W2kSP2 with apache and
NT4Sp6a with iis4.

 I have had a similar problem with this function. The locale 
 of the server
 was certainly set to English UK yet it was formatting amounts 
 with a dollar
 sign.
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: Brainbench certification

2001-05-30 Thread Andy Ewings

Yeh I know that theyu don't have any involvement in certs - just the guy
advised us to wait as if he knew something or had heard from someone at
Macromedia along the grapevine.  Still what you're saying is music to my
ears too!!!

-Original Message-
From: Alex Skinner - Digital Dreams [mailto:[EMAIL PROTECTED]]
Sent: 30 May 2001 14:13
To: CF-Talk
Subject: RE: Brainbench certification


Unipalm?

Well I've been searching for the email and can't find it but I think it was
the email about the CF 5 launch. Im 100% sure though as I remember being
quite pleased, I had a difficult enough time getting around to doing the
previous cert. Unipalm have no involvement with Certs so I'd check with
macromedia directly if I were you.

Alex Skinner
Macromedia Certified Trainer
Digital Dreams
020 82741988 / 07980 222768
http://www.Digitaldreams.co.uk


The information contained in this email is confidential and may also be
legally
privileged. Any views or opinions presented are solely those of the author
and
do not necessarily represent those of Digital Dreams unless otherwise
stated.

The information contained in the email is intended only for the stated
addressee(s) and
access to it by any other person is forbidden. If you are not an addressee,
you agree not to disclose, copy, circulate or in any other way use or rely
on the
information contained in this email. Such unauthorised use may be unlawful.

Digital Dreams has taken all reasonable precautions to ensure that no
viruses are
transmitted from Digital Dreams to any third party. Digital Dreams accept no
responsibility for any damage or loss resulting directly or indirectly
from the use of this e-mail or its contents.

If you have received this email in error, please inform us
immediately at [EMAIL PROTECTED] and delete it and all copies
from your
system. Any opinion or advice to clients contained in this email are to be
read subject to Digital Dreams standard terms and conditions of engagement
a copy of which is available on request.


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Andy Ewings
Sent: 30 May 2001 13:08
To: CF-Talk
Subject: RE: Brainbench certification


Really? - can you point me in the direction of this?  I got my info from
UniPam - the CF distributors for the UK but if Macromedia are saying
someting different...

I'm assuming though that people who pass a CF 5 exam will have an advantage
over the people who passed 4.5 exams. i.e. the 4.5 'ers will have to upgrade
at some point?  If this is the case does anyone know of timescales?

-Original Message-
From: Alex Skinner - Digital Dreams [mailto:[EMAIL PROTECTED]]
Sent: 30 May 2001 12:52
To: CF-Talk
Subject: RE: Brainbench certification


we've heard that any certification we get now will expire as the newer
versions of CF come out.


Not the case all existing certs will be automatically upgraded to CF5
according to a macromedia bulletin I received I can forward it to you if you
like


Alex Skinner
Macromedia Certified Trainer
Digital Dreams
020 82741988 / 07980 222768
http://www.Digitaldreams.co.uk


The information contained in this email is confidential and may also be
legally
privileged. Any views or opinions presented are solely those of the author
and
do not necessarily represent those of Digital Dreams unless otherwise
stated.

The information contained in the email is intended only for the stated
addressee(s) and
access to it by any other person is forbidden. If you are not an addressee,
you agree not to disclose, copy, circulate or in any other way use or rely
on the
information contained in this email. Such unauthorised use may be unlawful.

Digital Dreams has taken all reasonable precautions to ensure that no
viruses are
transmitted from Digital Dreams to any third party. Digital Dreams accept no
responsibility for any damage or loss resulting directly or indirectly
from the use of this e-mail or its contents.

If you have received this email in error, please inform us
immediately at [EMAIL PROTECTED] and delete it and all copies
from your
system. Any opinion or advice to clients contained in this email are to be
read subject to Digital Dreams standard terms and conditions of engagement
a copy of which is available on request.





-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Andy Ewings
Sent: 30 May 2001 11:11
To: CF-Talk
Subject: RE: Brainbench certification


I reckon that the Allaire (oops Macromedia) certification is more highly
rearded.  We've got a couple of Brainbenchers here but no ACP's as yet.  We
are waiting for the CF5 test to come out before we send people on it because
we've heard that any 

RE: CF5 review in eWEEK

2001-05-30 Thread Arden Weiss

Sorry you missed my point -- I and my clients buy products from a vendor 
(Allaire/Macromedia) and they choose not to keep the paying customer 
informed in a proactive manner -- instead they wait for the 
customer/client/developer to go to their events/websites to get information 
-- is that how you as a developer behave with your customers?

Same with the thread about certification CF4.5 vs 5.0 (recent ongoing 
thread) -- regarding the real truth about whether CF4.5 certifcation 
transfers to 5.0 and other related issues -- some think so, some do not -- 
which is it -- guess who could/should set the record straight in a 
proactive manner...

CFX_OFF_SOAPBOX

 ^
/ \__
   (@\___
  /  O
 /(_/
/_/
Whoof...
410-757-3487

-Original Message-
From:   Raymond Camden [SMTP:[EMAIL PROTECTED]]
Sent:   Wednesday, May 30, 2001 8:27 AM
To: CF-Talk
Subject:RE: CF5 review in eWEEK

 Sad that this kind of insight is not available direcly from
 Allaire/Macromedia.

Eh? There is nothing in this article that is not available on either the 
web
site, or in the streaming video announcements from last years DevConf (err,
which is ALSO on the web site).

===
Raymond Camden, Principal Spectra Compliance Engineer for Macromedia

Email   : [EMAIL PROTECTED]
ICQ UIN : 3679482

My ally is the Force, and a powerful ally it is. - Yoda
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: CF5 review in eWEEK

2001-05-30 Thread Benjamin S. Rogers

What did the article address that hasn't been mentioned before on this list
or made readily available on Allaire's site?

Benjamin S. Rogers
Web Developer, c4.net
Voice: (508) 240-0051
Fax: (508) 240-0057

-Original Message-
From: Arden Weiss [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 30, 2001 8:10 AM
To: CF-Talk
Subject: CF5 review in eWEEK


Very interesting overview of CF5 and beyond at following link...

http://www.zdnet.com/eweek/stories/general/0,11011,2764421,00.html

Sad that this kind of insight is not available direcly from
Allaire/Macromedia.

Here we developers are -- acting essentially as outside sales folks for
Macromedia -- and we have to depend on insight such as this from 3rd party
sources -- oh well.

 ^
/ \__
   (@\___
  /  O
 /(_/
/_/
Whoof...
410-757-3487
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: CF_GOINGNUTS

2001-05-30 Thread Dave Watts

 AFAIK CFHTTP on windows uses the wininet.dll, which has 
 various 'issues' (MS speak for 'bugs').

This is no longer the case, since CF 4.5.

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

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

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



RE: COOKIE expiration :((

2001-05-30 Thread Dylan Bromby

post the code.

otherwise - and you may already know this:

remember...if you load a page with CFCOOKIE (or write a cookie any other
way) then quit the browser, the cookie *is not* set. you need to load a
subsequent page.

for example, consider the path:

page1.cfm --- page2.cfm --- page3.cfm

assume: you login on page 1. page 2 uses CFCOOKIE to write to the client.
page 3 does something else.

if you don't go to page 3, the cookie won't be set since the CFCOOKIE code
is in page 2. this is also why you can' access the cookie object from the
same file that sets it. this isn't a limit of CF, it's how cookies work.

so if you quit the browser right after the file that contains CFCOOKIE,
that's why it's not persisting.

-Original Message-
From: Michael Lugassy [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 30, 2001 7:10 AM
To: CF-Talk
Subject: Re: COOKIE expiration :((


yea, I was aware of that.
and I took all of the cflocations out, but still.
the cookie terminates after I close the browser. :((

Thanks,
[EMAIL PROTECTED]

- Original Message -
From: JoshMEagle [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, May 30, 2001 2:23 PM
Subject: RE: COOKIE expiration :((


 I don't suppose you're using cflocation anywhere in your application? I
 heard that cflocation can cause cookie problems.
 If you are, try scriptdocument.location.href=yourlink.cfm;/script
 instead.

 Just an idea.

 Joshua Miller
 Web Development
 Eagle Technologies Group
 Technology Solutions for the Next Generation
 www.eagletgi.com
 [EMAIL PROTECTED]

 -Original Message-
 From: Bryan LaPlante [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, May 30, 2001 3:35 AM
 To: CF-Talk
 Subject: Re: COOKIE expiration :((


 You may already be doing this but the value should be EXPIRES=NEVER not
 timeout

 Bryan

 - Original Message -
 From: Michael Lugassy [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Wednesday, May 30, 2001 3:27 AM
 Subject: COOKIE expiration :((


  I'm getting really frustrated from this CFCOOKIE thing.
  Apparently, after I assign the cookie with Timeout=Never the cookie
  is deleted and terminated every time the user closes the browser.
  I tried to change Timeout to 14 days, but it didn't help.
  Closing the browser terminates the cookie.
 
  Is there a diffrent way to assign cookies?
 
  PLEASE HELP!!!
 
  -=Michael.
 
 
 

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

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



RE: RealAudio and ColdFusion

2001-05-30 Thread Steve Bernard

Try FileExists(), as suggested by another post. If the file exists on the
box it can be queried. Make sure to check the docs for usage.


Steve

-Original Message-
From: David Grabbe [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 29, 2001 8:41 PM
To: CF-Talk
Subject: RE: RealAudio and ColdFusion



Thanks, Steve.

CF and RealServer ARE on the same machine, but since the .rm file is being
sent out over a different port (7070), it doesn't seem to be available for
normal file processing (I set up a CFDIRECTORY tag, and the .rm doesn't show
up in the folder).  Is there a way, then, to 'listen' on a different port
and direct CFFILE or CFDIRECTORY in that direction?

Cheers,
David

-Original Message-
From: Steve Bernard [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 29, 2001 5:44 PM
To: CF-Talk
Subject: RE: RealAudio and ColdFusion


If CF and Real Server are on the same machine just use CFFILE.

Steve

-Original Message-
From: David Grabbe [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 29, 2001 3:57 PM
To: CF-Talk
Subject: RealAudio and ColdFusion


Howdy folks,

I'm running CF 4.5.1.  The organization I work for has a weekly program
which we stream via RealAudio.  The RealAudio aspect is working just fine,
but I'm wondering if there is a way for CF to detect whether or not the
RealAudio stream is active or not (i.e. check for the existence of the .rm
file).  I looked into using CFHTTP, but couldn't get that to work --
probably because of the media type.  I'm not actually wanting to download,
just see if the stream exists.  If there an easy way to do this?  Are there
any RA gurus out there  :)

Thanks in advance!

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

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



RE: CF5 review in eWEEK

2001-05-30 Thread Dylan Bromby

as far as being *proactive*, you could have signed up for the CF5.0 beta
test and learned all about it for months before its release. is it allaire's
responsibility to make sure *you're* up to speed? i can't imagine what my
business would be like if i waited for others to educate me about
technology.


-Original Message-
From: Arden Weiss [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 30, 2001 6:26 AM
To: CF-Talk
Subject: RE: CF5 review in eWEEK


Sorry you missed my point -- I and my clients buy products from a vendor
(Allaire/Macromedia) and they choose not to keep the paying customer
informed in a proactive manner -- instead they wait for the
customer/client/developer to go to their events/websites to get information
-- is that how you as a developer behave with your customers?

Same with the thread about certification CF4.5 vs 5.0 (recent ongoing
thread) -- regarding the real truth about whether CF4.5 certifcation
transfers to 5.0 and other related issues -- some think so, some do not --
which is it -- guess who could/should set the record straight in a
proactive manner...

CFX_OFF_SOAPBOX

 ^
/ \__
   (@\___
  /  O
 /(_/
/_/
Whoof...
410-757-3487

-Original Message-
From:   Raymond Camden [SMTP:[EMAIL PROTECTED]]
Sent:   Wednesday, May 30, 2001 8:27 AM
To: CF-Talk
Subject:RE: CF5 review in eWEEK

 Sad that this kind of insight is not available direcly from
 Allaire/Macromedia.

Eh? There is nothing in this article that is not available on either the
web
site, or in the streaming video announcements from last years DevConf (err,
which is ALSO on the web site).

===
Raymond Camden, Principal Spectra Compliance Engineer for Macromedia

Email   : [EMAIL PROTECTED]
ICQ UIN : 3679482

My ally is the Force, and a powerful ally it is. - Yoda
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



turning off automatic carriage-return insertion in CF Studio

2001-05-30 Thread Jason Blum


Greetings!

Anyone happen to know how to turn off CF Studio's automatic insertion of
carriage returns throughout my code every time I load a template?  I thought
perhaps it was the Code Sweeper feature, but I have this disabled.  I am a
little mystified by why anyone would ever even want their code automatically
stretched in the first place?!?!

-Jason

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

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



Re: CF_GOINGNUTS [[SOLVED!!!]

2001-05-30 Thread Michael Lugassy

SOLVED THE ISSUE!!! coding problem :))
Apparently I didn't change the URL everytime I got a bad response from the
server (or incorrect mime type) so CFhttp gave the RIGHT answer - but it
looped everytime on the last wrong URL without
changing it. that's way the answer was the same till the loop ended. I took
the cfset url=
outside of the IF condiftion, and now it's working!!

I'm sorry but IT LOOKED LIKE THE SAME memory leak and instability I had with
the old version of CF.
so, everything is great now! CF is fun to work with and a blast to develop
in


Thanks,

Michael Lugassy

- Original Message -
From: Dave Watts [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, May 30, 2001 3:39 PM
Subject: RE: CF_GOINGNUTS


  AFAIK CFHTTP on windows uses the wininet.dll, which has
  various 'issues' (MS speak for 'bugs').

 This is no longer the case, since CF 4.5.

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


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

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



RE: Silly Validation Question...

2001-05-30 Thread Dan G. Switzer, II

Brandon,

Check out qForms:
http://www.pengoworks.com/qForms/

It has all sorts of really easy to use validation methods. For example, to
make sure they select a state, you could just do:

obj.fieldName.validateState();

or to simply check that the value was not blank:
obj.fieldName.validateNotEmpty();

or you could expand the above and provide a custom error message:
obj.fieldName.validateNotEmpty(You must select a state from the drop down
list.);

That's it! This is just the tip of the iceberg as well, it's very, very
flexible and very easy to use.

-Dan

 -Original Message-
 From: Brandon Wood [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, May 29, 2001 5:13 PM
 To: CF-Talk
 Subject: Silly Validation Question...


 Hey,

 Does anyone have a good script or method of making a select box contain a
 value other than ?

 I am working on a state drop-down in which the first selection is Pick
 State with a value of .

 What I want to happen is for a javascript screen to pop up (or something
 like that--you know the usual CFFORM javascript validation) if a
 user tries
 to submit the form without choosing a state that has a value.  I
 have seenm
 this used many times and even with CFSELECT form fields, but I am
 having the
 worst time trying to implement this.

 I want to populate the CFSELECT with a query from a State_Table but do not
 want to store a state with a value of  as not to populate a state field
 with NULL answer.

 Is there an OnError or someother Javanscript function that could make sure
 that a value other than  was chosen and that the error message could be
 configurable.  I know that this is so CF 101, but I have never had to do
 this and am pulling my hair out in anger.

 Thanks a ton,
 BW



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

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



CFHTTP??

2001-05-30 Thread Alii Design

How do I display a specific area of a CFHTTP request if I know where I want
the beginning and end to be?

Rich


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

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



RE: CF5 review in eWEEK

2001-05-30 Thread Arden Weiss

Regarding:

 Is it allaire's responsibility to make sure *you're* up to speed?

In a nutshell -- Yes -- not from a technical knowledge point of view of 
knowing how to use their product, but defintely from a product availability 
and the business reasons why, I as a customer/developer/client should buy 
their upgrade -- unless, of course, Macromedia is not interested in 
increasing the number of upgrades they sell.  They haven't said anything 
directly to me or my clients as registered users about upgrading and the 
business reasons why? My client's as a registered user don't even know it 
exists and won't unless I tell them).

What is Macromedia's viewpoint on the business reasons (not techie 
reasons) that a firm should upgrade to 5.0 -- can anyone point to a source 
on their web site that addresses this issue (here I go hunting instead of 
them providing).

Note: As a comparision, I got an annoucement from Adobe about their new 
Actobat 5.0 product which I promptly went out and bought, because they also 
gave me a few business reasons why to upgrade. Maybe that is one reason why 
Adobe's stock is rising and Macromedia's isn't...

 ^
/ \__
   (@\___
  /  O
 /(_/
/_/
Whoof...
410-757-3487

-Original Message-
From:   Dylan Bromby [SMTP:[EMAIL PROTECTED]]
Sent:   Wednesday, May 30, 2001 9:49 AM
To: CF-Talk
Subject:RE: CF5 review in eWEEK

as far as being *proactive*, you could have signed up for the CF5.0 beta
test and learned all about it for months before its release. is it 
allaire's
responsibility to make sure *you're* up to speed? i can't imagine what my
business would be like if i waited for others to educate me about
technology.


-Original Message-
From: Arden Weiss [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 30, 2001 6:26 AM
To: CF-Talk
Subject: RE: CF5 review in eWEEK


Sorry you missed my point -- I and my clients buy products from a vendor
(Allaire/Macromedia) and they choose not to keep the paying customer
informed in a proactive manner -- instead they wait for the
customer/client/developer to go to their events/websites to get information
-- is that how you as a developer behave with your customers?

Same with the thread about certification CF4.5 vs 5.0 (recent ongoing
thread) -- regarding the real truth about whether CF4.5 certifcation
transfers to 5.0 and other related issues -- some think so, some do not --
which is it -- guess who could/should set the record straight in a
proactive manner...

CFX_OFF_SOAPBOX

 ^
/ \__
   (@\___
  /  O
 /(_/
/_/
Whoof...
410-757-3487

-Original Message-
From:   Raymond Camden [SMTP:[EMAIL PROTECTED]]
Sent:   Wednesday, May 30, 2001 8:27 AM
To: CF-Talk
Subject:RE: CF5 review in eWEEK

 Sad that this kind of insight is not available direcly from
 Allaire/Macromedia.

Eh? There is nothing in this article that is not available on either the
web
site, or in the streaming video announcements from last years DevConf (err,
which is ALSO on the web site).

===
Raymond Camden, Principal Spectra Compliance Engineer for Macromedia

Email   : [EMAIL PROTECTED]
ICQ UIN : 3679482

My ally is the Force, and a powerful ally it is. - Yoda
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Re: COOKIE expiration :((

2001-05-30 Thread Michael Lugassy

Thanks for answering, here's the code:

cfquery name=getAUTH datasource=im dbtype=ODBC
 SELECT userlastvisited FROM users WHERE username='#form.username#' AND
userPASSWORD='#form.userpassword#'/cfquery
cfif getAUTH.recordcount eq 1
cfcookie name=lastvisited value=#getAUTH.userlastvisited# expires=14

I didn't quite understand what you meant on the cookies/pages idea but I
also tried
to relocate right after setting the cookie to:
scriptlocation.href='/download/vamp.html'/script
and from that page, automaticlly back to:
scriptlocation.href='/sectionthatneedscookie/index.cfm'/script
just for checking, and still - it didn't work.

Thanks alot for trying thou, got any more tips??

Michael.




- Original Message -
From: Dylan Bromby [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, May 30, 2001 3:37 PM
Subject: RE: COOKIE expiration :((


 post the code.

 otherwise - and you may already know this:

 remember...if you load a page with CFCOOKIE (or write a cookie any other
 way) then quit the browser, the cookie *is not* set. you need to load a
 subsequent page.

 for example, consider the path:

 page1.cfm --- page2.cfm --- page3.cfm

 assume: you login on page 1. page 2 uses CFCOOKIE to write to the client.
 page 3 does something else.

 if you don't go to page 3, the cookie won't be set since the CFCOOKIE code
 is in page 2. this is also why you can' access the cookie object from the
 same file that sets it. this isn't a limit of CF, it's how cookies work.

 so if you quit the browser right after the file that contains CFCOOKIE,
 that's why it's not persisting.

 -Original Message-
 From: Michael Lugassy [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, May 30, 2001 7:10 AM
 To: CF-Talk
 Subject: Re: COOKIE expiration :((


 yea, I was aware of that.
 and I took all of the cflocations out, but still.
 the cookie terminates after I close the browser. :((

 Thanks,
 [EMAIL PROTECTED]

 - Original Message -
 From: JoshMEagle [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Wednesday, May 30, 2001 2:23 PM
 Subject: RE: COOKIE expiration :((


  I don't suppose you're using cflocation anywhere in your application?
I
  heard that cflocation can cause cookie problems.
  If you are, try scriptdocument.location.href=yourlink.cfm;/script
  instead.
 
  Just an idea.
 
  Joshua Miller
  Web Development
  Eagle Technologies Group
  Technology Solutions for the Next Generation
  www.eagletgi.com
  [EMAIL PROTECTED]
 
  -Original Message-
  From: Bryan LaPlante [mailto:[EMAIL PROTECTED]]
  Sent: Wednesday, May 30, 2001 3:35 AM
  To: CF-Talk
  Subject: Re: COOKIE expiration :((
 
 
  You may already be doing this but the value should be EXPIRES=NEVER
not
  timeout
 
  Bryan
 
  - Original Message -
  From: Michael Lugassy [EMAIL PROTECTED]
  To: CF-Talk [EMAIL PROTECTED]
  Sent: Wednesday, May 30, 2001 3:27 AM
  Subject: COOKIE expiration :((
 
 
   I'm getting really frustrated from this CFCOOKIE thing.
   Apparently, after I assign the cookie with Timeout=Never the cookie
   is deleted and terminated every time the user closes the browser.
   I tried to change Timeout to 14 days, but it didn't help.
   Closing the browser terminates the cookie.
  
   Is there a diffrent way to assign cookies?
  
   PLEASE HELP!!!
  
   -=Michael.
  
  
  
 

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

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



Re: CFHTTP??

2001-05-30 Thread Michael Lugassy

I use a great custom tag that is called getInsideString.
you can specify TEXT to search for (in u'r case: cfhttp.filecontent) and
START, POS
to look for and it will create a new VARNAME that hold anything that is in
between.
ONE OF THE BEST TAGS IVE SEEN!!!

If you can't find it in the gallery, let me know.

Thanks,

Michael Lugassy
IT/WEB Specialist
Interactive Music Ltd.
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: CFHTTP??

2001-05-30 Thread Kelly Matthews

It can be tricky but Find, Mid, ReFind etc... are functions you should use
to find the start and end point.

-Original Message-
From: Alii Design [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 30, 2001 10:23 AM
To: CF-Talk
Subject: CFHTTP??


How do I display a specific area of a CFHTTP request if I know where I want
the beginning and end to be?

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

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



RE: CFHTTP??

2001-05-30 Thread Kelly Matthews

Here is a good example this get's a dilbert comic out of a CFHTTP string:
CFHTTP URL=http://www.unitedmedia.com/comics/dilbert/; METHOD=GET
RESOLVEURL=Yes
cfset index =
Find(http://www.unitedmedia.com/comics/dilbert/archive/images/dilbert,CFHT
TP.FileContent)
cfset MyURL = Right(CFHTTP.FileContent,(len(CFHTTP.FileContent)-index)+1)
cfset index = Find(,Variables.MyURL)
cfset MyURL = Left(MyURL,index-2)


-Original Message-
From: Alii Design [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 30, 2001 10:23 AM
To: CF-Talk
Subject: CFHTTP??


How do I display a specific area of a CFHTTP request if I know where I want
the beginning and end to be?

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

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



RE: CFHTTP??

2001-05-30 Thread Dylan Bromby

you can use Find() and Mid() to extract specific code.

assume text.txt contains the string this is my dog and he likes to eat
cats.

!- * SNIPPET * -
CFHTTP URL=text.txt METHOD=GET

CFSET string = #CFHTTP.FileContent#

CFSET start = #Find(eat, string)# + 4
CFSET end = #Find(cats, string, start)# - #start#
CFSET substring = #Mid(string, start, end)#

CFOUTPUT#substring#/CFOUTPUT
!- * /SNIPPET * -

that will extract cats from the string.

you might want to read up on Find(), FindNoCase(), and Mid().

-Original Message-
From: Alii Design [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 30, 2001 7:23 AM
To: CF-Talk
Subject: CFHTTP??


How do I display a specific area of a CFHTTP request if I know where I want
the beginning and end to be?

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

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



How do I parse strings?

2001-05-30 Thread Bill Poff

Hello fellow CFers,

I'm trying to process a textarea variable and break it up into lines of
aprox 70-80 characters in length for transmission as a text formatted email
message.

Can someone help me with the code to parse the variable into lines so that I
can insert a #CHR(13)##CHR(10)# at the end of every line. The challenge is
to break between words.

Thanks.

--Bill


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

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



RE: turning off automatic carriage-return insertion in CF Studio

2001-05-30 Thread Will Swain

Hi Jason,

Are you talking about word wrap? If so, try options/word wrap, or look for
the word wrap icon to the left of the coding area (or whatever the technical
term is!!!)

Cheers

Will

-Original Message-
From: Jason Blum [mailto:[EMAIL PROTECTED]]
Sent: 30 May 2001 14:52
To: CF-Talk
Subject: turning off automatic carriage-return insertion in CF Studio



Greetings!

Anyone happen to know how to turn off CF Studio's automatic insertion of
carriage returns throughout my code every time I load a template?  I thought
perhaps it was the Code Sweeper feature, but I have this disabled.  I am a
little mystified by why anyone would ever even want their code automatically
stretched in the first place?!?!

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

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



RE: Referencing an array item

2001-05-30 Thread Christopher Olive, CIO

yup.

chris olive, cio
cresco technologies
[EMAIL PROTECTED]
http://www.crescotech.com



-Original Message-
From: Steve Vosloo [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 30, 2001 4:04 AM
To: CF-Talk
Subject: RE: Referencing an array item


So, to access a element [2][1] in the 3rd array I would have:

Application.SM[3][2][1]

?



 -Original Message-
 From: Christopher Olive, CIO [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, May 29, 2001 5:49 PM
 To: CF-Talk
 Subject: RE: Referencing an array item


 well, you collapse the three arrays into an uber array, called SM.  so
 your original statement might be..

 CFSET Application.SM = ArrayNew()
 cfset Application.SM[1] = SM1
 cfset Application.SM[2] = SM2
 cfset Application.SM[3] = SM3

 then use your number as an index into your outer array.

 chris olive, cio
 cresco technologies
 [EMAIL PROTECTED]
 http://www.crescotech.com



 -Original Message-
 From: Steve Vosloo [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, May 29, 2001 2:21 AM
 To: CF-Talk
 Subject: RE: Referencing an array item


 But I have 3 arrays, so it will really need to look like:

 Application.SM1[n][element]
 Application.SM2[n][element]
 Application.SM3[n][element]

 I can't see how else to work around this.



  -Original Message-
  From: Christopher Olive, CIO [mailto:[EMAIL PROTECTED]]
  Sent: Monday, May 28, 2001 8:31 PM
  To: CF-Talk
  Subject: RE: Referencing an array item
 
 
  ray has an excellent point.  however, why not exploit the nature
  of arrays?
  if you make Application.Sm an array with three elements, each one
  the arrays
  sm1..3, then you can reference an element in SM(n) by
  Application.SM[n][element].  you don't have to futz with string
 evaluation
  at all.
 
  chris olive, cio
  cresco technologies
  [EMAIL PROTECTED]
  http://www.crescotech.com
 
 
 
  -Original Message-
  From: Steve Vosloo [mailto:[EMAIL PROTECTED]]
  Sent: Monday, May 28, 2001 8:41 AM
  To: CF-Talk
  Subject: Referencing an array item
 
 
  I have 3 arrays, which are assigned to the application scope:
 
  cfset Application.SM1 = SM1
  cfset Application.SM2 = SM2
  cfset Application.SM3 = SM3
 
  My custom tag receives a number (1,2 or 3), and with that I
 reference the
  correct array. I need to dynamically use this number to reference the
  correct array, e.g.
 
  #ArrayLen(application.SM  attributes.Num)#
 
  (The above code does not work.) Any help would be much
  appreciated!! Thanks
  in advance.
 
  Steve
 
 
  Development Manager
  Vardus Internet Solutions (SA)
 
  Tel: (+27) 21 670 9880
  Fax: (+27) 21 674 4549
 
  Email: [EMAIL PROTECTED]
  Website: www.vardus.com
 

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

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



Re: Community Manager Introduction

2001-05-30 Thread tom muck

Hi Matt:

Great to have you here!

tom

Matt Brown [EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]...
 Hi. I wanted to take a second to introduce myself or re-introduce myself




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

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



Re: COOKIE expiration :((

2001-05-30 Thread Tony Schreiber

EXPIRES=Never produces exactly the behavoir you described. THe cookie
persists only as long as the browser is open. To get a cookie to last 14
days, you have to do EXPIRES=14.

 I'm getting really frustrated from this CFCOOKIE thing.
 Apparently, after I assign the cookie with Timeout=Never the cookie
 is deleted and terminated every time the user closes the browser.
 I tried to change Timeout to 14 days, but it didn't help.
 Closing the browser terminates the cookie.
 
 Is there a diffrent way to assign cookies?
 
 PLEASE HELP!!!
 
 -=Michael.
 
 

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

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



RE: CF5 review in eWEEK

2001-05-30 Thread Dylan Bromby

well i guess that's the difference.

i know my clients' business very well, whereas macromedia/allaire does not.
so they cannot tell me what is best from a business perspective for my
clients. i apply what i construe to be the best solution(s) for their
needs - from my own experience  research, whether it's CF, JSP, etc.

and btw - after i signed up for the beta program i received constant emails
about availability of beta versions and the release candidates. and from
participating in the forums at beta.allaire.com i learned quite a bit about
when to expect the release of CF5.

whereas macromedia/allaire can probably communicate more efficiently, it's
also (in my opinion) good business for the vendor/consultant/whatever to be
*proactive* and learn from what they're told by companies *as well* as what
they seek on their own.



-Original Message-
From: Arden Weiss [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 30, 2001 7:29 AM
To: CF-Talk
Subject: RE: CF5 review in eWEEK


Regarding:

 Is it allaire's responsibility to make sure *you're* up to speed?

In a nutshell -- Yes -- not from a technical knowledge point of view of
knowing how to use their product, but defintely from a product availability
and the business reasons why, I as a customer/developer/client should buy
their upgrade -- unless, of course, Macromedia is not interested in
increasing the number of upgrades they sell.  They haven't said anything
directly to me or my clients as registered users about upgrading and the
business reasons why? My client's as a registered user don't even know it
exists and won't unless I tell them).

What is Macromedia's viewpoint on the business reasons (not techie
reasons) that a firm should upgrade to 5.0 -- can anyone point to a source
on their web site that addresses this issue (here I go hunting instead of
them providing).

Note: As a comparision, I got an annoucement from Adobe about their new
Actobat 5.0 product which I promptly went out and bought, because they also
gave me a few business reasons why to upgrade. Maybe that is one reason why
Adobe's stock is rising and Macromedia's isn't...

 ^
/ \__
   (@\___
  /  O
 /(_/
/_/
Whoof...
410-757-3487

-Original Message-
From:   Dylan Bromby [SMTP:[EMAIL PROTECTED]]
Sent:   Wednesday, May 30, 2001 9:49 AM
To: CF-Talk
Subject:RE: CF5 review in eWEEK

as far as being *proactive*, you could have signed up for the CF5.0 beta
test and learned all about it for months before its release. is it
allaire's
responsibility to make sure *you're* up to speed? i can't imagine what my
business would be like if i waited for others to educate me about
technology.


-Original Message-
From: Arden Weiss [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 30, 2001 6:26 AM
To: CF-Talk
Subject: RE: CF5 review in eWEEK


Sorry you missed my point -- I and my clients buy products from a vendor
(Allaire/Macromedia) and they choose not to keep the paying customer
informed in a proactive manner -- instead they wait for the
customer/client/developer to go to their events/websites to get information
-- is that how you as a developer behave with your customers?

Same with the thread about certification CF4.5 vs 5.0 (recent ongoing
thread) -- regarding the real truth about whether CF4.5 certifcation
transfers to 5.0 and other related issues -- some think so, some do not --
which is it -- guess who could/should set the record straight in a
proactive manner...

CFX_OFF_SOAPBOX

 ^
/ \__
   (@\___
  /  O
 /(_/
/_/
Whoof...
410-757-3487

-Original Message-
From:   Raymond Camden [SMTP:[EMAIL PROTECTED]]
Sent:   Wednesday, May 30, 2001 8:27 AM
To: CF-Talk
Subject:RE: CF5 review in eWEEK

 Sad that this kind of insight is not available direcly from
 Allaire/Macromedia.

Eh? There is nothing in this article that is not available on either the
web
site, or in the streaming video announcements from last years DevConf (err,
which is ALSO on the web site).

===
Raymond Camden, Principal Spectra Compliance Engineer for Macromedia

Email   : [EMAIL PROTECTED]
ICQ UIN : 3679482

My ally is the Force, and a powerful ally it is. - Yoda
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: COOKIE expiration :((

2001-05-30 Thread Dylan Bromby

see if it works by linking to download/vamp.html and then linking to
sectionthatneedscookie/index.cfm instead of using location.href. e.g. click
between pages instead of redirecting. what happens then?

-Original Message-
From: Michael Lugassy [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 30, 2001 8:35 AM
To: CF-Talk
Subject: Re: COOKIE expiration :((


Thanks for answering, here's the code:

cfquery name=getAUTH datasource=im dbtype=ODBC
 SELECT userlastvisited FROM users WHERE username='#form.username#' AND
userPASSWORD='#form.userpassword#'/cfquery
cfif getAUTH.recordcount eq 1
cfcookie name=lastvisited value=#getAUTH.userlastvisited# expires=14

I didn't quite understand what you meant on the cookies/pages idea but I
also tried
to relocate right after setting the cookie to:
scriptlocation.href='/download/vamp.html'/script
and from that page, automaticlly back to:
scriptlocation.href='/sectionthatneedscookie/index.cfm'/script
just for checking, and still - it didn't work.

Thanks alot for trying thou, got any more tips??

Michael.




- Original Message -
From: Dylan Bromby [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, May 30, 2001 3:37 PM
Subject: RE: COOKIE expiration :((


 post the code.

 otherwise - and you may already know this:

 remember...if you load a page with CFCOOKIE (or write a cookie any other
 way) then quit the browser, the cookie *is not* set. you need to load a
 subsequent page.

 for example, consider the path:

 page1.cfm --- page2.cfm --- page3.cfm

 assume: you login on page 1. page 2 uses CFCOOKIE to write to the client.
 page 3 does something else.

 if you don't go to page 3, the cookie won't be set since the CFCOOKIE code
 is in page 2. this is also why you can' access the cookie object from the
 same file that sets it. this isn't a limit of CF, it's how cookies work.

 so if you quit the browser right after the file that contains CFCOOKIE,
 that's why it's not persisting.

 -Original Message-
 From: Michael Lugassy [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, May 30, 2001 7:10 AM
 To: CF-Talk
 Subject: Re: COOKIE expiration :((


 yea, I was aware of that.
 and I took all of the cflocations out, but still.
 the cookie terminates after I close the browser. :((

 Thanks,
 [EMAIL PROTECTED]

 - Original Message -
 From: JoshMEagle [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Wednesday, May 30, 2001 2:23 PM
 Subject: RE: COOKIE expiration :((


  I don't suppose you're using cflocation anywhere in your application?
I
  heard that cflocation can cause cookie problems.
  If you are, try scriptdocument.location.href=yourlink.cfm;/script
  instead.
 
  Just an idea.
 
  Joshua Miller
  Web Development
  Eagle Technologies Group
  Technology Solutions for the Next Generation
  www.eagletgi.com
  [EMAIL PROTECTED]
 
  -Original Message-
  From: Bryan LaPlante [mailto:[EMAIL PROTECTED]]
  Sent: Wednesday, May 30, 2001 3:35 AM
  To: CF-Talk
  Subject: Re: COOKIE expiration :((
 
 
  You may already be doing this but the value should be EXPIRES=NEVER
not
  timeout
 
  Bryan
 
  - Original Message -
  From: Michael Lugassy [EMAIL PROTECTED]
  To: CF-Talk [EMAIL PROTECTED]
  Sent: Wednesday, May 30, 2001 3:27 AM
  Subject: COOKIE expiration :((
 
 
   I'm getting really frustrated from this CFCOOKIE thing.
   Apparently, after I assign the cookie with Timeout=Never the cookie
   is deleted and terminated every time the user closes the browser.
   I tried to change Timeout to 14 days, but it didn't help.
   Closing the browser terminates the cookie.
  
   Is there a diffrent way to assign cookies?
  
   PLEASE HELP!!!
  
   -=Michael.
  
  
  
 

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

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



RE: CF5 review in eWEEK

2001-05-30 Thread Jeffry Houser


At 10:29 AM 05/30/2001 -0400, you wrote:
Regarding:

  Is it allaire's responsibility to make sure *you're* up to speed?

In a nutshell -- Yes -- not from a technical knowledge point of view of
knowing how to use their product, but defintely from a product availability
and the business reasons why, I as a customer/developer/client should buy
their upgrade -- unless, of course, Macromedia is not interested in
increasing the number of upgrades they sell.  They haven't said anything
directly to me or my clients as registered users about upgrading and the
business reasons why? My client's as a registered user don't even know it
exists and won't unless I tell them).

   I know a evaluation is up on the web site, but it can't be purchased 
from the Macromedia web-site, and to my knowledge is not available for 
purchase anywhere.  (correct me if I'm wrong).  Perhaps they'll send out an 
e-mail to registered users after the product is available.
   I know that I would routinely get stuff from Allaire, as a registered 
user of ColdFusion Studio.  I don't think I've gotten anything since merger.



Jeffry Houser | mailto:[EMAIL PROTECTED]
AIM: Reboog711  | ICQ: 5246969 | Phone: 860-229-2781
--
Instant ColdFusion 5.0  | ISBN: 0-07-213238-8
Due out June 2001
--
DotComIt, LLC
database driven web data using ColdFusion, Lotus Notes/Domino
--
Half of the Alternative Folk Duo called Far Cry Fly
http://www.farcryfly.com | http://www.mp3.com/FarCryFly
--
You sass that hoopy Douglas Adams? Now there's a frood who
knew where his towel was.


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

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



Insert form

2001-05-30 Thread Shally


Hi Every one,
I have an Insert form where there is an option of
lists to be selected by the user.
select name=Send_Time size=1
OPTION VALUE=[Not Answered]/OPTION
option value=01000100/option
option value=02000200/option
option value=03000300/option
option value=04000400/option
/select

I am able to insert all the other values in the
database with the help of Cfinsert tag but not the
above selection.
Database used is Access and the datatype of the field
is Date/time.I even tried with Text datatype but
it didn't work.

Please help.

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

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



Re: How do I parse strings?

2001-05-30 Thread Dave

Well, you could cfloop from 70 to infinity-1 and use Mid() to check for a
space;
or you could use getToken() using space as the delim and figuring average
word length as 5;
or you could wait for better answers from the cleverer folks :)



- Original Message -
From: Bill Poff [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, May 30, 2001 10:45 AM
Subject: How do I parse strings?


 Hello fellow CFers,

 I'm trying to process a textarea variable and break it up into lines of
 aprox 70-80 characters in length for transmission as a text formatted
email
 message.

 Can someone help me with the code to parse the variable into lines so that
I
 can insert a #CHR(13)##CHR(10)# at the end of every line. The challenge is
 to break between words.

 Thanks.

 --Bill



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

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



AW: JS-Frame-question

2001-05-30 Thread cf-talk

Hi, I solved my problem.
Because of a lot of nested cfm-templates
I wasn't paying attention of a base=_top in my header
in B.
I deleted it and now it runs fine.

Best Uwe

-Ursprüngliche Nachricht-
Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Gesendet: Mittwoch, 30. Mai 2001 09:08
An: CF-Talk
Betreff: OT: JS-Frame-question



Hi, I have two frames A and B.

A is the navigation-frame and B the content-frame.
I am having a frameset like:

frameset rows=25%,*
frame src=A.cfm name=oben id=oben frameborder=No scrolling=no
marginwidth=0 marginheight=0
frame src=B.cfm name=unten id=unten frameborder=No
scrolling=Auto marginwidth=0 marginheight=0
/frameset

When I call B.cfm directly all the included JS runs fine.
But it doesn't if I it run it in the belonging frameset.

What could I do to prevent this ?

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

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



Re: How do I parse strings?

2001-05-30 Thread Don Vawter

If you consider the variable as a list delimited with spaces you can process
it.
Here is code that I use:
cfscript
st=now I lay me down to sleep the Lord I pray my soul to keep If I should
die before I wake the Lord I pray my soul to take;
maxl=100;
ar=listtoarray(st, );
outar=arraynew(1);
outst=;
for(i=1;i LE arraylen(ar);i= i +1){
 if(len(outst)+len(ar[i]) GT maxl){
  temp=arrayappend(outar,outst);
  outst=;
 }
 outst=ltrim(outst ar[i]);
}
if(len(outst)){
 temp=arrayappend(outar,outst);
}
 /cfscript
- Original Message -
From: Bill Poff [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, May 30, 2001 8:45 AM
Subject: How do I parse strings?


 Hello fellow CFers,

 I'm trying to process a textarea variable and break it up into lines of
 aprox 70-80 characters in length for transmission as a text formatted
email
 message.

 Can someone help me with the code to parse the variable into lines so that
I
 can insert a #CHR(13)##CHR(10)# at the end of every line. The challenge is
 to break between words.

 Thanks.

 --Bill



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

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



RE: How do I parse strings?

2001-05-30 Thread Jason Lees (National Express)


hi Bill,

This should do what you want more or less, it uses CF Script, Except this
will also check for the Existing CRLF characters and bearck naturally.  It
will search backwards for the last space before a word rather than search
forward.

Amend Linelength to match requirements.  The Output is in TmpActual which is
an Array.

iLine is the Line count Amend it from 2 to 1,

Theres also probably a better way to do this, but it works,


cfscript
iLine=2;
LineLength=64
TmpActual=Arraynew(1);

MsgOperator=Replace(Form.Message,Chr(10),},ALL);
MsgOperator=Replace(MsgOperator,Chr(13),},ALL);
while (len(MsgOperator) gt 0){
TmpNote=;
if (len(MsgOperator) gt LineLength) 
TmpNote=Mid(MsgOperator,1,LineLength);
else
TmpNote=Mid(MsgOperator,1,len(MsgOperator));

pos=Find(}},TmpNote,1)-1;
if (pos lte 0){
pos=Len(TmpNote);
if (pos eq LineLength){
for (pos;pos gt 0 and Mid(TmpNote,pos,1) neq
 ;pos=pos-1);
if (pos eq 0)
pos=Len(TmpNote);
}
}

Miss_Line=FALSE;
if (Find(}},TmpNote,1) eq 1){
pos=2;
Miss_Line=TRUE;
}

if (not Miss_Line){
TmpActual[iline]=
Ljustify(Mid(TmpNote,1,pos),LineLength);
iLine=iLine+1;
}

if (Find(}},TmpNote,1) gte 0)
pos=pos+2;
else
pos=pos+1;
MsgOperator=Mid(MsgOperator,pos-1,len(MsgOperator));
}
iLine=iLine-1;
/cfscript


HTH

Jason Lees 
National Express
Email : [EMAIL PROTECTED]


-Original Message-
From: Bill Poff [mailto:[EMAIL PROTECTED]]
Sent: 30 May 2001 15:45
To: CF-Talk
Subject: How do I parse strings?


Hello fellow CFers,

I'm trying to process a textarea variable and break it up into lines of
aprox 70-80 characters in length for transmission as a text formatted email
message.

Can someone help me with the code to parse the variable into lines so that I
can insert a #CHR(13)##CHR(10)# at the end of every line. The challenge is
to break between words.

Thanks.

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

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



Unstable MySQL on Windows 2000

2001-05-30 Thread robrusher

Has anyone successfully gotten MySQL, ColdFusion and W2K to work together?

I am getting flaky at best connections to MySQL using the MyODBC driver. I
works for a little bit then I get nothing but datasource errors. Like:
ODBC Error Code = ()


Unknown connection error for the data source, 'INSPIR.'


Data Source = INSPIR


The error occurred while processing an element with a general identifier of
(CFQUERY), occupying document position (1:1) to (1:66) in the template file
C:\INETPUB\WWWROOT\INSPIR\COMPANY\QRY\QRY_LIST.CFM.


Date/Time: 05/30/01 09:30:31
Browser: Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0)
Remote Address: 127.0.0.1
HTTP Referer: http://127.0.0.1/inspir/company/snpr/index.cfm



Regards,

Rob Rusher

Spectra Architect, Certified ColdFusion Instructor + Developer, Certified
Java Programmer

(303) 885-7044 Cell
(970) 472-1775  Fax
[EMAIL PROTECTED]

[EMAIL PROTECTED]
http://www.flarenetworks.com


plan, build and integrate interactive applications and e-business services
to enhance knowledge sharing, e-commerce and business communications
initiatives




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

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



Re:RE: turning off automatic carriage-return insertion in CF

2001-05-30 Thread Jason Blum

Hey Will,

No, it's not word wrap.  It's if I save a template like:

html
head

and then open it up later, I get:

html

head

and sometimes with two blank lines inserted.  Really annoying.

-J



Reply Separator
Subject:RE: turning off automatic carriage-return insertion in CF St
Author: [EMAIL PROTECTED]
Date:   5/30/01 3:45 PM

Hi Jason,

Are you talking about word wrap? If so, try options/word wrap, or look for
the word wrap icon to the left of the coding area (or whatever the technical
term is!!!)

Cheers

Will

-Original Message-
From: Jason Blum [mailto:[EMAIL PROTECTED]]
Sent: 30 May 2001 14:52
To: CF-Talk
Subject: turning off automatic carriage-return insertion in CF Studio



Greetings!

Anyone happen to know how to turn off CF Studio's automatic insertion of
carriage returns throughout my code every time I load a template?  I thought
perhaps it was the Code Sweeper feature, but I have this disabled.  I am a
little mystified by why anyone would ever even want their code automatically
stretched in the first place?!?!

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

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



RE: COOKIE expiration :((

2001-05-30 Thread Mohammad Choudhury

You can consider setting up the cookie in a process
page and redirect with javascript instead of
cflocation that will allow the cookie to be set.

M.
--- Dylan Bromby [EMAIL PROTECTED] wrote:
 post the code.
 
 otherwise - and you may already know this:
 
 remember...if you load a page with CFCOOKIE (or
 write a cookie any other
 way) then quit the browser, the cookie *is not* set.
 you need to load a
 subsequent page.
 
 for example, consider the path:
 
 page1.cfm --- page2.cfm --- page3.cfm
 
 assume: you login on page 1. page 2 uses CFCOOKIE to
 write to the client.
 page 3 does something else.
 
 if you don't go to page 3, the cookie won't be set
 since the CFCOOKIE code
 is in page 2. this is also why you can' access the
 cookie object from the
 same file that sets it. this isn't a limit of CF,
 it's how cookies work.
 
 so if you quit the browser right after the file that
 contains CFCOOKIE,
 that's why it's not persisting.
 
 -Original Message-
 From: Michael Lugassy [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, May 30, 2001 7:10 AM
 To: CF-Talk
 Subject: Re: COOKIE expiration :((
 
 
 yea, I was aware of that.
 and I took all of the cflocations out, but still.
 the cookie terminates after I close the browser. :((
 
 Thanks,
 [EMAIL PROTECTED]
 
 - Original Message -
 From: JoshMEagle [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Wednesday, May 30, 2001 2:23 PM
 Subject: RE: COOKIE expiration :((
 
 
  I don't suppose you're using cflocation anywhere
 in your application? I
  heard that cflocation can cause cookie problems.
  If you are, try

scriptdocument.location.href=yourlink.cfm;/script
  instead.
 
  Just an idea.
 
  Joshua Miller
  Web Development
  Eagle Technologies Group
  Technology Solutions for the Next Generation
  www.eagletgi.com
  [EMAIL PROTECTED]
 
  -Original Message-
  From: Bryan LaPlante
 [mailto:[EMAIL PROTECTED]]
  Sent: Wednesday, May 30, 2001 3:35 AM
  To: CF-Talk
  Subject: Re: COOKIE expiration :((
 
 
  You may already be doing this but the value should
 be EXPIRES=NEVER not
  timeout
 
  Bryan
 
  - Original Message -
  From: Michael Lugassy [EMAIL PROTECTED]
  To: CF-Talk [EMAIL PROTECTED]
  Sent: Wednesday, May 30, 2001 3:27 AM
  Subject: COOKIE expiration :((
 
 
   I'm getting really frustrated from this CFCOOKIE
 thing.
   Apparently, after I assign the cookie with
 Timeout=Never the cookie
   is deleted and terminated every time the user
 closes the browser.
   I tried to change Timeout to 14 days, but it
 didn't help.
   Closing the browser terminates the cookie.
  
   Is there a diffrent way to assign cookies?
  
   PLEASE HELP!!!
  
   -=Michael.
  
  
  
 

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

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



RE: Brainbench certification

2001-05-30 Thread Andrew Tyrone

My take on all of this certification business is this:

Fine if you are an ACP, better if you are and MCSE because many companies that use MS 
solutions like to require it of their consultants.

As far as CF certification goes, I am not certified yet, but I know too many people 
who are certified and still ask the same old questions that could be looked up in a 
heart-beat.  Code samples and links to previous work are by far the best things to 
judge a person's experience and competence by.  Also, requiring ungodly amounts of 
skills and skillsets is ridiculous.  How many companies list: ColdFusion, JavaScript, 
DHTML, C++, Java, Perl, PHP, ASP, SQL Server, Oracle, etc, the list goes on and on.

I'd worry about someone who comes to interview with me and says they know all of those 
things really well.  I truly think there are only a handful of people who don't eat or 
sleep that are experts in all of those things.  I would like someone with a more 
narrow skillset, say CF, JavaScript and SQL Server, maybe DHTML, and to know those 
skills INSIDE-OUT.  That to me would show that they are focused on mastering languages 
and applications.  There is nothing wrong with posting desired or skills that would 
be a plus or some knowledge a plus areas, but I just don't think it's realistic to 
required every single scripting language and database server.

-Andy

 -Original Message-
 From: Andy Ewings [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, May 30, 2001 9:21 AM
 To: CF-Talk
 Subject: RE: Brainbench certification
 
 
 Yeh I know that theyu don't have any involvement in certs - just the guy
 advised us to wait as if he knew something or had heard from someone at
 Macromedia along the grapevine.  Still what you're saying is music to my
 ears too!!!
 
 -Original Message-
 From: Alex Skinner - Digital Dreams [mailto:[EMAIL PROTECTED]]
 Sent: 30 May 2001 14:13
 To: CF-Talk
 Subject: RE: Brainbench certification
 
 
 Unipalm?
 
 Well I've been searching for the email and can't find it but I 
 think it was
 the email about the CF 5 launch. Im 100% sure though as I remember being
 quite pleased, I had a difficult enough time getting around to doing the
 previous cert. Unipalm have no involvement with Certs so I'd check with
 macromedia directly if I were you.
 
 Alex Skinner
 Macromedia Certified Trainer
 Digital Dreams
 020 82741988 / 07980 222768
 http://www.Digitaldreams.co.uk
 
 
 The information contained in this email is confidential and may also be
 legally
 privileged. Any views or opinions presented are solely those of the author
 and
 do not necessarily represent those of Digital Dreams unless otherwise
 stated.
 
 The information contained in the email is intended only for the stated
 addressee(s) and
 access to it by any other person is forbidden. If you are not an 
 addressee,
 you agree not to disclose, copy, circulate or in any other way use or rely
 on the
 information contained in this email. Such unauthorised use may be 
 unlawful.
 
 Digital Dreams has taken all reasonable precautions to ensure that no
 viruses are
 transmitted from Digital Dreams to any third party. Digital 
 Dreams accept no
 responsibility for any damage or loss resulting directly or indirectly
 from the use of this e-mail or its contents.
 
 If you have received this email in error, please inform us
 immediately at [EMAIL PROTECTED] and delete it and all copies
 from your
 system. Any opinion or advice to clients contained in this email are to be
 read subject to Digital Dreams standard terms and conditions of engagement
 a copy of which is available on request.
 
 
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On Behalf Of Andy Ewings
 Sent: 30 May 2001 13:08
 To: CF-Talk
 Subject: RE: Brainbench certification
 
 
 Really? - can you point me in the direction of this?  I got my info from
 UniPam - the CF distributors for the UK but if Macromedia are saying
 someting different...
 
 I'm assuming though that people who pass a CF 5 exam will have an 
 advantage
 over the people who passed 4.5 exams. i.e. the 4.5 'ers will have 
 to upgrade
 at some point?  If this is the case does anyone know of timescales?
 
 -Original Message-
 From: Alex Skinner - Digital Dreams [mailto:[EMAIL PROTECTED]]
 Sent: 30 May 2001 12:52
 To: CF-Talk
 Subject: RE: Brainbench certification
 
 
 we've heard that any certification we get now will expire as the newer
 versions of CF come out.
 
 
 Not the case all existing certs will be automatically upgraded to CF5
 according to a macromedia bulletin I received I can forward it to 
 you if you
 like
 
 
 Alex Skinner
 Macromedia Certified Trainer
 Digital Dreams
 020 82741988 / 07980 222768
 http://www.Digitaldreams.co.uk
 
 
 The 

RE: COOKIE expiration :((

2001-05-30 Thread Dave Watts

 EXPIRES=Never produces exactly the behavior you described. 
 THe cookie persists only as long as the browser is open.

That's incorrect. To get a cookie that persists only until the browser is
closed - a session cookie - you must omit the EXPIRES parameter entirely.
EXPIRES=NEVER sets a cookie to have an expiration date far in the future,
and returns an HTTP response header like this:

Set-Cookie: CTESTNEVER=1; expires=Sun, 27-Sep-2037

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

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

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



RE: how do i send an attachment?

2001-05-30 Thread S R

Yeah, I tried using that and I got this error:

MIMEATTACH

An invalid file name (C:\Documents and Settings\sxr\My 
Documents\Generator.doc) was specified in the MIMEATTACH attribute. Please 
verify that this file exists and that the Cold Fusion service has the 
privileges required to access it.

I set up a page with a input type=file name=myAttachment tag so that 
the user can browse for the file on their desktop, just like any other 
attachment option, like the way hotmail does it. That's why I was trying to 
go another route because this isn't working. This is how my form tag looks:

cfform action=corebank_requests_process_030107new.cfm method=post 
enctype=application/x-www-form-urlencoded


From: Mark Warrick [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Subject: RE: how do i send an attachment?
Date: Tue, 29 May 2001 18:43:59 -0700

Why not just use CFMAIL and use the mimeattach attribute?  For example:

cfmail
TO=
CC=
FROM=
SUBJECT=
MIMEATTACH=#uploadpath#\#serverfile#
 


Mark Warrick - Fusioneers.com
Email: [EMAIL PROTECTED]
Phone: 714-547-5386
http://www.fusioneers.com
http://www.warrick.net


  -Original Message-
  From: S R [mailto:[EMAIL PROTECTED]]
  Sent: Tuesday, May 29, 2001 3:43 PM
  To: CF-Talk
  Subject: how do i send an attachment?
 
 
  What is the best way to allow someone to send an attachment
  through a form?
  I've tried the new tag cfmailparam and I'm getting an error
  saying I have
  mispelled the tag. I'm using cf 4.5.2 so I should be able to use this 
tag.
 
  Thanks
 
  Sal
 

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

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



RE: CF5 review in eWEEK

2001-05-30 Thread Jones, Matt

Yeah, I bought my suv from Isuzu, and they don't call me to tell me the
improvements that they have made to the new model, when it is coming out, or
which mechanics I should take it to.  I guess that if they would be more
proactive in keeping me updated it would be better? 

Also, my college doesn't call me and tell me if they have any new degrees
that are being offered that might be more up to date than the degrees that I
have. 

Personally, I believe that Allaire/Macromedia exceed most vendors in
providing information and updates in an easily accessable area.  No they are
not perfect, No not every question is addressed.  But I am quite happy with
the combination of Allaire/Macromedia information and the developer
community for exchanging information.

-Original Message-
From: Arden Weiss [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 30, 2001 8:26 AM
To: CF-Talk
Subject: RE: CF5 review in eWEEK


Sorry you missed my point -- I and my clients buy products from a vendor 
(Allaire/Macromedia) and they choose not to keep the paying customer 
informed in a proactive manner -- instead they wait for the 
customer/client/developer to go to their events/websites to get information 
-- is that how you as a developer behave with your customers?

Same with the thread about certification CF4.5 vs 5.0 (recent ongoing 
thread) -- regarding the real truth about whether CF4.5 certifcation 
transfers to 5.0 and other related issues -- some think so, some do not -- 
which is it -- guess who could/should set the record straight in a 
proactive manner...

CFX_OFF_SOAPBOX

 ^
/ \__
   (@\___
  /  O
 /(_/
/_/
Whoof...
410-757-3487

-Original Message-
From:   Raymond Camden [SMTP:[EMAIL PROTECTED]]
Sent:   Wednesday, May 30, 2001 8:27 AM
To: CF-Talk
Subject:RE: CF5 review in eWEEK

 Sad that this kind of insight is not available direcly from
 Allaire/Macromedia.

Eh? There is nothing in this article that is not available on either the 
web
site, or in the streaming video announcements from last years DevConf (err,
which is ALSO on the web site).

===
Raymond Camden, Principal Spectra Compliance Engineer for Macromedia

Email   : [EMAIL PROTECTED]
ICQ UIN : 3679482

My ally is the Force, and a powerful ally it is. - Yoda
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: turning off automatic carriage-return insertion in CF Studio

2001-05-30 Thread Daniel Kemp

 Anyone happen to know how to turn off CF Studio's automatic
 insertion of carriage returns throughout my code every time I load a

Are you saving the files onto a UNIX system?  I've had this trouble
when saving to UNIX, be sure to check the settings in CF studio.
Either hit F8, or Options|Settings...

Then goto the File Settings from the menu on the left and check the
Format when saving radio buttons.

You can also have this problem when moving files from a Pc system to
UNIX.

Hope this may help.

Dan.



This message is intended only for the use of the person(s) (the intended 
recipient(s)) to whom it is addressed.

It may contain information which is privileged and confidential within the meaning of 
the applicable law. 
If you are not the intended recipient, please contact the sender as soon as possible.
The views expressed in this communication may not necessarily be the views held by 
Live Information Systems Limited.



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

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



Re: URL Decrypt and Encrypt

2001-05-30 Thread CFTalk

Gordon

I've had problems with data integrity using encrypt and decrypt.  I 
wrote a custom tag that builds on encrypt and decrypt to clean up the 
string and add a checksum.  I also wrote a short explanation of the 
short comings of encrypt and decrypt with examples at:

http://www.iology.com/products/downloads/cryptest.cfm

You can get the code there, too.

Jackson

Passing values in the URL and would like to hide the true values.

Can someone give me an example of using encrypt and decrypt and any
tips, problems with this method.

Thanks

Gordon



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

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



RE: turning off automatic carriage-return insertion in CF Studio

2001-05-30 Thread David Shadovitz

Or perhaps it's your File Settings.  Under Options | Settings | File Settings, 
you can specify the Format when saving to be either PC, Mac or UNIX.  If 
you've got it set to PC and you're saving to a UNIX machine you'll get the 
extra line.
-David

On Wednesday, May 30, 2001 7:46 AM, Will Swain [SMTP:[EMAIL PROTECTED]] 
wrote:
 Hi Jason,

 Are you talking about word wrap? If so, try options/word wrap, or look for
 the word wrap icon to the left of the coding area (or whatever the technical
 term is!!!)

 Cheers

 Will

 -Original Message-
 From: Jason Blum [mailto:[EMAIL PROTECTED]]
 Sent: 30 May 2001 14:52
 To: CF-Talk
 Subject: turning off automatic carriage-return insertion in CF Studio



 Greetings!

 Anyone happen to know how to turn off CF Studio's automatic insertion of
 carriage returns throughout my code every time I load a template?  I thought
 perhaps it was the Code Sweeper feature, but I have this disabled.  I am a
 little mystified by why anyone would ever even want their code automatically
 stretched in the first place?!?!

 -Jason

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

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



How do you to set allow zero length in access 2000 for memo field using sql

2001-05-30 Thread Mike

How do you to set allow zero length in access 2000 for memo field using sql
statement when adding column using alter table ?
Thanks
Mike

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

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



Easy way to Compare large text

2001-05-30 Thread Michael S. Kimmett

Howdy,

Ok, I need some suggestions on an easy way to compare large text fields from a DB 
table.  I was thinking about using the CF function Evaluate and sending the user a 
message saying that yes these strings are similar or no they are not.  Well, that is 
the simple way to do things.  Does anyone have an idea about other CF functions that 
might give me better results?  

Thanks in advance.

Michael


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

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



New CF Studio?

2001-05-30 Thread W Luke

Hi all,

Just wondering if anyone knows if and when the next CF Studio will be
released, or whether 4.5.2 is its' last? (might there be a powerful
amalgamation of UltraDev and Studio?)

Cheers

Will


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

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



Re: Writing Custom Functions

2001-05-30 Thread Avi Flax

Michael,

Maybe I'm reading this wrong, but I have to ask - does this mean that one 
can, with CF5, set the code of a UDF into a variable, and then execute that 
UDF just by calling that variable in function syntax, and it automatically 
gets evaluated and run?

Is that all the function keyword does - is create a variable for the function?

Does this mean that we could theoretically use any variable as a function?

Or am I missing something?

--
Avi Flax
Developer, Afternic.com
[EMAIL PROTECTED]
212-798-5484

Art is the lie that makes us realize truth. - Pablo Picasso

At 04:47 PM 5/24/2001 -0400, Michael Dinowitz wrote:
* Team Allaire *
The normal operation is to have your UDF either on the same page as you need
them or in a CFINCLUDE. If your especially evil then you can load them into
server or application variables in an initialization page and then use them
as server.stringlimit('this is my string', 5). Using them in server or
application vars might run into locking problems and I'm investigating this.


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

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



Re: How do I parse strings?

2001-05-30 Thread Bill Davidson

I would look at the list functions in Cold Fusion and use space as a
delimiter.

-Bill
www.brainbox.tv
- Original Message -
From: Bill Poff [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, May 30, 2001 10:45 AM
Subject: How do I parse strings?


 Hello fellow CFers,

 I'm trying to process a textarea variable and break it up into lines of
 aprox 70-80 characters in length for transmission as a text formatted
email
 message.

 Can someone help me with the code to parse the variable into lines so that
I
 can insert a #CHR(13)##CHR(10)# at the end of every line. The challenge is
 to break between words.

 Thanks.

 --Bill



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

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



RE: CFHTTP??

2001-05-30 Thread Alii Design

This tag is excellent and makes it so easy to do the CFHTTP parse without
using Find, Mid, ReFind etc...

Rich

-Original Message-
From: Michael Lugassy [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 30, 2001 11:36 AM
To: CF-Talk
Subject: Re: CFHTTP??


I use a great custom tag that is called getInsideString.
you can specify TEXT to search for (in u'r case: cfhttp.filecontent) and
START, POS
to look for and it will create a new VARNAME that hold anything that is in
between.
ONE OF THE BEST TAGS IVE SEEN!!!

If you can't find it in the gallery, let me know.

Thanks,

Michael Lugassy
IT/WEB Specialist
Interactive Music Ltd.
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



RE: RealAudio and ColdFusion

2001-05-30 Thread David Grabbe


Still stumped on this.  I tried using the 'FileExists()' method, but it
didn't detect the RealAudio stream.  Then I got onto the server console to
verify that the .rm file was actually there -- and it wasn't! but we were
indeed putting out a RealAudio stream.  How is it possible for a RealAudio
stream to be playing, and yet that .rm file doesn't exist anywhere on the
file system of the server?

The web server (IIS/CF) and RealServer are on the same machine, but the
RealPublisher is on a remote machine.  When the stream is started by the
RealPublisher, we have to specify the domain (where the web
server/RealServer is located), the RealAudio port (7070), and the stream
filename (as well as username/password to gain access to that server/port).
Yet when I check that server, the stream file is nowhere to be found.  Am I
out of my tree, or what??


Cheers,
David

-Original Message-
From: Steve Bernard [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 30, 2001 9:40 AM
To: CF-Talk
Subject: RE: RealAudio and ColdFusion


Try FileExists(), as suggested by another post. If the file exists on the
box it can be queried. Make sure to check the docs for usage.


Steve

-Original Message-
From: David Grabbe [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 29, 2001 8:41 PM
To: CF-Talk
Subject: RE: RealAudio and ColdFusion



Thanks, Steve.

CF and RealServer ARE on the same machine, but since the .rm file is being
sent out over a different port (7070), it doesn't seem to be available for
normal file processing (I set up a CFDIRECTORY tag, and the .rm doesn't show
up in the folder).  Is there a way, then, to 'listen' on a different port
and direct CFFILE or CFDIRECTORY in that direction?

Cheers,
David

-Original Message-
From: Steve Bernard [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 29, 2001 5:44 PM
To: CF-Talk
Subject: RE: RealAudio and ColdFusion


If CF and Real Server are on the same machine just use CFFILE.

Steve

-Original Message-
From: David Grabbe [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 29, 2001 3:57 PM
To: CF-Talk
Subject: RealAudio and ColdFusion


Howdy folks,

I'm running CF 4.5.1.  The organization I work for has a weekly program
which we stream via RealAudio.  The RealAudio aspect is working just fine,
but I'm wondering if there is a way for CF to detect whether or not the
RealAudio stream is active or not (i.e. check for the existence of the .rm
file).  I looked into using CFHTTP, but couldn't get that to work --
probably because of the media type.  I'm not actually wanting to download,
just see if the stream exists.  If there an easy way to do this?  Are there
any RA gurus out there  :)

Thanks in advance!

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

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



RE: [RE: Advices on dynamic SQL, please]

2001-05-30 Thread Mark Warrick

Setup a table to store the flavor of the month (the category name).  Query
that table for the value.  Then query the original table in the same manner
with the value from that query.  That's dynamic.

---mark


Mark Warrick - Fusioneers.com
Email: [EMAIL PROTECTED]
Phone: 714-547-5386
http://www.fusioneers.com
http://www.warrick.net


 -Original Message-
 From: Julia Phu [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, May 29, 2001 9:45 PM
 To: CF-Talk
 Subject: Re: [RE: Advices on dynamic SQL, please]


 Hi, Mark,

 Yes, it was my thought as well.

 I am trying not to hard code the SQL since the product category, or col2,
 change monthly. Furthermore, I'm looking for a way to set up a
 select box to
 display the 'DISTINCT' col2 since there is more than 30 product
 category with
 300 rows. This is Oracle 8i database.

 I'm hoping there is a better way for this, so that I can learn
 from the guru.


 Regards,
 Julia


 Mark Warrick [EMAIL PROTECTED] wrote:
 How about:

 select col1, col2, col3, col4
 where col2 = 'abc'


 Or am I missing something here?

 ---mark

 
 Mark Warrick - Fusioneers.com
 Email: [EMAIL PROTECTED]
 Phone: 714-547-5386
 http://www.fusioneers.com
 http://www.warrick.net
 

  -Original Message-
  From: Julia Phu [mailto:[EMAIL PROTECTED]]
  Sent: Tuesday, May 29, 2001 1:30 PM
  To: CF-Talk
  Subject: Advices on dynamic SQL, please
 
 
  Hi, guru,
 
  I'm seeking your advices for a better solution on dynamic SQL (I guess).
 
  Users want to select ABC from a form to view anything under ABC.
  What is your
  advices on how to handle it?
 
  Table A:
  col1  col2  col3  col4
  aaABC   XYdescription1
  abABC   XYdescription2
  acABC   XXdescription3
  adABC   00description4
  aeDEF   XYdescription1
  afDEF   YZdescription2
  agDEF   00description3
 
  Your input is greatly appreciated.
 
  Julia Phu
 

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

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



RE: JS-Frame-question

2001-05-30 Thread James Lathem

You know, I was just about to ask you if you checked that!
:-)
James

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 30, 2001 11:27 AM
To: CF-Talk
Subject: AW: JS-Frame-question


Hi, I solved my problem.
Because of a lot of nested cfm-templates
I wasn't paying attention of a base=_top in my header
in B.
I deleted it and now it runs fine.

Best Uwe

-Urspr|ngliche Nachricht-
Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Gesendet: Mittwoch, 30. Mai 2001 09:08
An: CF-Talk
Betreff: OT: JS-Frame-question



Hi, I have two frames A and B.

A is the navigation-frame and B the content-frame.
I am having a frameset like:

frameset rows=25%,*
frame src=A.cfm name=oben id=oben frameborder=No scrolling=no
marginwidth=0 marginheight=0
frame src=B.cfm name=unten id=unten frameborder=No
scrolling=Auto marginwidth=0 marginheight=0
/frameset

When I call B.cfm directly all the included JS runs fine.
But it doesn't if I it run it in the belonging frameset.

What could I do to prevent this ?

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

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



Layers?

2001-05-30 Thread Mike

I have four layers in a form and when the page loads you can see the layers
as they load after is its loaded every thing is fine my  questions is how do
I hide the layer while the page loads?
Thanks
Mike

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

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



Re: Unstable MySQL on Windows 2000

2001-05-30 Thread W Luke

Likewise - it would work for a few times, and then datasource errors would
occur.  Use Access :)

Will

- Original Message -
From: [EMAIL PROTECTED]
Newsgroups: gradwell.lists.cftalk
Sent: Wednesday, May 30, 2001 6:13 PM
Subject: Unstable MySQL on Windows 2000


 Has anyone successfully gotten MySQL, ColdFusion and W2K to work together?

 I am getting flaky at best connections to MySQL using the MyODBC driver. I
 works for a little bit then I get nothing but datasource errors. Like:
 ODBC Error Code = ()


 Unknown connection error for the data source, 'INSPIR.'


 Data Source = INSPIR


 The error occurred while processing an element with a general identifier
of
 (CFQUERY), occupying document position (1:1) to (1:66) in the template
file
 C:\INETPUB\WWWROOT\INSPIR\COMPANY\QRY\QRY_LIST.CFM.


 Date/Time: 05/30/01 09:30:31
 Browser: Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0)
 Remote Address: 127.0.0.1
 HTTP Referer: http://127.0.0.1/inspir/company/snpr/index.cfm



 Regards,

 Rob Rusher

 Spectra Architect, Certified ColdFusion Instructor + Developer, Certified
 Java Programmer

 (303) 885-7044 Cell
 (970) 472-1775  Fax
 [EMAIL PROTECTED]

 [EMAIL PROTECTED]
 http://www.flarenetworks.com


 plan, build and integrate interactive applications and e-business services
 to enhance knowledge sharing, e-commerce and business communications
 initiatives





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

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



RE: Maintain Database connection?

2001-05-30 Thread Mark Warrick

Leave it unchecked if you want to easily replace the database at anytime
without having to stop the CF Server.  Otherwise, leave it checked to reap
the performance increase.


Mark Warrick - Fusioneers.com
Email: [EMAIL PROTECTED]
Phone: 714-547-5386
http://www.fusioneers.com
http://www.warrick.net


 -Original Message-
 From: Kola Oyedeji [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, May 30, 2001 3:36 AM
 To: CF-Talk
 Subject: Maintain Database connection?


 Hi

 Just a quick questions regarding the Maintain Database Connections in
 Access,
 should this be checked or unchecked and if it is unchecked what are the
 performance
 implications?

 Thanks

 KOla



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

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



Re: Maintain Database connection?

2001-05-30 Thread W Luke

Personally I have it unchecked, as CF seems to hold onto the file for far
longer than necessary which plays havoc when trying to rename/update the DB
or upload a new one.  I haven't noticed any performance problems.

Will


- Original Message -
From: Kola Oyedeji [EMAIL PROTECTED]
Newsgroups: gradwell.lists.cftalk
Sent: Wednesday, May 30, 2001 11:40 AM
Subject: Maintain Database connection?


 Hi

 Just a quick questions regarding the Maintain Database Connections in
 Access,
 should this be checked or unchecked and if it is unchecked what are the
 performance
 implications?

 Thanks

 KOla



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

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



retrive content from db with cfoutput tag in the content

2001-05-30 Thread ychen




Hi,

I have content store in the database with cfm tag in the content, when I
retrieve the content from the database and display it on the cfm page, it treats
the content as string, it does not process the cfoutput tag

here is my code

CFQUERY NAME=GetBody DATASOURCE=text
SELECT  tblDocument.Doc_Title, tblDocument.Doc_Body,
tblMenu.menu_img, tblMenu.menu_url, tblDocument.Doc_ID
FROM tblDocument, tblMenu
WHERE   tblDocument.Doc_Title = 'FAQ'
ORDER BY  tblDocument.Doc_ID
/CFQUERY

   cfoutput query=GetBody

   #Doc_Body#br
  /cfoutput



  the content as shown below: this is in the database

  p class=bigFrequently asked questions:/p

   !-- CONTENT STARTS HERE
  * --
   olcfloop query=Getfaq
   li  A href=#faq_url##faq_title#/A /li
   /cfloop
   /ol
  !-- CONTENT STOPS HERE
  * --

  brp class=boldThis is shortcut Admin function - a
  href=faq_admin.cfm target=_blankList all of FAQ/a/pbr



  Can I retrive the content with cfm tag in the content and displya it on the
  cfm page?

  thank you for any suggestion

  YC





yep.. it's out, download the eval:

http://www.macromedia.com/software/coldfusion/

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

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



RE: COOKIE expiration :((

2001-05-30 Thread Tony Schreiber

Hmm, Dave, I think you're right. My bad... Ah, yes, that is right, the
lack of the EXPIRES attribute creates a cookie that lasts only while the
browser is open. Sorry all.

  EXPIRES=Never produces exactly the behavior you described. 
  THe cookie persists only as long as the browser is open.
 
 That's incorrect. To get a cookie that persists only until the browser is
 closed - a session cookie - you must omit the EXPIRES parameter entirely.
 EXPIRES=NEVER sets a cookie to have an expiration date far in the future,
 and returns an HTTP response header like this:
 
 Set-Cookie: CTESTNEVER=1; expires=Sun, 27-Sep-2037
 
 Dave Watts, CTO, Fig Leaf Software
 http://www.figleaf.com/
 voice: (202) 797-5496
 fax: (202) 797-5444
 


Tony Schreiber, Senior Partner  Man and Machine, Limited
mailto:[EMAIL PROTECTED]   http://www.technocraft.com

http://www.simplemessageboard.com ___Free Forum Software for Cold Fusion
http://www.is300.net ___The Enthusiast's Home of the Lexus IS300
http://www.digitacamera.com __DigitA Camera Scripts and Tips
http://www.linklabexchange.com _Miata Link ECU Data Exchange


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

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



Protect Code

2001-05-30 Thread Mike

Is there a way to get some information about a computer that a program is
run on? i.e. (computer name, processor ID, anything unique)
We will have access during install and we are trying insure that or code
will not be run on new machine with out or assistants any ideas. We are
thinking of making a custom dll for ever install.
Thanks
Mike

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

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



RE: Insert form

2001-05-30 Thread Mark Warrick

First of all, don't use CFINSERT.  Write your own SQL scripts.

Second, make sure that the data being inserted into the date/time field is
actually a date/time object. In this case, it is not.

The code below illustrates how this works properly with a date/time field:


snip--

cfparam name=send_time default=

cfoutput

cfif send_time neq 

#CreateODBCTime(send_time)#
br
br

/cfif


form action=#script_name# method=post
select name=Send_Time size=1
OPTION VALUE=/OPTION
option value=01:00 PM01:00 PM/option
option value=02:00 PM02:00 PM/option
option value=03:00 PM03:00 PM/option
option value=04:00 PM04:00 PM/option
/select
input type=submit
/form
/cfoutput

snip--


Mark Warrick - Fusioneers.com
Email: [EMAIL PROTECTED]
Phone: 714-547-5386
http://www.fusioneers.com
http://www.warrick.net


 -Original Message-
 From: Shally [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, May 30, 2001 8:27 AM
 To: CF-Talk
 Subject: Insert form



 Hi Every one,
 I have an Insert form where there is an option of
 lists to be selected by the user.
 select name=Send_Time size=1
 OPTION VALUE=[Not Answered]/OPTION
 option value=01000100/option
 option value=02000200/option
 option value=03000300/option
 option value=04000400/option
 /select

 I am able to insert all the other values in the
 database with the help of Cfinsert tag but not the
 above selection.
 Database used is Access and the datatype of the field
 is Date/time.I even tried with Text datatype but
 it didn't work.

 Please help.

 Shally

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

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



RE: RE: turning off automatic carriage-return insertion in CF

2001-05-30 Thread Mark Warrick

By chance does this happen after you've sent a document to your webserver
and pulled it back down?  If so, you can attribute the problem to not
sending the file up as a text file.  This used to drive us nuts in the UNIX
days.  (not that UNIX is dead, just not my choice anymore)

---mark


Mark Warrick - Fusioneers.com
Email: [EMAIL PROTECTED]
Phone: 714-547-5386
http://www.fusioneers.com
http://www.warrick.net


 -Original Message-
 From: Jason Blum [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, May 30, 2001 8:30 AM
 To: CF-Talk
 Subject: Re:RE: turning off automatic carriage-return insertion in CF


 Hey Will,

 No, it's not word wrap.  It's if I save a template like:

 html
 head

 and then open it up later, I get:

 html

 head

 and sometimes with two blank lines inserted.  Really annoying.

 -J



 Reply Separator
 Subject:RE: turning off automatic carriage-return insertion in CF St
 Author: [EMAIL PROTECTED]
 Date:   5/30/01 3:45 PM

 Hi Jason,

 Are you talking about word wrap? If so, try options/word wrap, or look for
 the word wrap icon to the left of the coding area (or whatever
 the technical
 term is!!!)

 Cheers

 Will

 -Original Message-
 From: Jason Blum [mailto:[EMAIL PROTECTED]]
 Sent: 30 May 2001 14:52
 To: CF-Talk
 Subject: turning off automatic carriage-return insertion in CF Studio



 Greetings!

 Anyone happen to know how to turn off CF Studio's automatic insertion of
 carriage returns throughout my code every time I load a template?
  I thought
 perhaps it was the Code Sweeper feature, but I have this disabled.  I am a
 little mystified by why anyone would ever even want their code
 automatically
 stretched in the first place?!?!

 -Jason

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

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



Re: Unstable MySQL on Windows 2000

2001-05-30 Thread Zac

[EMAIL PROTECTED] wrote:

 Has anyone successfully gotten MySQL, ColdFusion and W2K to work together?

Certainly have. I haven't stress tested it but its been working with no
errors since I installed it.

Have you installed any of the SP releases?

-- 

It is dangerous to be right when the government is wrong.

Voltaire


email: [EMAIL PROTECTED]
web: http://www.pixelgeek.com/


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

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



Upgrade problems

2001-05-30 Thread Christine Kelley


Hi!
   We have some sites that were on an old 4.0+ server that 
were just moved to a 4.5+ server.  All the sites work just 
great except one.  This particular site now gives this 
error:

The QUERY attribute of the tag does not specify the name of 
an available query.

Normally, this error says all that needs to be said, but in 
this case I have no idea.  The code worked fine on the old 
server :|  Here's the offending code:


CFQUERY datasource=visionquake name=getgroups
SELECT title, pageID
FROM pages
WHERE level = 1
ORDER BY orderID
/cfquery

CFOUTPUT query=getgroups
CFQUERY datasource=visionquake name=#CurrentRow#
SELECT title, pageID, level1
FROM pages
WHERE level = 2 AND level1 = #pageID#
ORDER BY orderID
/cfquery
/cfoutput


SCRIPT LANGUAGE=JavaScript1.2 TYPE=text/javascript
!--
if (isMenu) {
CFSET count = 0
cfoutput query=getgroups
CFSET count = #count# + 1
arMenu#CurrentRow# = new Array(
,
,107,
,,
,,
,,
CFSET lister = ''
CFSET listnames = ''
cfloop query=#CurrentRow# !--- here is the problem ---
CFSET subsub = 0
CFLOOP query=#URLEncodedFormat(title)#CFSET 
subsub = #count#/cfloop
#title#,page.cfm?pageID=#pageID#,
CFIF subsub IS NOT 01CFELSE0/cfif
CFIF CurrentRow IS NOT RecordCount,/cfif
CFSET lister = ListAppend(lister,subsub)
CFSET listnames = ListAppend
(listnames,'#URLEncodedFormat(title)#')
/cfloop
)
CFSET num = 0
CFLOOP index=i list=#lister#
CFSET num = #num# +1
CFIF i IS NOT 0
arMenu#i#_#num# = new Array(
CFLOOP query=#ListGetAt
(listnames,num)#
#title#,page.cfm?
pageID=#pageID#,0
CFIF CurrentRow IS NOT 
RecordCount,/cfif
/cfloop
)
/cfif
/cfloop

/cfoutput;
;
}
//--
/SCRIPT

Thank for any help, I think I've put some dents in the wall 
where I've banged my head against it :)

Christine



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

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



RE: CFFLUSH QUESTION

2001-05-30 Thread Raymond Camden

It's funny you mention progress bars. :) I've got an article on progress
bars and CFFLUSH on Allaire.com. For the life of me I can't remember the
URL, it may not be published yet, but it should be out soon.

===
Raymond Camden, Principal Spectra Compliance Engineer for Macromedia

Email   : [EMAIL PROTECTED]
ICQ UIN : 3679482

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

 -Original Message-
 From: John McKown [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, May 30, 2001 11:35 AM
 To: CF-Talk
 Subject: RE: CFFLUSH QUESTION


 Couldn't you use CFFlush to update a progress slider bar image
 outside of your table?



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

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



No-Content Error?

2001-05-30 Thread Palyne Gaenir

I'm using a file with a switch/case statement and only two 'pages' 
within it.  Outside the IF statements that define each page, are lots 
of html stuff, and some text.  So even if a query returned zero 
records (for no display), the page should come up fine without data.

First Problem: The form comes up fine.  When I press submit and it 
sends to the second page, which is a template that runs a query and 
outputs it, it seems to wait a long time in the browser, then I get 
the error message PAGE HAS NO CONTENT.  

Since I added CF error handling, now I just get my system error page.

This was working, I've been making mods in the query and in the 
(grouped) output trying to get it right.  I thought this version 
would work, but now this weird no-content problem. The query is too 
long to expect people to easily troubleshoot in an email, but I don't 
see how that could cause it.  I'm wondering if anybody else has come 
across a similar error and knows the probable cause?

Regards,
PJ


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



Regular Expressions

2001-05-30 Thread Mike Amburn

FYI, I found a great online resource for learning how to write regular
expressions, for anyone that's interested.
http://www.boost.org/libs/regex/syntax.htm
http://www.boost.org/libs/regex/syntax.htm 

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

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



  1   2   >