Only update DB if data has changed?

2006-05-26 Thread Andy Mcshane
Hi all, does anybody have any ideas how I could best implement the following;

I have a page that loads anything up to about 30 individual records at a time. 
Each record consists of 17 fields of data. All the records are displayed on the 
page to give the user the option of editing any individual field. When the user 
then submits the page I need to be able to work out which records have had data 
changed and only do database updates for those specific records. Having an 
individual submit for each record is not an option, the whole page must be 
submitted as one but only records that have changed should be updated. Can 
anybody suggest a method for doing this? 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241542
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Only update DB if data has changed?

2006-05-26 Thread Robertson-Ravo, Neil (RX)
Should be easy enough and no doubt several way s to achieve thisboth in
CF Code and in SQL.  One way would be to load the records at page load into
a structure and then on submit comparing both the pre-edited and post edited
form struct to see what has changed etc...



-Original Message-
From: Andy Mcshane [mailto:[EMAIL PROTECTED] 
Sent: 26 May 2006 10:25
To: CF-Talk
Subject: Only update DB if data has changed?

Hi all, does anybody have any ideas how I could best implement the
following;

I have a page that loads anything up to about 30 individual records at a
time. Each record consists of 17 fields of data. All the records are
displayed on the page to give the user the option of editing any individual
field. When the user then submits the page I need to be able to work out
which records have had data changed and only do database updates for those
specific records. Having an individual submit for each record is not an
option, the whole page must be submitted as one but only records that have
changed should be updated. Can anybody suggest a method for doing this? 



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241543
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Only update DB if data has changed?

2006-05-26 Thread Andy Mcshane
Yes, I was thinking about using a structure but I am unsure of the best way to 
do a comparison. Wouldn't this mean having to a field by field comarison or is 
there a better way? I was wondering if anybody had created a custom tag to do 
just this sort of thing.

Should be easy enough and no doubt several way s to achieve thisboth in
CF Code and in SQL.  One way would be to load the records at page load into
a structure and then on submit comparing both the pre-edited and post edited
form struct to see what has changed etc...



-Original Message-
From: Andy Mcshane [mailto:[EMAIL PROTECTED] 
Sent: 26 May 2006 10:25
To: CF-Talk
Subject: Only update DB if data has changed?

Hi all, does anybody have any ideas how I could best implement the
following;

I have a page that loads anything up to about 30 individual records at a
time. Each record consists of 17 fields of data. All the records are
displayed on the page to give the user the option of editing any individual
field. When the user then submits the page I need to be able to work out
which records have had data changed and only do database updates for those
specific records. Having an individual submit for each record is not an
option, the whole page must be submitted as one but only records that have
changed should be updated. Can anybody suggest a method for doing this?

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241544
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Only update DB if data has changed?

2006-05-26 Thread Dov Katz
To add to this.  What many people do is create a Data Object (CFC, for exampe) 
modeling whatever record you are using here, and then create setXXX and setYYY 
to assign all the new values.

When writing setXXX functions in your CFC, lets say, you simply compare the 
data, and if it differs, you set a boolean flag called isDirty

Then you loop through your data objects, saving anything which has 
isDirty=true

make sense?
dbk



 Yes, I was thinking about using a structure but I am unsure of the 
 best way to do a comparison. Wouldn't this mean having to a field by 
 field comarison or is there a better way? I was wondering if anybody 
 had created a custom tag to do just this sort of thing.
 
 Should be easy enough and no doubt several way s to achieve this
 both in
 CF Code and in SQL.  One way would be to load the records at page 
 load into
 a structure and then on submit comparing both the pre-edited and post 
 edited
 form struct to see what has changed etc...
 
 
 
 -Original Message-
 From: Andy Mcshane [mailto:[EMAIL PROTECTED] 
 Sent: 26 May 2006 10:25
 To: CF-Talk
 Subject: Only update DB if data has changed?
 
 Hi all, does anybody have any ideas how I could best implement the
 following;
 
 I have a page that loads anything up to about 30 individual records 
 at a
 time. Each record consists of 17 fields of data. All the records are
 displayed on the page to give the user the option of editing any 
 individual
 field. When the user then submits the page I need to be able to work 
 out
 which records have had data changed and only do database updates for 
 those
 specific records. Having an individual submit for each record is not 
 an
 option, the whole page must be submitted as one but only records that 
 have
 changed should be updated. Can anybody suggest a method for doing 
this?

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241545
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Only update DB if data has changed?

2006-05-26 Thread Neil Middleton
Is the problem you are trying to solve related to performance of running too
many queries, or from updating some sort of LastUpdated column
unnecessarily.

On 5/26/06, Andy Mcshane [EMAIL PROTECTED] wrote:

 Hi all, does anybody have any ideas how I could best implement the
 following;

 I have a page that loads anything up to about 30 individual records at a
 time. Each record consists of 17 fields of data. All the records are
 displayed on the page to give the user the option of editing any individual
 field. When the user then submits the page I need to be able to work out
 which records have had data changed and only do database updates for those
 specific records. Having an individual submit for each record is not an
 option, the whole page must be submitted as one but only records that have
 changed should be updated. Can anybody suggest a method for doing this?

 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241546
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Only update DB if data has changed?

2006-05-26 Thread Andy Mcshane
The problem is related to running too many queries which do an awful lot of 
work in themselves and also the fact that the client refuses to have the option 
of being able to edit each record individually.

Is the problem you are trying to solve related to performance of running too
many queries, or from updating some sort of LastUpdated column
unnecessarily.

On 5/26/06, Andy Mcshane [EMAIL PROTECTED] wrote:


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241547
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Only update DB if data has changed?

2006-05-26 Thread Dirk De Bock - Lists
one way would be to build a string of all elements of 1 field, get the hash 
of this string and include that as a hidden field, then you do the same for 
the posted info and compare both hash strings

- Original Message - 
From: Robertson-Ravo, Neil (RX) [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Friday, May 26, 2006 11:14 AM
Subject: RE: Only update DB if data has changed?


 Should be easy enough and no doubt several way s to achieve thisboth 
 in
 CF Code and in SQL.  One way would be to load the records at page load 
 into
 a structure and then on submit comparing both the pre-edited and post 
 edited
 form struct to see what has changed etc...



 -Original Message-
 From: Andy Mcshane [mailto:[EMAIL PROTECTED]
 Sent: 26 May 2006 10:25
 To: CF-Talk
 Subject: Only update DB if data has changed?

 Hi all, does anybody have any ideas how I could best implement the
 following;

 I have a page that loads anything up to about 30 individual records at a
 time. Each record consists of 17 fields of data. All the records are
 displayed on the page to give the user the option of editing any 
 individual
 field. When the user then submits the page I need to be able to work out
 which records have had data changed and only do database updates for those
 specific records. Having an individual submit for each record is not an
 option, the whole page must be submitted as one but only records that have
 changed should be updated. Can anybody suggest a method for doing this?



 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241548
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Only update DB if data has changed?

2006-05-26 Thread Jim McAtee
Do you want to do this for a reason, or are you just trying to avoid 
unnecessary queries?

I can see this if you're stamping the records with a timestamp and/or 
noting the person who updated them, then you might want to avoid marking 
the record as updated when it actually wasn't.

But I'm not sure you gain much in the way of database activity, since 
you'll generally have to look up the record(s) after the page is 
submitted, then do comparisons, then conditionally do your updates.  Which 
is a lot of work to save what may not be much processing.  For 30 records 
it would require 30 select queries, plus your updates, which may save you 
little over just doing 30 updates and being done with it.

One technique to avoid the lookup queries on the server is to do 
everything on the client side using javascript, comparing data when the 
form is submitted, then turning on flags (sent as hidden fields) telling 
you whether you need to update a record.  This is also a lot of work, and 
is subject to the same caveats as relying soley on client side data 
validation.  In a controlled environment such as on an intranet, though, 
it may be acceptable.


- Original Message - 
From: Andy Mcshane [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Friday, May 26, 2006 3:25 AM
Subject: Only update DB if data has changed?


 Hi all, does anybody have any ideas how I could best implement the 
 following;

 I have a page that loads anything up to about 30 individual records at a 
 time. Each record consists of 17 fields of data. All the records are 
 displayed on the page to give the user the option of editing any 
 individual field. When the user then submits the page I need to be able 
 to work out which records have had data changed and only do database 
 updates for those specific records. Having an individual submit for each 
 record is not an option, the whole page must be submitted as one but 
 only records that have changed should be updated. Can anybody suggest a 
 method for doing this?


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241549
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Only update DB if data has changed?

2006-05-26 Thread Michael E. Carluen
Andy,

I typically do this:

!--- On the Form Page  ---
input type=text name=field1 value=#form_value_to_edit#
input type=hidden name=hidden_field1 value=#original_value#


!--- On the Post Page... you can loop and evaluate each field  ---
cfif FORM.field1 is FORM.hidden_field1
SQL Update
/cfif


Hope that helps.




-Original Message-
From: Andy Mcshane [mailto:[EMAIL PROTECTED] 
Sent: Friday, May 26, 2006 2:25 AM
To: CF-Talk
Subject: Only update DB if data has changed?

Hi all, does anybody have any ideas how I could best implement the
following;

I have a page that loads anything up to about 30 individual records at a
time. Each record consists of 17 fields of data. All the records are
displayed on the page to give the user the option of editing any individual
field. When the user then submits the page I need to be able to work out
which records have had data changed and only do database updates for those
specific records. Having an individual submit for each record is not an
option, the whole page must be submitted as one but only records that have
changed should be updated. Can anybody suggest a method for doing this? 



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241550
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Only update DB if data has changed?

2006-05-26 Thread Michael E. Carluen
Oops...

!--- On the Form Page  ---
input type=text name=field1 value=#form_value_to_edit#
input type=hidden name=hidden_field1 value=#original_value#

Should be:
!--- On the Post Page... you can loop and evaluate each field  ---
cfif FORM.field1 IS NOT FORM.hidden_field1
SQL Update
/cfif

HTH...


-Original Message-
From: Michael E. Carluen [mailto:[EMAIL PROTECTED] 
Sent: Friday, May 26, 2006 3:52 AM
To: CF-Talk
Subject: RE: Only update DB if data has changed?

Andy,

I typically do this:

!--- On the Form Page  ---
input type=text name=field1 value=#form_value_to_edit#
input type=hidden name=hidden_field1 value=#original_value#


!--- On the Post Page... you can loop and evaluate each field  ---
cfif FORM.field1 is FORM.hidden_field1
SQL Update
/cfif


Hope that helps.




-Original Message-
From: Andy Mcshane [mailto:[EMAIL PROTECTED] 
Sent: Friday, May 26, 2006 2:25 AM
To: CF-Talk
Subject: Only update DB if data has changed?

Hi all, does anybody have any ideas how I could best implement the
following;

I have a page that loads anything up to about 30 individual records at a
time. Each record consists of 17 fields of data. All the records are
displayed on the page to give the user the option of editing any individual
field. When the user then submits the page I need to be able to work out
which records have had data changed and only do database updates for those
specific records. Having an individual submit for each record is not an
option, the whole page must be submitted as one but only records that have
changed should be updated. Can anybody suggest a method for doing this? 





~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241551
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Only update DB if data has changed?

2006-05-26 Thread Tom Chiverton
On Friday 26 May 2006 11:52, Michael E. Carluen wrote:
 !--- On the Post Page... you can loop and evaluate each field  ---
 cfif FORM.field1 is FORM.hidden_field1
   SQL Update
 /cfif

If you follow the pattern of making a hidden field called 
'hidden_old_value_X' then you can automate this check by looping over the 
form scope and constucting the relavent key for the original value, thus:
cfif form[thisItem] is not form['hidden_old_value_'+thisItem]

-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.

We are pleased to announce that Halliwells LLP has been voted AIM Lawyer of the 
Year at the 2005 Growth Company Awards


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241552
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


activedit and FireFox?

2006-05-26 Thread Ray Champagne
OK, I've had it.

We took over a client's site, and in their CMS, the developer was using 
the Activedit Applet to manage her text.  It's kind of like FCKEditor. 
The problem that I have had since I started working on this project is 
that it completely hates FireFox, keeps telling me that I need to 
purchase more licenses.  Then it freezes up my browser, and I have to 
reboot.  BUT - it works completely fine in IE.  ???

Searches in Google bring up one link saying that I have to install a 
plugin for this to work, but the link provided is dead.  Is anyone else 
using Activedit and FF successfully?

FF 1.5.0.3

Thx!
-- 
Ray Champagne - Senior Application Developer
CrystalVision Web Site Design and Internet Services
603.433.9559
www.crystalvision.org


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241553
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: activedit and FireFox?

2006-05-26 Thread James Holmes
This is probably A Stupid Question(TM); does it have to be ActivEdit?
Can you use FCK or TinyMCE (i.e. something that works)?

On 6/26/06, Ray Champagne [EMAIL PROTECTED] wrote:
 OK, I've had it.

 We took over a client's site, and in their CMS, the developer was using
 the Activedit Applet to manage her text.  It's kind of like FCKEditor.
 The problem that I have had since I started working on this project is
 that it completely hates FireFox, keeps telling me that I need to
 purchase more licenses.  Then it freezes up my browser, and I have to
 reboot.  BUT - it works completely fine in IE.  ???

 Searches in Google bring up one link saying that I have to install a
 plugin for this to work, but the link provided is dead.  Is anyone else
 using Activedit and FF successfully?

 FF 1.5.0.3

-- 
CFAJAX docs and other useful articles:
http://jr-holmes.coldfusionjournal.com/

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241554
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: activedit and FireFox?

2006-05-26 Thread Crow T. Robot
Well, yes, when we redesign their entire site in July.  We don't want to 
spend any more unbillable time on the site until then, however.

Actually, the plan is to use FCKEditor when we do the resdesign, it 
happens to be my personal fav.

James Holmes wrote:
 This is probably A Stupid Question(TM); does it have to be ActivEdit?
 Can you use FCK or TinyMCE (i.e. something that works)?
 
 On 6/26/06, Ray Champagne [EMAIL PROTECTED] wrote:
 OK, I've had it.

 We took over a client's site, and in their CMS, the developer was using
 the Activedit Applet to manage her text.  It's kind of like FCKEditor.
 The problem that I have had since I started working on this project is
 that it completely hates FireFox, keeps telling me that I need to
 purchase more licenses.  Then it freezes up my browser, and I have to
 reboot.  BUT - it works completely fine in IE.  ???

 Searches in Google bring up one link saying that I have to install a
 plugin for this to work, but the link provided is dead.  Is anyone else
 using Activedit and FF successfully?

 FF 1.5.0.3
 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241555
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: activedit and FireFox?

2006-05-26 Thread Andy Matthews
Activedit is IE only.

!//--
andy matthews
web developer
certified advanced coldfusion programmer
ICGLink, Inc.
[EMAIL PROTECTED]
615.370.1530 x737
--//-

-Original Message-
From: Ray Champagne [mailto:[EMAIL PROTECTED]
Sent: Monday, June 26, 2006 7:51 AM
To: CF-Talk
Subject: activedit and FireFox?


OK, I've had it.

We took over a client's site, and in their CMS, the developer was using 
the Activedit Applet to manage her text.  It's kind of like FCKEditor. 
The problem that I have had since I started working on this project is 
that it completely hates FireFox, keeps telling me that I need to 
purchase more licenses.  Then it freezes up my browser, and I have to 
reboot.  BUT - it works completely fine in IE.  ???

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241556
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


cfreport and Crystal Reports

2006-05-26 Thread kurt schroeder
about 6 years ago i create a custom tag to envoke a Crystal Report. At the time 
CF and CRW as is would produce an HTML CR not a real CRYSTAL REPORT to be 
dumped to the printer. Does the current version of CF allow you to create a 
real CR or is is still HTML?


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241557
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: activedit and FireFox?

2006-05-26 Thread Ben Nadel
I know no one asked my opinion here, but I just wanted to say the we use
Xstandard (xstandard.com) which is an ActiveX object that created perfect
XHtml standards-compliant code. It is the most fantastic WYSIWYG editor that
I have ever used and it has fast file uploading, customized directories,
image and attachment libraries.

I am currently working on a ColdFusion solutions for it, soon to be
available, but you can use asp for now. 

The only tradeoff is that it is not free like FCK editor, but the price is
completely justified.

My 2 cents
...
Ben Nadel 
www.bennadel.com

-Original Message-
From: Crow T. Robot [mailto:[EMAIL PROTECTED] 
Sent: Monday, June 26, 2006 9:05 AM
To: CF-Talk
Subject: Re: activedit and FireFox?

Well, yes, when we redesign their entire site in July.  We don't want to
spend any more unbillable time on the site until then, however.

Actually, the plan is to use FCKEditor when we do the resdesign, it happens
to be my personal fav.

James Holmes wrote:
 This is probably A Stupid Question(TM); does it have to be ActivEdit?
 Can you use FCK or TinyMCE (i.e. something that works)?
 
 On 6/26/06, Ray Champagne [EMAIL PROTECTED] wrote:
 OK, I've had it.

 We took over a client's site, and in their CMS, the developer was 
 using the Activedit Applet to manage her text.  It's kind of like
FCKEditor.
 The problem that I have had since I started working on this project 
 is that it completely hates FireFox, keeps telling me that I need to 
 purchase more licenses.  Then it freezes up my browser, and I have to 
 reboot.  BUT - it works completely fine in IE.  ???

 Searches in Google bring up one link saying that I have to install a 
 plugin for this to work, but the link provided is dead.  Is anyone 
 else using Activedit and FF successfully?

 FF 1.5.0.3
 



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241558
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: activedit and FireFox?

2006-05-26 Thread Tom Chiverton
On Friday 26 May 2006 14:08, Ben Nadel wrote:
 The only tradeoff is that it is not free like FCK editor, 

And that it's a ActiveX control, and therefore the sooner killed off the 
better.

-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.

We are pleased to announce that Halliwells LLP has been voted AIM Lawyer of the 
Year at the 2005 Growth Company Awards


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241559
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: activedit and FireFox?

2006-05-26 Thread Ben Nadel
What is wrong with ActiveX? 

...
Ben Nadel 
www.bennadel.com

-Original Message-
From: Tom Chiverton [mailto:[EMAIL PROTECTED] 
Sent: Friday, May 26, 2006 9:24 AM
To: CF-Talk
Subject: Re: activedit and FireFox?

On Friday 26 May 2006 14:08, Ben Nadel wrote:
 The only tradeoff is that it is not free like FCK editor,

And that it's a ActiveX control, and therefore the sooner killed off the
better.

--
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and
Wales under registered number OC307980 whose registered office address is at
St James's Court Brown Street Manchester M2 2JF.  A list of members is
available for inspection at the registered office. Any reference to a
partner in relation to Halliwells LLP means a member of Halliwells LLP.
Regulated by the Law Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may
be confidential or legally privileged.  If you are not the addressee you
must not read it and must not use any information contained in nor copy it
nor inform any person other than Halliwells LLP or the addressee of its
existence or contents.  If you have received this email in error please
delete it and notify Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.

We are pleased to announce that Halliwells LLP has been voted AIM Lawyer of
the Year at the 2005 Growth Company Awards




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241560
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: activedit and FireFox?

2006-05-26 Thread Peterson, Chris
Oh let me count the things wrong

A) IE only
B) ActiveX is a security hole black-pit 
C) You have to 'Click to Activate' the control (annoying, g)
D) You have to code an alternative for Firefox or ignore a growing
visitor base



-Original Message-
From: Ben Nadel [mailto:[EMAIL PROTECTED] 
Sent: Friday, May 26, 2006 9:29 AM
To: CF-Talk
Subject: RE: activedit and FireFox?

What is wrong with ActiveX? 


Ben Nadel
www.bennadel.com

-Original Message-
From: Tom Chiverton [mailto:[EMAIL PROTECTED]
Sent: Friday, May 26, 2006 9:24 AM
To: CF-Talk
Subject: Re: activedit and FireFox?

On Friday 26 May 2006 14:08, Ben Nadel wrote:
 The only tradeoff is that it is not free like FCK editor,

And that it's a ActiveX control, and therefore the sooner killed off the
better.

--
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England
and Wales under registered number OC307980 whose registered office
address is at St James's Court Brown Street Manchester M2 2JF.  A list
of members is available for inspection at the registered office. Any
reference to a partner in relation to Halliwells LLP means a member of
Halliwells LLP.
Regulated by the Law Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and
may be confidential or legally privileged.  If you are not the addressee
you must not read it and must not use any information contained in nor
copy it nor inform any person other than Halliwells LLP or the addressee
of its existence or contents.  If you have received this email in error
please delete it and notify Halliwells LLP IT Department on 0870 365
8008.

For more information about Halliwells LLP visit www.halliwells.com.

We are pleased to announce that Halliwells LLP has been voted AIM Lawyer
of the Year at the 2005 Growth Company Awards






~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241561
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: activedit and FireFox?

2006-05-26 Thread Tom Chiverton
On Friday 26 May 2006 14:28, Ben Nadel wrote:
 What is wrong with ActiveX?

Have you seen the hassle it's caused ever since it was introduced ?
IE7 goes to huge lengths to run itself in a protected container, mainly 
because of ActiveX.

-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.

We are pleased to announce that Halliwells LLP has been voted AIM Lawyer of the 
Year at the 2005 Growth Company Awards


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241562
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


ANNOUNCE: CFMX 7 upgrade and Fusebox classes June 2006 in Wash DC area

2006-05-26 Thread Michael Smith
Come to an intensive class on Fusebox or CFMX 7 upgrade in Rockville,
Maryland. Classes limited to 12 students each so that you can be sure
to get your own questions answered!  Sign up today to
guarantee a place at http://www.teratech.com/training/
- Michael Smith, TeraTech, Inc

PS If you can't make a class we have one-on-one mentoring and on site
classes too.  Just email me if you are interested.

TeraTech was a finalist for Best ColdFusion Training in USA
two years running.

Class list
**
FB201 - Intermediate FuseboxJun 6 2006
CF209 - Upgrade to CFMX 7   Jun 13 2006
CU210 Leader of the Pack (strategies for building better software) - 
Simon Horwith - Monday 6/26
CU211 Fundamentals of Relational Database - Kurtis D. Leatham - Monday 6/26
CU212 ColdFusion Server Administration: JRun J2EE Deployment - Adam 
Wayne Lehman - Monday 6/26
CU213 Testing ColdFusion - John Paul Ashenfelter - Monday 6/26
CU214 Ajax intensive for ColdFusion Developers - Rob Gonda - Tuesday 
6/27 (FULL!)
CU215 XML, XPath, and XSLT for ColdFusion Developers - Jeff Peters - 
Tuesday 6/27
CU216 Domain Modeling - Hal Helms - Tuesday 6/27
CU217 Beyond Basic SQL for CF - Nate Nelson - Tuesday 6/27
FB101 - Intro to FuseboxSep 12 2006
FB201 - Intermediate FuseboxSep 19 2006
CF102 - Intro to ColdFusion Sep 26 2006
CF201 - Intermediate ColdFusion Oct 10 2006
CS201H - CSS hands on   TBA

*TeraTech 100% Learning Guarantee*

We want you to be happy with our classes. If you are not
100% sure you learned everything you could from any of our
classes then you may take it again at no charge on a space
available basis.



Selected Class details (more at http://www.teratech.com/training/ )

FB 201 - Intermediate Fusebox
*
Full Day course 10am-5pm
Just $349, includes lunch

Prerequisite: FB101 or similar basic Fusebox knowledge.

FB201 is for people who have already met Fusebox and want to improve
their skills with the new Fusebox 4.0 spec. Step up to the next level
with your Fusebox programming and save yourself time and headaches
when coding ColdFusion applications. Great for team projects!

* Fusebox 4 overview
   - How version 4 is better than version 3
* Core files - fusebox.xml, circuit.xml
   - What files are essential to an FB app
* Nested Circuits
   - How nesting can help you organize your code for reuse
* XFAs
   - How Extended FuseActions can save time and self document code
* Layouts
   - How layout can help code reuse and be smart layouts
 that can change appearance depending where they are used
* Plugins
   - How plugins can let you change core file behavior without
 going crazy editing the core file itself
* Wireframes
   - How to build wireframe outlines of a site and what not to include
 them if you don't want headaches
* Devnotes
   - How Devnotes can save your butt when developing
* Fusedocs
   - How to document the Fusebox way and why it can help testing too
* Fusebox API variables
   - What are all the API variables and what can you use them for

+ Learn all the advanced parts of how the Fusebox architecture can
help you build ColdFusion Applications.

+ Learn to tie together all the new parts of a Fusebox 4 application
together.

+ Study a sample fusebox application and take the code home with you
to use in your own applications.

+ Find out about how Fusebox can improve your applications from
better organization to proven methods of application design.

+ Work with the latest Fusebox techniques

* Q  A time

--



CF 209 - CFMX 7 upgrade
**
Full Day course Sign-in 9:30am, Class 10am-5pm
Just $349, includes lunch
Prerequisite: CF102 or similar basic ColdFusion knowledge.

Are you new to CFMX 7? Do you want to learn all the new features fast? 
This class will get you upto
speed on it all:
* Flash forms
* XML forms
* PDF generation
* headers and footers
* the report builder
* sub reports
* event gateways
* CFC new features
* Web Services
* Verity enhancements
* CF Application Framework
* CF Administrator API
* what is new in CF Administrator.


CF201H - CSS Beginner to Advanced hands on
**
Full Day course Sign-in 9:30am, Class 10am-5pm
Just $196, includes lunch

Day 1
Section 1 - Introduction to Cascading Style Sheets
  Benefits and limitations of CSS
  Bringing CSS and HTML Together
  Basic Rules of CSS
  Summary
  Lab

Section 2 –CSS Structure, Units, and Values
  Grouping
  Class and ID Selectors
  Pseudo-Classes and Pseudo-Elements
  Structure, Inheritance, and Specificity
  The C in CSS (Cascade)
  Classification of Elements
  Colors
  Length Units and Percentage Values
  Summary
  Lab

Day 2
Section 1 – Typography
  History of Web Typography
  Manipulating Text
  Font Families
  Font Weights and Size
  Styles and Variants
  Using Shorthand for the Font Property
  Font Matching
  Summary
  Lab

Section 2 - Colors and Backgrounds
  Setting Colors
  Complex Backgrounds
  

RE: activedit and FireFox?

2006-05-26 Thread Ben Nadel
Chris,

My mistake, perhaps I am confused as to what Xstandard is. Maybe it is not
ActiveX ( I am not very familiar with ActiveX ).

Xstanard is:
A) IE and FireFox (I am a programmer, you think I use IE ;) AND Mac 
B) Don't know about the security
C) You have to click into it to start typeing anyway, this cannot cause an
issue
D) I am not familiar with this alternate for FireFox... Like I said, I
primarily use FireFox and it works freakin' sweet (no special code).

Also, not that its even an issue, but as far as visitor base goes, this is
part of a content management system, and visitor base is not a concern.
These are Administrators updating page content. I agree that I would not use
this for a general public-accessible type form... But, then again, I
wouldn't use a rich text editor for most any public form (except maybe a
message board type interface, but then again, I would want it very limited).


..
Ben Nadel 
www.bennadel.com

-Original Message-
From: Peterson, Chris [mailto:[EMAIL PROTECTED] 
Sent: Friday, May 26, 2006 9:51 AM
To: CF-Talk
Subject: RE: activedit and FireFox?

Oh let me count the things wrong

A) IE only
B) ActiveX is a security hole black-pit
C) You have to 'Click to Activate' the control (annoying, g)
D) You have to code an alternative for Firefox or ignore a growing visitor
base



-Original Message-
From: Ben Nadel [mailto:[EMAIL PROTECTED] 
Sent: Friday, May 26, 2006 9:29 AM
To: CF-Talk
Subject: RE: activedit and FireFox?

What is wrong with ActiveX? 

.
Ben Nadel
www.bennadel.com

-Original Message-
From: Tom Chiverton [mailto:[EMAIL PROTECTED]
Sent: Friday, May 26, 2006 9:24 AM
To: CF-Talk
Subject: Re: activedit and FireFox?

On Friday 26 May 2006 14:08, Ben Nadel wrote:
 The only tradeoff is that it is not free like FCK editor,

And that it's a ActiveX control, and therefore the sooner killed off the
better.

--
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England
and Wales under registered number OC307980 whose registered office
address is at St James's Court Brown Street Manchester M2 2JF.  A list
of members is available for inspection at the registered office. Any
reference to a partner in relation to Halliwells LLP means a member of
Halliwells LLP.
Regulated by the Law Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and
may be confidential or legally privileged.  If you are not the addressee
you must not read it and must not use any information contained in nor
copy it nor inform any person other than Halliwells LLP or the addressee
of its existence or contents.  If you have received this email in error
please delete it and notify Halliwells LLP IT Department on 0870 365
8008.

For more information about Halliwells LLP visit www.halliwells.com.

We are pleased to announce that Halliwells LLP has been voted AIM Lawyer
of the Year at the 2005 Growth Company Awards








~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241564
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: activedit and FireFox?

2006-05-26 Thread Ben Nadel
Tom,

I can appreciate the concern, but with a text editor, the 'click to
activate' isn't much of a concern to me (at this point). I have to click
into the text area field just to start typeing (or highlight text, or create
links, or any other editing-related task).

...
Ben Nadel 
www.bennadel.com

-Original Message-
From: Tom Chiverton [mailto:[EMAIL PROTECTED] 
Sent: Friday, May 26, 2006 9:55 AM
To: CF-Talk
Subject: Re: activedit and FireFox?

On Friday 26 May 2006 14:28, Ben Nadel wrote:
 What is wrong with ActiveX?

Have you seen the hassle it's caused ever since it was introduced ?
IE7 goes to huge lengths to run itself in a protected container, mainly
because of ActiveX.

--
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and
Wales under registered number OC307980 whose registered office address is at
St James's Court Brown Street Manchester M2 2JF.  A list of members is
available for inspection at the registered office. Any reference to a
partner in relation to Halliwells LLP means a member of Halliwells LLP.
Regulated by the Law Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may
be confidential or legally privileged.  If you are not the addressee you
must not read it and must not use any information contained in nor copy it
nor inform any person other than Halliwells LLP or the addressee of its
existence or contents.  If you have received this email in error please
delete it and notify Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.

We are pleased to announce that Halliwells LLP has been voted AIM Lawyer of
the Year at the 2005 Growth Company Awards




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241565
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


QuickBooks Web Connector Products

2006-05-26 Thread Bud
Hi everyone. I have 2 new programs to announce, 1 commercial, and 
another freebie for the CF community. I generally do not tout my 
wares here, but the freebie is hopefully going to be of great help to 
some of you. So I'm including my new commercial product also. So 
shoot me. :)

Please ask any questions off list unless you think everyone should 
hear the answer. If I offend anyone with this post, please admonish 
me off list also. It's best to use the email address from the Contact 
page of my web site to contact me rather than this one, but I'll get 
either.

I've been working with the QuickBooks Web Connector. We CF shopping 
cart developers, and anyone building CF apps for clients where the 
data eventually ends up in QuickBooks, are losing a lot of money to 
the QuickBooks Assistant programs. With the Web Connector, you can 
build your OWN assistants, such as the commercial one I'm about to 
show you. Then to get you started, I've included a little freebie.


cf_ezcart Accounting Assistant - Makes cf_ezcart perhaps THE most 
QuickBooks compatible shopping cart in existence. If it isn't now, it 
soon will be. If there is one more so, I'd love to see it. This has 
been a 6 month long project to date that better fly, because it's 
just about bankrupted me. :)

http://www.cf-ezcart.com/cf_ezcart-accounting-assistant.cfm


QWC Starter Kit For ColdFusion - A FREE SOAP web service shell to 
get you up and running with the QuickBooks Web Connector in minutes. 
It will take all of the SOAP out of your hands and let you 
concentrate on coding. BOY OH BOY I could have used this in December 
when I started my project. I hope it helps someone.

http://www.cf-ezcart.com/qwc-starter-kit.cfm


As a side note. I've built a really neat support section for my 
Assistant. Allows for logging requests, viewing CF and QB errors, 
adding new services, etc. All stuff you will need to add to your 
program. I'm trying to build and document a version with a simple 
example service that I can release cheaply for the community which 
will include the database logging and preferences tables and the 
complete support section, minus your support content of course.

Thanks for listening!
-- 

Bud Schneehagen - Tropical Web Creations, Inc.

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
Web Based Solutions / eCommerce Development  Hosting
http://www.twcreations.com/ - http://www.cf-ezcart.com/
Toll Free: 877.207.6397 - Local  Int'l Phone/Fax: 386.789.0968

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241566
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: activedit and FireFox?

2006-05-26 Thread Mark A Kruger
Um Dumb question but why not just use IE for this task?

-Mark
 

-Original Message-
From: Ray Champagne [mailto:[EMAIL PROTECTED] 
Sent: Monday, June 26, 2006 7:51 AM
To: CF-Talk
Subject: activedit and FireFox?

OK, I've had it.

We took over a client's site, and in their CMS, the developer was using the
Activedit Applet to manage her text.  It's kind of like FCKEditor. 
The problem that I have had since I started working on this project is that
it completely hates FireFox, keeps telling me that I need to purchase more
licenses.  Then it freezes up my browser, and I have to reboot.  BUT - it
works completely fine in IE.  ???

Searches in Google bring up one link saying that I have to install a plugin
for this to work, but the link provided is dead.  Is anyone else using
Activedit and FF successfully?

FF 1.5.0.3

Thx!
--
Ray Champagne - Senior Application Developer CrystalVision Web Site Design
and Internet Services
603.433.9559
www.crystalvision.org




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241567
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Data modelling tool

2006-05-26 Thread Jason Rogoz
Just wanted to find out what data modelling tool everyone was using, I've used 
Erwin in the past but the company i'm with now doesn't have a license and i'm 
not sure getting a license will be that easy.  I'm looking for one that will 
create a script to create the database in SQL Server
 
Thanks  


Jason Rogoz
Programmer / Analyst

Zoom Communications Inc.
Calgary, Alberta, Canada

Office: (403) 229-2511
Fax: (403) 229-4211
Toll Free: 1-866-698-8932

www.zoomcom.ca http://www.zoomcom.ca/ 
 


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241568
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: activedit and FireFox?

2006-05-26 Thread Tom Chiverton
On Friday 26 May 2006 15:30, Mark A Kruger wrote:
 Um Dumb question but why not just use IE for this task?

Maybe he doesn't have IE (sensible chap).

-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.

We are pleased to announce that Halliwells LLP has been voted AIM Lawyer of the 
Year at the 2005 Growth Company Awards


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241569
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: activedit and FireFox?

2006-05-26 Thread Tom Chiverton
On Friday 26 May 2006 15:12, Ben Nadel wrote:
 My mistake, perhaps I am confused as to what Xstandard is. Maybe it is not
 ActiveX ( I am not very familiar with ActiveX ).
 A) IE and FireFox (I am a programmer, you think I use IE ;) AND Mac

Firefox *not* on Windows ?
Firefox on Windows can use ActiveX controls, iirc, with all their attendant 
problems.

-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.

We are pleased to announce that Halliwells LLP has been voted AIM Lawyer of the 
Year at the 2005 Growth Company Awards


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241570
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: activedit and FireFox?

2006-05-26 Thread Robertson-Ravo, Neil (RX)
Uurgh, sick of the whole I hate IE shebanglet it lie ;-) I am using IE7
now and I must sayI am liking it.



-Original Message-
From: Tom Chiverton [mailto:[EMAIL PROTECTED] 
Sent: 26 May 2006 15:51
To: CF-Talk
Subject: Re: activedit and FireFox?

On Friday 26 May 2006 15:30, Mark A Kruger wrote:
 Um Dumb question but why not just use IE for this task?

Maybe he doesn't have IE (sensible chap).

-- 

Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and
Wales under registered number OC307980 whose registered office address is at
St James's Court Brown Street Manchester M2 2JF.  A list of members is
available for inspection at the registered office. Any reference to a
partner in relation to Halliwells LLP means a member of Halliwells LLP.
Regulated by the Law Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may
be confidential or legally privileged.  If you are not the addressee you
must not read it and must not use any information contained in nor copy it
nor inform any person other than Halliwells LLP or the addressee of its
existence or contents.  If you have received this email in error please
delete it and notify Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.

We are pleased to announce that Halliwells LLP has been voted AIM Lawyer of
the Year at the 2005 Growth Company Awards




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241571
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: activedit and FireFox?

2006-05-26 Thread Robertson-Ravo, Neil (RX)
But surely Firefox on Mac can also use ActiveX ;-)

-Original Message-
From: Tom Chiverton [mailto:[EMAIL PROTECTED] 
Sent: 26 May 2006 15:52
To: CF-Talk
Subject: Re: activedit and FireFox?

On Friday 26 May 2006 15:12, Ben Nadel wrote:
 My mistake, perhaps I am confused as to what Xstandard is. Maybe it is not
 ActiveX ( I am not very familiar with ActiveX ).
 A) IE and FireFox (I am a programmer, you think I use IE ;) AND Mac

Firefox *not* on Windows ?
Firefox on Windows can use ActiveX controls, iirc, with all their attendant 
problems.

-- 

Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and
Wales under registered number OC307980 whose registered office address is at
St James's Court Brown Street Manchester M2 2JF.  A list of members is
available for inspection at the registered office. Any reference to a
partner in relation to Halliwells LLP means a member of Halliwells LLP.
Regulated by the Law Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may
be confidential or legally privileged.  If you are not the addressee you
must not read it and must not use any information contained in nor copy it
nor inform any person other than Halliwells LLP or the addressee of its
existence or contents.  If you have received this email in error please
delete it and notify Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.

We are pleased to announce that Halliwells LLP has been voted AIM Lawyer of
the Year at the 2005 Growth Company Awards




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241572
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: activedit and FireFox?

2006-05-26 Thread Dave Watts
 Firefox on Windows can use ActiveX controls, iirc, with all 
 their attendant problems.

Not without a specific plugin to host those ActiveX controls:

http://www.iol.ie/~locka/mozilla/mozilla.htm

Out of the box, Firefox can't use ActiveX controls.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241573
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: activedit and FireFox?

2006-05-26 Thread Dave Watts
 But surely Firefox on Mac can also use ActiveX ;-)

While I seem to recall a version of the ActiveX platform for the Mac at one
point, ActiveX controls are platform-specific, and no one actually writes
ActiveX controls for the Mac. So, effectively, ActiveX is Windows-only.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241574
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: activedit and FireFox?

2006-05-26 Thread Ben Nadel
Tom, 

I was not aware of that. Like I said, I am not very familiar with ActiveX
stuff. But isn't flash ActiveX? That seems to work on all browsers (that I
have tried). Sorry for any confusion.

...
Ben Nadel 
www.bennadel.com

-Original Message-
From: Tom Chiverton [mailto:[EMAIL PROTECTED] 
Sent: Friday, May 26, 2006 10:52 AM
To: CF-Talk
Subject: Re: activedit and FireFox?

On Friday 26 May 2006 15:12, Ben Nadel wrote:
 My mistake, perhaps I am confused as to what Xstandard is. Maybe it is 
 not ActiveX ( I am not very familiar with ActiveX ).
 A) IE and FireFox (I am a programmer, you think I use IE ;) AND Mac

Firefox *not* on Windows ?
Firefox on Windows can use ActiveX controls, iirc, with all their attendant
problems.

--
Tom Chiverton


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241575
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: activedit and FireFox?

2006-05-26 Thread Dave Watts
  Um Dumb question but why not just use IE for this task?
 
 Maybe he doesn't have IE (sensible chap).

Snobbery 1, common sense 0.

If the original poster is a web developer, he should certainly have a copy
of the same web browser that the vast majority of his users will have!

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241576
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: activedit and FireFox?

2006-05-26 Thread Ben Nadel
Dave,

I don't have the time right now to read the link you provided, but surely I
will later. I know on windows I can use ActiveX (I think - it automatically
downloads a plug-in for the control) without any trouble. 

...
Ben Nadel 
www.bennadel.com

-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED] 
Sent: Friday, May 26, 2006 10:58 AM
To: CF-Talk
Subject: RE: activedit and FireFox?

 Firefox on Windows can use ActiveX controls, iirc, with all their 
 attendant problems.

Not without a specific plugin to host those ActiveX controls:

http://www.iol.ie/~locka/mozilla/mozilla.htm

Out of the box, Firefox can't use ActiveX controls.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized instruction
at our training centers in Washington DC, Atlanta, Chicago, Baltimore,
Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241577
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: QuickBooks Web Connector Products

2006-05-26 Thread John C. Bland II
Bud, good work!

On 5/26/06, Bud [EMAIL PROTECTED] wrote:

 Hi everyone. I have 2 new programs to announce, 1 commercial, and
 another freebie for the CF community. I generally do not tout my
 wares here, but the freebie is hopefully going to be of great help to
 some of you. So I'm including my new commercial product also. So
 shoot me. :)

 Please ask any questions off list unless you think everyone should
 hear the answer. If I offend anyone with this post, please admonish
 me off list also. It's best to use the email address from the Contact
 page of my web site to contact me rather than this one, but I'll get
 either.

 I've been working with the QuickBooks Web Connector. We CF shopping
 cart developers, and anyone building CF apps for clients where the
 data eventually ends up in QuickBooks, are losing a lot of money to
 the QuickBooks Assistant programs. With the Web Connector, you can
 build your OWN assistants, such as the commercial one I'm about to
 show you. Then to get you started, I've included a little freebie.


 cf_ezcart Accounting Assistant - Makes cf_ezcart perhaps THE most
 QuickBooks compatible shopping cart in existence. If it isn't now, it
 soon will be. If there is one more so, I'd love to see it. This has
 been a 6 month long project to date that better fly, because it's
 just about bankrupted me. :)

 http://www.cf-ezcart.com/cf_ezcart-accounting-assistant.cfm


 QWC Starter Kit For ColdFusion - A FREE SOAP web service shell to
 get you up and running with the QuickBooks Web Connector in minutes.
 It will take all of the SOAP out of your hands and let you
 concentrate on coding. BOY OH BOY I could have used this in December
 when I started my project. I hope it helps someone.

 http://www.cf-ezcart.com/qwc-starter-kit.cfm


 As a side note. I've built a really neat support section for my
 Assistant. Allows for logging requests, viewing CF and QB errors,
 adding new services, etc. All stuff you will need to add to your
 program. I'm trying to build and document a version with a simple
 example service that I can release cheaply for the community which
 will include the database logging and preferences tables and the
 complete support section, minus your support content of course.

 Thanks for listening!
 --

 Bud Schneehagen - Tropical Web Creations, Inc.

 _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
 Web Based Solutions / eCommerce Development  Hosting
 http://www.twcreations.com/ - http://www.cf-ezcart.com/
 Toll Free: 877.207.6397 - Local  Int'l Phone/Fax: 386.789.0968

 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241578
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: activedit and FireFox?

2006-05-26 Thread Dave Watts
 But isn't flash ActiveX?

There is an ActiveX control for Flash in IE, and a Mozilla plugin for Flash
for Mozilla-based browsers. The plugin architectures are different between
the two.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241579
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: activedit and FireFox?

2006-05-26 Thread Jochem van Dieten
Dave Watts wrote:
 
 Maybe he doesn't have IE (sensible chap).
 
 Snobbery 1, common sense 0.
 
 If the original poster is a web developer, he
 should certainly have a copy of the same
 web browser that the vast majority of his
 users will have!

Which is not always IE. For instance, I am currently developing am application 
that will run on a BSD-only intranet. That means the dominant browsers will be 
the Gecko family, but I will have to make sure it works in Safari and Lynx too.

Jochem


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241580
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: activedit and FireFox?

2006-05-26 Thread Tom Chiverton
On Friday 26 May 2006 16:00, Ben Nadel wrote:
 stuff. But isn't flash ActiveX? 

It might be on windows platforms.
On other O/S it'll be some other form of browser plugin.

-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.

We are pleased to announce that Halliwells LLP has been voted AIM Lawyer of the 
Year at the 2005 Growth Company Awards


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241581
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: activedit and FireFox?

2006-05-26 Thread Tom Chiverton
On Friday 26 May 2006 15:35, Robertson-Ravo, Neil (RX) wrote:
 Uurgh, sick of the whole I hate IE shebanglet it lie ;-) I am using IE7
 now and I must sayI am liking it.

Even though the menu bar is now three times the height ?

-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.

We are pleased to announce that Halliwells LLP has been voted AIM Lawyer of the 
Year at the 2005 Growth Company Awards


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241582
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: activedit and FireFox?

2006-05-26 Thread Mark A Kruger
Jochem,

Congrats - you found the only BSD only intranet in the entire world to
work for... I bet there is a pocket protector and twinky verndor in the
lobby too :)

-Mark 


-Original Message-
From: Jochem van Dieten [mailto:[EMAIL PROTECTED] 
Sent: Friday, May 26, 2006 10:19 AM
To: CF-Talk
Subject: RE: activedit and FireFox?

Dave Watts wrote:
 
 Maybe he doesn't have IE (sensible chap).
 
 Snobbery 1, common sense 0.
 
 If the original poster is a web developer, he should certainly have a 
 copy of the same web browser that the vast majority of his users will 
 have!

Which is not always IE. For instance, I am currently developing am
application that will run on a BSD-only intranet. That means the dominant
browsers will be the Gecko family, but I will have to make sure it works in
Safari and Lynx too.

Jochem




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241583
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: activedit and FireFox?

2006-05-26 Thread Tom Chiverton
On Friday 26 May 2006 16:02, Dave Watts wrote:
 Snobbery 1, common sense 0.

It *is* Friday :-)

-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.

We are pleased to announce that Halliwells LLP has been voted AIM Lawyer of the 
Year at the 2005 Growth Company Awards


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241584
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: activedit and FireFox?

2006-05-26 Thread Dave Watts
   Maybe he doesn't have IE (sensible chap).
  
  Snobbery 1, common sense 0.
  
  If the original poster is a web developer, he should 
  certainly have a copy of the same web browser that the 
  vast majority of his users will have!
 
 Which is not always IE. For instance, I am currently 
 developing am application that will run on a BSD-only 
 intranet. That means the dominant browsers will be the Gecko 
 family, but I will have to make sure it works in Safari and 
 Lynx too.

You know, Jochem, I love you to death - you're my all-time favorite cf-talk
poster. But are you saying that you don't ever work on public applications,
or IE-heavy intranets? Would you agree with Tom's statement that it would
generally be sensible for a web developer not to have access to IE on
Windows?

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241585
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


displaying in week format

2006-05-26 Thread Bruce Sorge
I posted this earlier but did nto see it show up on the list. If it double 
posts I apoligize:

Hello list. I have a query that is getting a total of records for a previous 
week and I am displaying the total number of records. Now, the customer wants 
me to output it into a one week format with a breakdown of the data in each 
cell.

The query looks like so:

cfquery datasource=#application.datasource# name=getAddMoreCashLead
SELECT  COUNT(LeadDistributionID) AS totalLeadRec  
FROMLeadDistribution  
WHERE   (HttpReferer IS NOT NULL AND HttpReferer IN 
('www.addmorecash.com'))  
AND DateInserted  '#dPreviousWeek#' AND 
DateInserted  '#dToday#'
/cfquery

I am thinking that I need to put the query in a loop and then create an array 
to hold the data or something like that? Or am I complicating this? I am also 
putting the result into a CFMAIL tag to email the report weekly to the user. I 
admit that since I have not been using CF for the last couple of years due to 
my deployment to Iraq and returning to find my old job switched to .NET and 
thus had to learn that I am a bit rusty.

Thanks.

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241586
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: activedit and FireFox?

2006-05-26 Thread Tom Chiverton
On Friday 26 May 2006 16:35, Dave Watts wrote:
 Tom's statement that it would
 generally be sensible for a web developer not to have access to IE on
 Windows?

Woa there :-)
I actually *do* work on an IE-heavy intranet most of my time :-)

When I'm doing HTML-based sites, it's much more present to use Firefox to 
develop with, esp. if there is any JavaScript in there, and then give it the 
once over with IE before it's rolled out.
These days though it's mostly Flex frontends, so again I don't need IE.

-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.

We are pleased to announce that Halliwells LLP has been voted AIM Lawyer of the 
Year at the 2005 Growth Company Awards


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241587
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: activedit and FireFox?

2006-05-26 Thread Crow T. Robot
Well, I can.  Or, should I say I could.  For some reason, I can't log in 
to the CMS using IE anymore.  But I can with FF.  Weird problem, I know, 
but I've checked all my IE settings and there's nothing there that I can 
see might be causing the problem.

Mark A Kruger wrote:
 Um Dumb question but why not just use IE for this task?
 
 -Mark
  
 
 -Original Message-
 From: Ray Champagne [mailto:[EMAIL PROTECTED] 
 Sent: Monday, June 26, 2006 7:51 AM
 To: CF-Talk
 Subject: activedit and FireFox?
 
 OK, I've had it.
 
 We took over a client's site, and in their CMS, the developer was using the
 Activedit Applet to manage her text.  It's kind of like FCKEditor. 
 The problem that I have had since I started working on this project is that
 it completely hates FireFox, keeps telling me that I need to purchase more
 licenses.  Then it freezes up my browser, and I have to reboot.  BUT - it
 works completely fine in IE.  ???
 
 Searches in Google bring up one link saying that I have to install a plugin
 for this to work, but the link provided is dead.  Is anyone else using
 Activedit and FF successfully?
 
 FF 1.5.0.3
 
 Thx!
 --
 Ray Champagne - Senior Application Developer CrystalVision Web Site Design
 and Internet Services
 603.433.9559
 www.crystalvision.org
 
 
 
 
 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241588
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: displaying in week format

2006-05-26 Thread Tom Chiverton
On Friday 26 May 2006 16:36, Bruce Sorge wrote:
 cfquery datasource=#application.datasource# name=getAddMoreCashLead
   SELECT  COUNT(LeadDistributionID) AS totalLeadRec
   FROMLeadDistribution
   WHERE   (HttpReferer IS NOT NULL AND HttpReferer IN
 ('www.addmorecash.com')) AND DateInserted  '#dPreviousWeek#' AND
 DateInserted  '#dToday#' /cfquery

And you want total counts by day ?
Something like this:
SELECT  COUNT(LeadDistributionID) AS 
totalLeadRec,trunc(DateInserted)
FROMLeadDistribution
WHERE   (HttpReferer IS NOT NULL AND HttpReferer IN
('www.addmorecash.com')) AND DateInserted  '#dPreviousWeek#' AND
DateInserted  '#dToday#'
group by trunc(DateInserted)


-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.

We are pleased to announce that Halliwells LLP has been voted AIM Lawyer of the 
Year at the 2005 Growth Company Awards


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241590
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: activedit and FireFox?

2006-05-26 Thread Crow T. Robot
Hrm...installed that, thought it was going to work, but, no-go.

I guess whoever posted that Activedit is an IE-only tool was right.  I 
just thought that it might work with the right plug-in.

Dave Watts wrote:
 Firefox on Windows can use ActiveX controls, iirc, with all 
 their attendant problems.
 
 Not without a specific plugin to host those ActiveX controls:
 
 http://www.iol.ie/~locka/mozilla/mozilla.htm
 
 Out of the box, Firefox can't use ActiveX controls.
 
 Dave Watts, CTO, Fig Leaf Software
 http://www.figleaf.com/
 
 Fig Leaf Software provides the highest caliber vendor-authorized
 instruction at our training centers in Washington DC, Atlanta,
 Chicago, Baltimore, Northern Virginia, or on-site at your location.
 Visit http://training.figleaf.com/ for more information!
 
 
 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241589
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: displaying in week format

2006-05-26 Thread Bruce Sorge
 
Yeah, I guess that is it. However when I run this one I get the message that
trucn is not a recognized function name. I am using SQL Server.

And you want total counts by day ?
Something like this:
SELECT  COUNT(LeadDistributionID) AS
totalLeadRec,trunc(DateInserted)
FROMLeadDistribution
WHERE   (HttpReferer IS NOT NULL AND HttpReferer IN
('www.addmorecash.com')) AND DateInserted  '#dPreviousWeek#' AND
DateInserted  '#dToday#'
group by trunc(DateInserted)



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241591
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: displaying in week format

2006-05-26 Thread Bruce Sorge
I removed the trunc part and the query ran fine. So now how do I get it to 
format the way I need it to? Loop through the query results?


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241592
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


BUMP Re: Adobe partnerships?

2006-05-26 Thread Bryan Stevenson
Anybody? Bueller? ;-)

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com
- Original Message - 
From: Bryan Stevenson [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Wednesday, May 24, 2006 11:57 AM
Subject: Adobe partnerships?


 Hey All,

 Anyone have a link/info on partnership programs with Adobe (like there was 
 with Macromedia)?  I found some pre-merger Adobe partner pages, but nothing 
 about the old style CF partnerships

 Thanks

 Bryan Stevenson B.Comm.
 VP  Director of E-Commerce Development
 Electric Edge Systems Group Inc.
 phone: 250.480.0642
 fax: 250.480.1264
 cell: 250.920.8830
 e-mail: [EMAIL PROTECTED]
 web: www.electricedgesystems.com

 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241593
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: activedit and FireFox?

2006-05-26 Thread Dan G. Switzer, II
From: Mark A Kruger [mailto:[EMAIL PROTECTED]
Um Dumb question but why not just use IE for this task?

One reason I've looked at this tool in the past is that it creates pure
XHTML. That's a huge plus in my book. The problem with both the built-in IE
RTE control and the Gecko-based one is that they can really produce some
junk HTML code.

I've been looking for a good control that will produce pure XHTML--which
makes it easily machine readable.

I also like how it appears to be able to do background image uploading via a
webservice. It looks like the user can cut and paste an image right into the
XStandard RTE. That's a huge UI improvement for the user.

It's been a while since I've looked at some of the common RTE
controls--haven't had a need for one in a while.

So, do any of the other common controls (fck, tinyMC, htmlArea, khtml) do a
good job of stripping out the erroneous markup created by MS Word and will
produce valid XHTML?

I've looked at cleaning up the HTML afterwards using jTidy and other tools,
but I haven't found any tools that reliably can convert HTML markup to XHTML
markup.

-Dan


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241594
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: activedit and FireFox?

2006-05-26 Thread Peter Tilbrook
You can use the localhost address (127.0.0.1) fine for testing otherwise yes 
you need a legit licence key.

I am using the Java version under Firefox 1.5.0.3 with no dramas.

Example AE code I am using:

cf_activedit name=LibraryBody inc=#Request.ActiveEditIncludePath# 
width=100% height=500 upload=1 breakonenter=true alloweditsource=yes 
buttoncolor=cdcdcd image=true 
toolbar=cut,copy,paste,|,redo,undo,|,outdent,indent,|,justifyleft,justifycenter,justifyright,bullets,numbers,|,table,image,hyperlink,||,find,help,specialchars,|,quickformat,bold,italic,underline,showdetails,hr
 tabview=yes imagepath=#Request.ActiveEditImagePath# 
imageurl=#Request.ActiveEditImageURL# baseurl=#Request.ApplicationURL# 
stylesheet=#Request.ApplicationURL#/#Request.DomainPrefix#.css 
appletlicense=#Request.ActiveEditLicence#/cf_activedit

Peter Tilbrook
Manager, ACT and Region ColdFusion Users Group (www.actcfug.com)
ColdGen Internet Solutions (www.coldgen.com)
PO Box 2247
Queanbeyan, NSW, 2620
Australia

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241595
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


SOLVED Re: Adobe partnerships?

2006-05-26 Thread Bryan Stevenson
Found it!

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241596
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: activedit and FireFox?

2006-05-26 Thread Peter Tilbrook
Activedit is IE only.

Is not! Is built on Java so requires the JVM is all.


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241597
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: SOLVED Re: Adobe partnerships?

2006-05-26 Thread Crow T. Robot
And?  My boss is interested in this, too.

Bryan Stevenson wrote:
 Found it!
 
 Bryan Stevenson B.Comm.
 VP  Director of E-Commerce Development
 Electric Edge Systems Group Inc.
 phone: 250.480.0642
 fax: 250.480.1264
 cell: 250.920.8830
 e-mail: [EMAIL PROTECTED]
 web: www.electricedgesystems.com
 
 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241598
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: QuickBooks Web Connector Products

2006-05-26 Thread Damien McKenna
That's really awesome, on both fronts - good work!

-- 
Damien McKenna - Web Developer - [EMAIL PROTECTED]
The Limu Company - http://ww.thelimucompany.com/ - 407-804-1014
#include stdjoke.h



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241599
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: activedit and FireFox?

2006-05-26 Thread Crow T. Robot
We do have a legit license key, too, as far as I know.  I mean, it works 
in IE, so that should be the case, right?  The only time I get that 
message is if I try to use it in FireFox.  The end-user uses this thing 
all the time, but she uses IE, so she doesn't see this message.

BTW, my IE problems have since cleared up after two reboots, so I can do 
the work I need to do now.  I'd still like to get this resolved, though. 
  Seems silly to have to browser-jump just to do my routine work.

Peter Tilbrook wrote:
 You can use the localhost address (127.0.0.1) fine for testing otherwise yes 
 you need a legit licence key.
 
 I am using the Java version under Firefox 1.5.0.3 with no dramas.
 
 Example AE code I am using:
 
 cf_activedit name=LibraryBody inc=#Request.ActiveEditIncludePath# 
 width=100% height=500 upload=1 breakonenter=true 
 alloweditsource=yes buttoncolor=cdcdcd image=true 
 toolbar=cut,copy,paste,|,redo,undo,|,outdent,indent,|,justifyleft,justifycenter,justifyright,bullets,numbers,|,table,image,hyperlink,||,find,help,specialchars,|,quickformat,bold,italic,underline,showdetails,hr
  tabview=yes imagepath=#Request.ActiveEditImagePath# 
 imageurl=#Request.ActiveEditImageURL# baseurl=#Request.ApplicationURL# 
 stylesheet=#Request.ApplicationURL#/#Request.DomainPrefix#.css 
 appletlicense=#Request.ActiveEditLicence#/cf_activedit
 
 Peter Tilbrook
 Manager, ACT and Region ColdFusion Users Group (www.actcfug.com)
 ColdGen Internet Solutions (www.coldgen.com)
 PO Box 2247
 Queanbeyan, NSW, 2620
 Australia
 
 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241600
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: activedit and FireFox?

2006-05-26 Thread Jochem van Dieten
Mark A Kruger wrote:
 
 Congrats - you found the only BSD only intranet in the entire world to
 work for...

There are plenty of Mac-only intranets, and as soon as they 
complete migration to OS X they become BSD-only :)

Jochem

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241601
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Captcha ??

2006-05-26 Thread Dennis Powers
 Anyone has comments on Bobby Hartfield's CF_BHCAPTCHA?
 http://acoderslife.com/downloads/bhcaptcha/

I have been using it effectively on our CF5 based sites it was easy to setup
and works well.  See http://www.ctbusinesscards.com/about.cfm for an example
of how it is being used.

Best Regards,
 
Dennis Powers
UXB Internet- A Website Design and Hosting Company
690 Wolcott Road - P.O. Box 6028
Wolcott, CT 06716
Tel: 203-879-2844
http://www.uxbinternet.com
http://dennis.uxb.net



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241602
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Any reason why a file field can be submitted back to the page it's on?

2006-05-26 Thread Jochem van Dieten
Rick Faircloth wrote:
 What he's throwing in is not logical, but illogical, from a
 common sense point of view.
 
 But we shouldn't be hypothesizing...that proves nothing.

Are you suggesting we all go get traffic accidents so we have 
some facts instead of a hypothesis? :)

Jochem

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241603
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Finding matching values in a structure?

2006-05-26 Thread Andy Matthews
I've got a structure containing coordinates for a grid. I've named each line
for the person who should appear at those coordinates. I've found a function
called StructFindValue() that says it can do what I need, but everytime
I try to use it, I get an error.

According to the docs it Searches recursively through a substructure of
nested arrays, structures, and other elements for structures with values
that match the search key in the value parameter..

It says that it returns An array that contains structures with values that
match the search key value. If none are found, returns an array of size 0.

I determined that I can't use it in a CFIF statement because it returns an
array. So how would I go about finding a key containing the value? Here's
my code listed below:

cfset us = StructNew()
cfset us[andy] = 62|-213
cfset us[jones] = 207|-86
cfset us[cherry] = 42|-220

cfdump var=#StructFindValue(us,62|-213)#

cfif StructFindValue(us,62|-213,ALL)
gotcha
/cfif

!//--
andy matthews
web developer
certified advanced coldfusion programmer
ICGLink, Inc.
[EMAIL PROTECTED]
615.370.1530 x737
--//-


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241604
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: activedit and FireFox?

2006-05-26 Thread Jochem van Dieten
Dave Watts wrote:
 Maybe he doesn't have IE (sensible chap).
 Snobbery 1, common sense 0.

 If the original poster is a web developer, he should 
 certainly have a copy of the same web browser that the 
 vast majority of his users will have!
 Which is not always IE. For instance, I am currently 
 developing am application that will run on a BSD-only 
 intranet. That means the dominant browsers will be the Gecko 
 family, but I will have to make sure it works in Safari and 
 Lynx too.
 
 You know, Jochem, I love you to death - you're my all-time favorite cf-talk
 poster. But are you saying that you don't ever work on public applications,
 or IE-heavy intranets?

That's what I work on most of the time. (And a significant part 
of that work has to do with transforming them to open standards 
and user-agent independence.)


 Would you agree with Tom's statement that it would
 generally be sensible for a web developer not to have access to IE on
 Windows?

Having access to and having are not the same thing. Unless you 
count mobile IE, I don't have IE: I don't have any use for a 
browser that doesn't run on any of my OS'es (and IE for Unix was 
discontinued long ago).
But if a job requires it, access to IE will be provided for me. I 
don't bring my own chair and desk to the job, so why should I 
have to bring IE?

Jochem

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241605
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Clustering and CFMX 7

2006-05-26 Thread Robert Everland III
With CFMX 7 clustering, can you copy application and session variables between 
servers including sessions or applications that are cfcs?



Bob

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241606
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Any reason why a file field can be submitted back to the page it's on?

2006-05-26 Thread Rick Faircloth
Yes...if we're really going to come to a well-founded conclusion on the
matter, then the facts will have to be studied...I just made a poor analogy
to the original HTML security issue, along with a pet peeve comment and it
started an entire debate, which is fruitless without facts.  I should have
known better than to throw out a comment and not expect a debate that ended
up with the necessity of providing proof for a perspective...boy, this group
loves to talk, or type, rather...  :o)

Rick

-Original Message-
From: Jochem van Dieten [mailto:[EMAIL PROTECTED] 
Sent: Friday, May 26, 2006 12:47 PM
To: CF-Talk
Subject: Re: Any reason why a file field can be submitted back to the page
it's on?

Rick Faircloth wrote:
 What he's throwing in is not logical, but illogical, from a common 
 sense point of view.
 
 But we shouldn't be hypothesizing...that proves nothing.

Are you suggesting we all go get traffic accidents so we have some facts
instead of a hypothesis? :)

Jochem





~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241607
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


CFOpenChat Updates

2006-05-26 Thread Rick Root
I've found a bit of time to make the conversion from cfajax to ajaxCFC 
for my chat application.

I'd love it if everyone came to check out the demo before I released the 
new beta 0.95

I've made some other modifications to it to make it easier to implement, 
and have made the idle watcher better.. no need to run scheduled tasks 
or a gateway to handle room cleanup.

Come on in!  I'll be here for a bit.

http://www.opensourcecf.com/cfopenchat/demo/

I'd especially like to see a few Mac people come in, and maybe IE 7... 
I've tested it in IE6 and Firefox on Windows.

Rick

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241608
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: SOLVED Re: Adobe partnerships?

2006-05-26 Thread Bryan Stevenson
 And?  My boss is interested in this, too.
 

Oh sureNOW somebody cares...hehe ;-)

http://spectra15.macromedia.com/overview/na_requirements.cfm

Cheers

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241609
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Using CFXML to Make a Log File

2006-05-26 Thread Ben Dyer
This seems like a simple problem but I can't seem to find an adequate
answer.  I want to create a log file that I can use to monitor
different events on a web site using CFXML to create RSS feeds.

In other words, I want to create a log file and then when one of these
events occurs, prepend it to the list of items in the RSS file and
then delete the last one so it maintains a file that contains the 10
(or 50 or 100 or whatever I end up deciding on) most recent events.

However, I can't find an easy way to just delete the last item and
prepend that new item at the front of the file.

I mean, I guess I could loop through all 100 items and renumber them
(e.g., set the values from item 99 to item 100, set item 98 to
item 99, etc.) but that seems very inefficient.

Does anybody have any suggestions?  I hope I'm explaining myself well enough.

Thanks in advance for any help.

--Ben

-- 
Radical Bender
http://www.radicalbender.com/

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241610
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: activedit and FireFox?

2006-05-26 Thread Mark A Kruger
Ah... Ok scratch my snide comment and substitute pocket protectors and
twinkies for ear buds and a latte (ha)... 

-Original Message-
From: Jochem van Dieten [mailto:[EMAIL PROTECTED] 
Sent: Friday, May 26, 2006 11:30 AM
To: CF-Talk
Subject: Re: activedit and FireFox?

Mark A Kruger wrote:
 
 Congrats - you found the only BSD only intranet in the entire world 
 to work for...

There are plenty of Mac-only intranets, and as soon as they complete
migration to OS X they become BSD-only :)

Jochem



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241611
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Any reason why a file field can be submitted back to the page it's on?

2006-05-26 Thread Crow T. Robot
That nuthin', you should join cf-comm.  :)

Rick Faircloth wrote:
 Yes...if we're really going to come to a well-founded conclusion on the
 matter, then the facts will have to be studied...I just made a poor analogy
 to the original HTML security issue, along with a pet peeve comment and it
 started an entire debate, which is fruitless without facts.  I should have
 known better than to throw out a comment and not expect a debate that ended
 up with the necessity of providing proof for a perspective...boy, this group
 loves to talk, or type, rather...  :o)
 
 Rick
 
 -Original Message-
 From: Jochem van Dieten [mailto:[EMAIL PROTECTED] 
 Sent: Friday, May 26, 2006 12:47 PM
 To: CF-Talk
 Subject: Re: Any reason why a file field can be submitted back to the page
 it's on?
 
 Rick Faircloth wrote:
 What he's throwing in is not logical, but illogical, from a common 
 sense point of view.

 But we shouldn't be hypothesizing...that proves nothing.
 
 Are you suggesting we all go get traffic accidents so we have some facts
 instead of a hypothesis? :)
 
 Jochem
 
 
 
 
 
 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241612
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Using CFXML to Make a Log File

2006-05-26 Thread Ian Skinner
Does anybody have any suggestions?  I hope I'm explaining myself well enough.

Thanks in advance for any help.

--Ben

To do what you want, you are going to have to load the file process the data in 
memory then re-write the file.  

If you can look at your file as a list, with some kind of delimitating 
character(s) that only delimit the entry, then you could probably use some of 
the list functions to do what you want.  Things like listFirst(), listLast(), 
listRest() and listGetAt() would probably help.




--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

-
| 1 |   |
-  Binary Soduko
|   |   |
-
 
C code. C code run. Run code run. Please!
- Cynthia Dunning

Confidentiality Notice:  This message including any
attachments is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the
intended recipient, please contact the sender and
delete any copies of this message. 




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241613
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Data modelling tool

2006-05-26 Thread Dawson, Michael
I use Embarcadero's ER/Studio.  Pricey, but well worth it.

MS Visio does a decent job, I hear.

M!ke 

-Original Message-
From: Jason Rogoz [mailto:[EMAIL PROTECTED] 
Sent: Friday, May 26, 2006 9:42 AM
To: CF-Talk
Subject: Data modelling tool

Just wanted to find out what data modelling tool everyone was using,
I've used Erwin in the past but the company i'm with now doesn't have a
license and i'm not sure getting a license will be that easy.  I'm
looking for one that will create a script to create the database in SQL
Server
 
Thanks  


Jason Rogoz
Programmer / Analyst

Zoom Communications Inc.
Calgary, Alberta, Canada

Office: (403) 229-2511
Fax: (403) 229-4211
Toll Free: 1-866-698-8932

www.zoomcom.ca http://www.zoomcom.ca/ 
 




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241614
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Using CFXML to Make a Log File

2006-05-26 Thread Josh Nathanson
You could probably use XmlChildPos and ArrayDeleteAt/ArrayInsertAt in some 
combination - check the docs for specific usage.

-- Josh


- Original Message - 
From: Ben Dyer [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Friday, May 26, 2006 10:35 AM
Subject: Using CFXML to Make a Log File


 This seems like a simple problem but I can't seem to find an adequate
 answer.  I want to create a log file that I can use to monitor
 different events on a web site using CFXML to create RSS feeds.

 In other words, I want to create a log file and then when one of these
 events occurs, prepend it to the list of items in the RSS file and
 then delete the last one so it maintains a file that contains the 10
 (or 50 or 100 or whatever I end up deciding on) most recent events.

 However, I can't find an easy way to just delete the last item and
 prepend that new item at the front of the file.

 I mean, I guess I could loop through all 100 items and renumber them
 (e.g., set the values from item 99 to item 100, set item 98 to
 item 99, etc.) but that seems very inefficient.

 Does anybody have any suggestions?  I hope I'm explaining myself well 
 enough.

 Thanks in advance for any help.

 --Ben

 -- 
 Radical Bender
 http://www.radicalbender.com/

 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241615
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Any reason why a file field can be submitted back to the page it's on?

2006-05-26 Thread Rick Faircloth
I'd love to, but I'm afraid I'd get nothing done because I'd want to join in
too much!  :o)

Rick


-Original Message-
From: Crow T. Robot [mailto:[EMAIL PROTECTED] 
Sent: Friday, May 26, 2006 1:38 PM
To: CF-Talk
Subject: Re: Any reason why a file field can be submitted back to the page
it's on?

That nuthin', you should join cf-comm.  :)

Rick Faircloth wrote:
 Yes...if we're really going to come to a well-founded conclusion on 
 the matter, then the facts will have to be studied...I just made a 
 poor analogy to the original HTML security issue, along with a pet 
 peeve comment and it started an entire debate, which is fruitless 
 without facts.  I should have known better than to throw out a comment 
 and not expect a debate that ended up with the necessity of providing 
 proof for a perspective...boy, this group loves to talk, or type, 
 rather...  :o)
 
 Rick
 
 -Original Message-
 From: Jochem van Dieten [mailto:[EMAIL PROTECTED]
 Sent: Friday, May 26, 2006 12:47 PM
 To: CF-Talk
 Subject: Re: Any reason why a file field can be submitted back to the 
 page it's on?
 
 Rick Faircloth wrote:
 What he's throwing in is not logical, but illogical, from a common 
 sense point of view.

 But we shouldn't be hypothesizing...that proves nothing.
 
 Are you suggesting we all go get traffic accidents so we have some 
 facts instead of a hypothesis? :)
 
 Jochem
 
 
 
 
 
 



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241616
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Finding matching values in a structure?

2006-05-26 Thread Nick Han
StructFindValue(us,62|-213) returns an array of match instances, so
you cannot evaluate it in an if statement like that.

Instead, first check for StructFindValue returned value is an array and
loop through it if you had than nested structures.

cfset us = StructNew()
cfset us[andy] = 62|-213
cfset us[jones] = 207|-86
cfset us[cherry] = 42|-220

cfset result=StructFindValue(us,62|-213,ALL)

cfoutput
cfloop from=1 to=#ArrayLen(result)# index=i
 #result[i].key#br
/cfloop
/cfoutput

-Original Message-
From: Andy Matthews [mailto:[EMAIL PROTECTED] 
Sent: Friday, May 26, 2006 9:59 AM
To: CF-Talk
Subject: Finding matching values in a structure?

I've got a structure containing coordinates for a grid. I've named each
line
for the person who should appear at those coordinates. I've found a
function
called StructFindValue() that says it can do what I need, but
everytime
I try to use it, I get an error.

According to the docs it Searches recursively through a substructure of
nested arrays, structures, and other elements for structures with values
that match the search key in the value parameter..

It says that it returns An array that contains structures with values
that
match the search key value. If none are found, returns an array of size
0.

I determined that I can't use it in a CFIF statement because it returns
an
array. So how would I go about finding a key containing the value?
Here's
my code listed below:

cfset us = StructNew()
cfset us[andy] = 62|-213
cfset us[jones] = 207|-86
cfset us[cherry] = 42|-220

cfdump var=#StructFindValue(us,62|-213)#

cfif StructFindValue(us,62|-213,ALL)
gotcha
/cfif

!//--
andy matthews
web developer
certified advanced coldfusion programmer
ICGLink, Inc.
[EMAIL PROTECTED]
615.370.1530 x737
--//-




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241617
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFOpenChat Updates

2006-05-26 Thread Nick Tong - TalkWebSolutions.co.uk
Hi Rick,

I'm getting an initialized failed error.  FF 1.5.03 Win xp :(

I suspect though that it's because i'm connecting via 3g and the data
transfer rate it cr*p!

On 26/05/06, Rick Root [EMAIL PROTECTED] wrote:
 I've found a bit of time to make the conversion from cfajax to ajaxCFC
 for my chat application.

 I'd love it if everyone came to check out the demo before I released the
 new beta 0.95

 I've made some other modifications to it to make it easier to implement,
 and have made the idle watcher better.. no need to run scheduled tasks
 or a gateway to handle room cleanup.

 Come on in!  I'll be here for a bit.

 http://www.opensourcecf.com/cfopenchat/demo/

 I'd especially like to see a few Mac people come in, and maybe IE 7...
 I've tested it in IE6 and Firefox on Windows.

 Rick

 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241618
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


What versions of Oracle does 6.1 support?

2006-05-26 Thread Stacy Young
Hard to decipher off the Adobe site. With latest patches does it support beyond 
10g?

-- 
WARNING
---
This electronic message and its attachments may contain confidential, 
proprietary or legally privileged information, which is solely for the use of 
the intended recipient.  No privilege or other rights are waived by any 
unintended transmission or unauthorized retransmission of this message.  If you 
are not the intended recipient of this message, or if you have received it in 
error, you should immediately stop reading this message and delete it and all 
attachments from your system.  The reading, distribution, copying or other use 
of this message or its attachments by unintended recipients is unauthorized and 
may be unlawful.  If you have received this e-mail in error, please notify the 
sender.

AVIS IMPORTANT
--
Ce message électronique et ses pièces jointes peuvent contenir des 
renseignements confidentiels, exclusifs ou légalement privilégiés destinés au 
seul usage du destinataire visé.  L'expéditeur original ne renonce à aucun 
privilège ou à aucun autre droit si le présent message a été transmis 
involontairement ou s'il est retransmis sans son autorisation.  Si vous n'êtes 
pas le destinataire visé du présent message ou si vous l'avez reçu par erreur, 
veuillez cesser immédiatement de le lire et le supprimer, ainsi que toutes ses 
pièces jointes, de votre système.  La lecture, la distribution, la copie ou 
tout autre usage du présent message ou de ses pièces jointes par des personnes 
autres que le destinataire visé ne sont pas autorisés et pourraient être 
illégaux.  Si vous avez reçu ce courrier électronique par erreur, veuillez en 
aviser l'expéditeur.


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241619
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: What versions of Oracle does 6.1 support?

2006-05-26 Thread Dave Watts
 Hard to decipher off the Adobe site. With latest patches does 
 it support beyond 10g?

The DataDirect drivers available as a CF 7 hot fix on the Adobe site can be
applied to CFMX 6.1 as well as 7.x. They support up to 10g R2.

http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=42dcb10a

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241620
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Clustering and CFMX 7

2006-05-26 Thread Dave Watts
 With CFMX 7 clustering, can you copy application and session 
 variables between servers including sessions or applications 
 that are cfcs?

No, you can't synchronize session variables that contain CFC instances.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241621
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Passing a query string as a single url variable

2006-05-26 Thread Christophe Maso
Trying to pass a custom query string to a template through the URL, example 
(assume all inside cfoutput tags):

cfset qrystr=name=Janeeyes=brownhair=blondnumber=2125551234
Here is the qrystr encoded: #URLEncodedFormat(qrystr)#br
a 
href=http://www.hfdkldf.com/main.cfm?action=saveinfoqrystr=#URLEncodedFormat(qrystr)#save
 her info/a

Testing this out, I'm seeing that the second line's output indeed shows qrystr 
with = and  replaced by %3D and %26, respectively. However, when I 
mouseover the link on line 3 and look at the URL in the status bar, I see the 
link's url does not have qrystr encoded. So, the receiving template is going to 
see qrystr only as name=Jane, and not the full string. How can I pass qrystr 
in the URL so that it remains encoded and will be received with it's complete 
value?

I could use the replace function to custom encode qrystr myself, and then 
decode it at the receiving template, but I thought the whole point of a 
function like URLEncodedFormat was to avoid having to do that.

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241622
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Passing a query string as a single url variable

2006-05-26 Thread Ian Skinner
So, the receiving template is going to see qrystr only as name=Jane, and not 
the full string. How can I pass qrystr in the URL so that it remains encoded 
and will be received with it's complete value?

I don't think this is true.  I think the status is just decoding the url for 
the status display.  If you submit to your receiving page and output 
url.querystr I suspect you will get the entire string you desire.


--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

-
| 1 |   |
-  Binary Soduko
|   |   |
-
 
C code. C code run. Run code run. Please!
- Cynthia Dunning

Confidentiality Notice:  This message including any
attachments is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the
intended recipient, please contact the sender and
delete any copies of this message. 




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241623
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Passing a query string as a single url variable

2006-05-26 Thread WebMistress
Funny but when I mouse over it has it encoded.  Here's the source of my output
page.

Here is the qrystr encoded:
name%3DJane%26eyes%3Dbrown%26hair%3Dblond%26number%3D2125551234br a
href=http://www.hfdkldf.com/main.cfm?action=saveinfoqrystr=name%3DJane%26eyes%
3Dbrown%26hair%3Dblond%26number%3D2125551234save her info/a

Thank you,
Katrina Chapman
Center Manager
Whittier Community Center
435-753-9008
 

 -Original Message-
 From: Christophe Maso [mailto:[EMAIL PROTECTED] 
 Sent: Friday, May 26, 2006 12:26 PM
 To: CF-Talk
 Subject: Passing a query string as a single url variable
 
 Trying to pass a custom query string to a template through 
 the URL, example (assume all inside cfoutput tags):
 
 cfset qrystr=name=Janeeyes=brownhair=blondnumber=2125551234
 Here is the qrystr encoded: #URLEncodedFormat(qrystr)#br a 
 href=http://www.hfdkldf.com/main.cfm?action=saveinfoqrystr=#
URLEncodedFormat(qrystr)#save her info/a
 
 Testing this out, I'm seeing that the second line's output 
 indeed shows qrystr with = and  replaced by %3D and 
 %26, respectively. However, when I mouseover the link on 
 line 3 and look at the URL in the status bar, I see the 
 link's url does not have qrystr encoded. So, the receiving 
 template is going to see qrystr only as name=Jane, and not 
 the full string. How can I pass qrystr in the URL so that it 
 remains encoded and will be received with it's complete value?
 
 I could use the replace function to custom encode qrystr 
 myself, and then decode it at the receiving template, but I 
 thought the whole point of a function like URLEncodedFormat 
 was to avoid having to do that.
 
 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241624
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Passing a query string as a single url variable

2006-05-26 Thread Ken Ferguson
It seems to be working as you'd expect. The following code yields the 
following results:
cfif isDefined(url.action)cfdump var=#url#/cfif
cfoutput
cfset qrystr=name=Janeeyes=brownhair=blondnumber=2125551234
Here is the qrystr encoded: #URLEncodedFormat(qrystr)#br
a 
href=test.cfm?action=saveinfoqrystr=#URLEncodedFormat(qrystr)#save 
her info/a
/cfoutput

struct
ACTION  saveinfo
QRYSTR  name=Janeeyes=brownhair=blondnumber=2125551234



Ken Ferguson
214.636.6126
[EMAIL PROTECTED]

I'm currently in the market for any available project work.
Experience, knowledge and strong references I can
certainly provide.




Ian Skinner wrote:
 So, the receiving template is going to see qrystr only as name=Jane, and 
 not the full string. How can I pass qrystr in the URL so that it remains 
 encoded and will be received with it's complete value?

 I don't think this is true.  I think the status is just decoding the url for 
 the status display.  If you submit to your receiving page and output 
 url.querystr I suspect you will get the entire string you desire.


 --
 Ian Skinner
 Web Programmer
 BloodSource
 www.BloodSource.org
 Sacramento, CA

 -
 | 1 |   |
 -  Binary Soduko
 |   |   |
 -
  
 C code. C code run. Run code run. Please!
 - Cynthia Dunning

 Confidentiality Notice:  This message including any
 attachments is for the sole use of the intended
 recipient(s) and may contain confidential and privileged
 information. Any unauthorized review, use, disclosure or
 distribution is prohibited. If you are not the
 intended recipient, please contact the sender and
 delete any copies of this message. 




 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241625
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


That netflix sort thing, from your Queue

2006-05-26 Thread Jeff Small
Does anyone here netflix? If you do, take a look at your queue.

Let's say for instance, you have ten items in your queue, and over on the far 
left, there's a text field that contains your sort order for your queue. You 
might want to move 7 up to number 3. Now when you do that...

How does it know how to fix the rest of the orders? Now here's an even better 
part...you can sort all OVER the list. You can make number 3 into number 7, and 
number 7 into number 8, then make 2 into 10then click sort and they're 
all correct.

How does it know how to fix all the other ones? 

Better yet, how would you do this in CF?

My thinking has been, okay, sort order is store in the table, but you have to 
temporarily store all of that into a struct IF AND ONLY IF the user click the 
update my order button, then somehow manipulate the struct, get all the 
orders right, THEN perhaps loop thru the struct updating each key with the new 
sort order, then proceed with the query for the new sort order and display that 
new sort order appropriately...

I mean, am I even CLOSE? Has anyone done one of those magical automatically 
sorting netflix queu type orders?


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241626
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFOpenChat Updates

2006-05-26 Thread Rick Root
Okay, I fixed some bugs and such .. thanks for everyone who came in and 
helped me out

0.95b is now available for download from CFOpen

http://cfopen.org/frs/?group_id=88

rick

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241627
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


trigger a remote form - RE: Passing a query string as a single url variable -

2006-05-26 Thread Steve Kahn
This is SOT but,
I need to trigger a form on a different host by calling
the response page using the full url
i.e
http://www.domain.com/subscribeResponse1.cfm?email=emailaddresslistid=1

Is there a way to do this behind the scenes without the user taking direct
action or attach it in another manner?






-Original Message-
From: Ken Ferguson [mailto:[EMAIL PROTECTED]
Sent: Friday, May 26, 2006 2:57 PM
To: CF-Talk
Subject: Re: Passing a query string as a single url variable


It seems to be working as you'd expect. The following code yields the
following results:
cfif isDefined(url.action)cfdump var=#url#/cfif
cfoutput
cfset qrystr=name=Janeeyes=brownhair=blondnumber=2125551234
Here is the qrystr encoded: #URLEncodedFormat(qrystr)#br
a
href=test.cfm?action=saveinfoqrystr=#URLEncodedFormat(qrystr)#save
her info/a
/cfoutput

struct
ACTION  saveinfo
QRYSTR  name=Janeeyes=brownhair=blondnumber=2125551234



Ken Ferguson
214.636.6126
[EMAIL PROTECTED]

I'm currently in the market for any available project work.
Experience, knowledge and strong references I can
certainly provide.




Ian Skinner wrote:
 So, the receiving template is going to see qrystr only as name=Jane, and
not the full string. How can I pass qrystr in the URL so that it remains
encoded and will be received with it's complete value?

 I don't think this is true.  I think the status is just decoding the url
for the status display.  If you submit to your receiving page and output
url.querystr I suspect you will get the entire string you desire.


 --
 Ian Skinner
 Web Programmer
 BloodSource
 www.BloodSource.org
 Sacramento, CA

 -
 | 1 |   |
 -  Binary Soduko
 |   |   |
 -

 C code. C code run. Run code run. Please!
 - Cynthia Dunning

 Confidentiality Notice:  This message including any
 attachments is for the sole use of the intended
 recipient(s) and may contain confidential and privileged
 information. Any unauthorized review, use, disclosure or
 distribution is prohibited. If you are not the
 intended recipient, please contact the sender and
 delete any copies of this message.








~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241628
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: That netflix sort thing, from your Queue

2006-05-26 Thread Adkins, Randy
There is a JS script for it. Look for Sort boxes or something like that.
Sorry do not recall the actual place but maybe on MattKruse.com or
something like that.
 

-Original Message-
From: Jeff Small [mailto:[EMAIL PROTECTED] 
Sent: Friday, May 26, 2006 3:19 PM
To: CF-Talk
Subject: That netflix sort thing, from your Queue

Does anyone here netflix? If you do, take a look at your queue.

Let's say for instance, you have ten items in your queue, and over on
the far left, there's a text field that contains your sort order for
your queue. You might want to move 7 up to number 3. Now when you do
that...

How does it know how to fix the rest of the orders? Now here's an even
better part...you can sort all OVER the list. You can make number 3 into
number 7, and number 7 into number 8, then make 2 into 10then click
sort and they're all correct.

How does it know how to fix all the other ones? 

Better yet, how would you do this in CF?

My thinking has been, okay, sort order is store in the table, but you
have to temporarily store all of that into a struct IF AND ONLY IF the
user click the update my order button, then somehow manipulate the
struct, get all the orders right, THEN perhaps loop thru the struct
updating each key with the new sort order, then proceed with the query
for the new sort order and display that new sort order appropriately...

I mean, am I even CLOSE? Has anyone done one of those magical
automatically sorting netflix queu type orders?




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241629
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


OT: Flash beeper

2006-05-26 Thread Rick Root
Anyone know how I cold be a little tiny flash movie that I could control 
via external javascript?

Essentially, I want a flash movie that beeps on command.

How would I do that?

rick

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241630
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: That netflix sort thing, from your Queue

2006-05-26 Thread Dante Orlando
On 5/26/06, Jeff Small [EMAIL PROTECTED] wrote:

 How does it know how to fix the rest of the orders? Now here's an even
 better part...you can sort all OVER the list. You can make number 3 into
 number 7, and number 7 into number 8, then make 2 into 10then click
 sort and they're all correct.


I may be wrong, but shouldn't it just be a matter of sorting an unordered
list of numbers (i.e. positions in your queue), using bubble sort or some
other such algorithm.

-dante


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241631
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Flash beeper

2006-05-26 Thread Ben Forta
You want to be able to trigger Flash events from JavaScript? That's exactly
what the FABridge does. See
http://labs.adobe.com/wiki/index.php/Flex_Framework:FABridge.

--- Ben
 

-Original Message-
From: Rick Root [mailto:[EMAIL PROTECTED] 
Sent: Friday, May 26, 2006 3:34 PM
To: CF-Talk
Subject: OT: Flash beeper

Anyone know how I cold be a little tiny flash movie that I could control via
external javascript?

Essentially, I want a flash movie that beeps on command.

How would I do that?

rick



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241632
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: That netflix sort thing, from your Queue

2006-05-26 Thread Matt Williams
Most likely they are using javascript and you should be able to find their
specific javascript. Long Live View Source!


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241633
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: That netflix sort thing, from your Queue

2006-05-26 Thread Jeff Small
 I may be wrong, but shouldn't it just be a matter of sorting an unordered
 list of numbers (i.e. positions in your queue), using bubble sort or some
 other such algorithm.

Nah, it seems more complex than that. I don't know, maybe it isn't, but I still 
don't see how you rectify the list before updating the database. I must be 
missing something. I know the re-order button updates your order, THEN has to 
at some point UPDATE that table with the new sort orders, otherwise, next time 
you come back, it's not sorted  correctly.

So I think it's doing all that validation I suppose, client side, then 
updating the DB with properly sorted orders. In other words, no duplicate 
orders, no missing orders, etc.




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241634
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Using CFXML to Make a Log File

2006-05-26 Thread Ben Dyer
OK, I've spent a lot of time looking at the documentation and it's
pretty much worthless to me.  Doesn't explain a thing.

The CFXML is creating a standard RSS file that you'd find on any blog.
 I want to insert a new item and *ALL* of its child elements above
any and all current item tags.  The code below is just what I'm
working off of.  At the moment I'm just trying to add a new
item.../item pair, ignoring the child elements.

CFXML VARIABLE=XMLFilerss version=2.0
channel
titleKindly Speaking - Test Log/title
linkCFOUTPUT#GlobalVars.SiteAddress#/CFOUTPUT/link
languageen-us/language
pubDateCFOUTPUT#DateFormat(Now(), DDD, D  )#
#TimeFormat(Now(), HH:mm:ss)#/CFOUTPUT +/pubDate
CFOUTPUTitem
titleNew Registration 
(#DateFormat(Now(),-MM-DD)#,
#TimeFormat(Now(), HH:mm:ss)#)/title
link#GlobalVars.SiteAddress#/link
pubDate#DateFormat(Now(), DDD, D  )# 
#TimeFormat(Now(),
HH:mm:ss)# +/pubDate
guid#DateFormat(Now(), DDD, D  )# 
#TimeFormat(Now(),
HH:mm:ss)#/guid
description![CDATA[The user User (ID) did 
something on
#DateFormat(Now(),  D, )# at #TimeFormat(Now(),
HH:mm:ss)#.]]/description
/item/CFOUTPUT
/channel
/rss/CFXML

CFSCRIPT
ArrayInsertAt(XMLFile.rss.channel.item,1,XmlElemNew(XMLFile,item));
/CFSCRIPT

This is returning the error, The Coldfusion function [ArrayInsertAt]
is not supported on this object.

What am I missing?  I can't get an adequate explanation.

Please help!

--Ben

-- 
Radical Bender
http://www.radicalbender.com/

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241635
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Using CFXML to Make a Log File

2006-05-26 Thread Ben Dyer
OK, I've spent a lot of time looking at the documentation and it's pretty much 
worthless to me.  Doesn't explain a thing.

The CFXML is creating a standard RSS file that you'd find on any blog.  I want 
to insert a new item and *ALL* of its child elements above any and all 
current item tags.  The code below is just what I'm working off of.  At the 
moment I'm just trying to add a new item.../item pair, ignoring the child 
elements.

CFXML VARIABLE=XMLFilerss version=2.0
channel
titleKindly Speaking - Test Log/title
linkCFOUTPUT#GlobalVars.SiteAddress#/CFOUTPUT/link
languageen-us/language
pubDateCFOUTPUT#DateFormat(Now(), DDD, D  )# 
#TimeFormat(Now(), HH:mm:ss)#/CFOUTPUT +/pubDate
CFOUTPUTitem
titleNew Registration 
(#DateFormat(Now(),-MM-DD)#, #TimeFormat(Now(), HH:mm:ss)#)/title
link#GlobalVars.SiteAddress#/link
pubDate#DateFormat(Now(), DDD, D  )# 
#TimeFormat(Now(), HH:mm:ss)# +/pubDate
guid#DateFormat(Now(), DDD, D  )# 
#TimeFormat(Now(), HH:mm:ss)#/guid
description![CDATA[The user User (ID) did 
something on #DateFormat(Now(),  D, )# at #TimeFormat(Now(), 
HH:mm:ss)#.]]/description
/item/CFOUTPUT
/channel
/rss/CFXML

CFSCRIPT
ArrayInsertAt(XMLFile.rss.channel.item,1,XmlElemNew(XMLFile,item));
/CFSCRIPT

This is returning the error, The Coldfusion function [ArrayInsertAt] is not 
supported on this object.

What am I missing?  I can't get an adequate explanation.

Please help!

--Ben

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241636
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: trigger a remote form - RE: Passing a query string as a single url variable -

2006-05-26 Thread Ian Skinner
Is there a way to do this behind the scenes without the user taking direct 
action or attach it in another manner?


Not sure what you are trying to do, but a cflocation might be what you want.

cflocation url=http://www.google.com/search?q=Madonna;


--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

-
| 1 |   |
-  Binary Soduko
|   |   |
-
 
C code. C code run. Run code run. Please!
- Cynthia Dunning

Confidentiality Notice:  This message including any
attachments is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the
intended recipient, please contact the sender and
delete any copies of this message. 




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241646
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: how to trigger a form remotely

2006-05-26 Thread Kevin Aebig
Why not just re-create the form and post it yourself?

!k

-Original Message-
From: Steve Kahn [mailto:[EMAIL PROTECTED] 
Sent: May 26, 2006 2:36 PM
To: CF-Talk
Subject: how to trigger a form remotely

I need to trigger a form on a different host by calling
the response page using the full url
i.e
http://www.domain.com/subscribe.cfm?email=emailaddresslistid=1




-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.394 / Virus Database: 268.7.2/349 - Release Date: 5/26/2006




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241649
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: how to trigger a form remotely

2006-05-26 Thread Steve Kahn
I need to pass an form.email to an action page from site one to site two.

I want to grab the email from site-A's login and pass it site-B's response
page that will check it for duplicates and enter into db.

I am trying to trigger a form on a different host by calling
the response page using the full url
i.e
http://www.domain.com/subscribeResponse1.cfm?email=emailaddresslistid=1


-Original Message-
From: Alan Rother [mailto:[EMAIL PROTECTED]
Sent: Friday, May 26, 2006 4:47 PM
To: CF-Talk
Subject: Re: how to trigger a form remotely


What do you mean by trigger a form?

Are you trying to prepopulate the form with info from the URL?

If so, you will have to be able to modify the form itself, and therefore you
will need to have access to it's code. If you do not have access or
permission to modify the code that controls the form, you can't do it.

--
Alan Rother
Macromedia Certified Advanced ColdFusion MX 7 Developer




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241650
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: how to trigger a form remotely

2006-05-26 Thread Steve Kahn
I need to pass an form.email to an action page from site one to site two.

I want to grab the email from site-A's login and pass it site-B's response
page that will check it for duplicates and enter into db.

I am trying to trigger a form on a different host by calling
the response page using the full url
i.e
http://www.domain.com/subscribeResponse1.cfm?email=emailaddresslistid=1




-Original Message-
From: Alan Rother [mailto:[EMAIL PROTECTED]
Sent: Friday, May 26, 2006 4:47 PM
To: CF-Talk
Subject: Re: how to trigger a form remotely


What do you mean by trigger a form?

Are you trying to prepopulate the form with info from the URL?

If so, you will have to be able to modify the form itself, and therefore you
will need to have access to it's code. If you do not have access or
permission to modify the code that controls the form, you can't do it.

--
Alan Rother
Macromedia Certified Advanced ColdFusion MX 7 Developer




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241651
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: how to trigger a form remotely

2006-05-26 Thread Ian Skinner
I am trying to trigger a form on a different host by calling the response page 
using the full url i.e 
http://www.domain.com/subscribeResponse1.cfm?email=emailaddresslistid=1


You create a form or equivalent in your site A, but in the form's action 
parameter you provide the URL to site B's action page.

If you want this to all happen behind the scenes without leaving site A, then 
look into the CFHTTP tag.  It can post the data to site B and retrieve the 
results for action by site A


--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

-
| 1 |   |
-  Binary Soduko
|   |   |
-
 
C code. C code run. Run code run. Please!
- Cynthia Dunning

Confidentiality Notice:  This message including any
attachments is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the
intended recipient, please contact the sender and
delete any copies of this message. 




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241652
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


  1   2   >