[ cf-dev ] OT: Flash MX unstable

2002-09-25 Thread Paolo Piponi
Since we're all Macromedia buddies, please tell me, am I useless at using this software, or is Flash MX very unstable (prone to suddenly vanishing from the screen) and the undo is probably the worst I have ever seen anywhere? Of course the answer could be both, but it would not be polite to say

Re: [ cf-dev ] OT: Flash MX unstable

2002-09-25 Thread Stephen Moretti
Since we're all Macromedia buddies, please tell me, am I useless at using this software, or is Flash MX very unstable (prone to suddenly vanishing from the screen) and the undo is probably the worst I have ever seen anywhere? Of course the answer could be both, but it would not be polite to

RE: [ cf-dev ] OT: Flash MX unstable

2002-09-25 Thread Paolo Piponi
I accept it has its uses, but if you click out of focus, undo something in the outer object, go back and undo, it can lose all history. This usually only happens when moving from object to object, particularly where they are nested. I expect it's a pretty complicated prog inside, so I can put up

[ cf-dev ] CFForm and javascript

2002-09-25 Thread Dave Phipps
Hi, I have a registration form which uses the cfform tag and associated cfinput tags to specify required fields. I also want to add and additional password comparison piece of javascript which requires the following: form onSubmit=return checkPw(this) Now if I simply put this into the

RE: [ cf-dev ] CFForm and javascript

2002-09-25 Thread Robertson-Ravo, Neil (REC)
Dont use cfform its a nightmare. See Spike's BLOG for an excellent reason on why not to use it - and when you can get away with it. N -Original Message- From: Dave Phipps [mailto:[EMAIL PROTECTED]] Sent: 25 September 2002 12:31 To: ColdFusion User group Subject: [ cf-dev ] CFForm and

RE: [ cf-dev ] CFForm and javascript

2002-09-25 Thread Adrian Lynch
Where be this spikey blog? -Original Message- From: Robertson-Ravo, Neil (REC) [mailto:[EMAIL PROTECTED]] Sent: 25 September 2002 12:26 To: '[EMAIL PROTECTED]' Subject: RE: [ cf-dev ] CFForm and javascript Dont use cfform its a nightmare. See Spike's BLOG for an excellent reason on

RE: [ cf-dev ] CFForm and javascript

2002-09-25 Thread Robertson-Ravo, Neil (REC)
http://spikefu.blogspot.com/ -Original Message- From: Adrian Lynch [mailto:[EMAIL PROTECTED]] Sent: 25 September 2002 12:28 To: '[EMAIL PROTECTED]' Subject: RE: [ cf-dev ] CFForm and javascript Where be this spikey blog? -Original Message- From: Robertson-Ravo, Neil (REC)

RE: [ cf-dev ] CFForm and javascript

2002-09-25 Thread Justin MacCarthy
http://spikefu.blogspot.com/ -Original Message- From: Adrian Lynch [mailto:[EMAIL PROTECTED]] Sent: 25 September 2002 12:28 To: '[EMAIL PROTECTED]' Subject: RE: [ cf-dev ] CFForm and javascript Where be this spikey blog? -Original Message- From: Robertson-Ravo, Neil

[ cf-dev ] Temp tables in SQL Server

2002-09-25 Thread Justin MacCarthy
Hi, Anyone used temp tables in SQL Server in cfquery? Anyone see anything wrong with doing below? cftransaction cfquery datasource=dsn name=CreateTable CREATE TABLE ##CFID#_#CFTOKEN#(WhateverID INT PRIMARY KEY) /cfquery cfquery datasource=dsn

RE: [ cf-dev ] CFForm and javascript

2002-09-25 Thread Sridhar Pedamallu
try this input type=submit onClick=return checkPw(this) -Original Message- From: Dave Phipps [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 25, 2002 12:31 To: ColdFusion User group Subject: [ cf-dev ] CFForm and javascript Hi, I have a registration form which uses the cfform

Re: [ cf-dev ] Temp tables in SQL Server

2002-09-25 Thread Tom Smith
do it all in one query I think it'll open a new connection for each query you are sending... the temp table is only available why the process that creates it is running... HTH TOM - Original Message - From: Justin MacCarthy [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday,

RE: [ cf-dev ] Temp tables in SQL Server

2002-09-25 Thread Robertson-Ravo, Neil (REC)
what the theory of using temporary table? -Original Message- From: Justin MacCarthy [mailto:[EMAIL PROTECTED]] Sent: 25 September 2002 14:22 To: [EMAIL PROTECTED] Subject: [ cf-dev ] Temp tables in SQL Server Hi, Anyone used temp tables in SQL Server in cfquery? Anyone see

RE: [ cf-dev ] Temp tables in SQL Server

2002-09-25 Thread Spike
Aren't you creating a local temp table with the create table statement? Will that table be available to the second query, or do you need to use #cfid#_#cftoken#? Spike -Original Message- From: Justin MacCarthy [mailto:[EMAIL PROTECTED]] Sent: 25 September 2002 15:22 To: [EMAIL

RE: [ cf-dev ] adventures in temp tables was RE: [ cf-dev ] Temp tables in SQL Server

2002-09-25 Thread Spike
Are you saying that it makes no difference whether you use local or temporary tables? If so, did you get to the bottom of the original problem? Spike -Original Message- From: Justin MacCarthy [mailto:[EMAIL PROTECTED]] Sent: 25 September 2002 16:04 To: [EMAIL PROTECTED] Subject:

[ cf-dev ] Error handling in CFMX

2002-09-25 Thread Aidan Whitehall
Does anyone have any pointers to anything that explains clearly how error handling is dealt with in CFMX? I'm trying to find out why specifying: cferror type=exception exception=Any... and cferror type=request... in Application.cfm displays the error page for either line of code: cfset x = y

Re: [ cf-dev ] OT: line breaks in dreamweaver

2002-09-25 Thread Christopher Chaduka
I am waiting to hear this one. I also need to use the auto indent feature for my PHP code. I should be able to set this somewhere in some language specific conf file? Can DMW do that? At 15:52 09/25/2002 +0100, you wrote: Is there any way I can set dreamweaver so that new lines start with the

RE: [ cf-dev ] Error handling in CFMX

2002-09-25 Thread Adam Hope
Hi Aidan, They are in the CFMX docs. Look under the cferror tag. If you don't have the docs to hand goto http://livedocs.macromedia.com/cfmxdocs/. We do a similar thing in our systems: In Application.cfm cferror type=EXCEPTION template=/common/displayerror2.cfm exception=ANY In every

RE: [ cf-dev ] Error handling in CFMX

2002-09-25 Thread Aidan Whitehall
They are in the CFMX docs. Sorry... I deserved that ;-) I had only been searching through the docs in Studio 5, not thinking to use the ones at localhost/docs/dochome.htm. Thanks for the pointer. Regards -- Aidan Whitehall [EMAIL PROTECTED] Macromedia ColdFusion Developer Fairbanks

Re: [ cf-dev ] OT: line breaks in dreamweaver

2002-09-25 Thread Damian Watson
...are you not using the indent button in properties?? this if memory serves correct puts in a blockquote. Similarly to Word, you have to press return twice to end the blockquote tag... What version of Creambeaver are you using... may be an issue... - Original Message - From: