Re: Dynamic

2000-08-14 Thread Steve Wach


Try this, it's worked for me in the past




 








This should give inputs Qty1 to Qty6 with the values past from the
previous page.

Hope this works.



Steve Wach
Software Engineer
Canadian Web Design & Consulting Inc.

A: 701-281 McDermot Avenue (McDermot & King)
P: 204-946-5155
C: 204-228-0477
F: 204-946-5156
E: [EMAIL PROTECTED]
W: http://www.cdnwebdesign.com




- Original Message -
From: Neil Robinson <[EMAIL PROTECTED]>
To: CFList <[EMAIL PROTECTED]>
Sent: Monday, August 14, 2000 10:41 AM
Subject: Dynamic


> Sorry if this has been covered before.
>
> I need a way of reading form fields on a dynamic basis through a loop.
>
> Ie.  Form fields: Qty1 - Qty6, Main1 - Main6, Block1 - Block6 etc etc
>
> Rather than having 6 almost identical blocks of code to handle each set of
> fields I'd like to just run through a CFLOOP 6 times.  The fields are
> created in this way on the previous template (see below) but I'm unsure of
> the syntax to actually read the fields on the subsequent (if it is
> possible).
>
> 
> .etc
>
> Any ideas?
>
> Neil Robinson
>
> --

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

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



RE: Dynamic

2000-08-14 Thread Lennon Chris Contractor SA-ALC/ADTIC

I've done this before.  Here's how:



...


-Original Message-
From: Neil Robinson [mailto:[EMAIL PROTECTED]]
Sent: Monday, August 14, 2000 10:41 AM
To: CFList
Subject: Dynamic


Sorry if this has been covered before.

I need a way of reading form fields on a dynamic basis through a loop.

Ie.  Form fields: Qty1 - Qty6, Main1 - Main6, Block1 - Block6 etc etc

Rather than having 6 almost identical blocks of code to handle each set of
fields I'd like to just run through a CFLOOP 6 times.  The fields are
created in this way on the previous template (see below) but I'm unsure of
the syntax to actually read the fields on the subsequent (if it is
possible).


.etc

Any ideas?

Neil Robinson


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



RE: Dynamic

2000-08-14 Thread Philip Arnold - ASP

> I need a way of reading form fields on a dynamic basis through a loop.
>
> Ie.  Form fields: Qty1 - Qty6, Main1 - Main6, Block1 - Block6 etc etc
>
> Rather than having 6 almost identical blocks of code to handle each set of
> fields I'd like to just run through a CFLOOP 6 times.  The fields are
> created in this way on the previous template (see below) but I'm unsure of
> the syntax to actually read the fields on the subsequent (if it is
> possible).
>
> 
>   .etc

If you're gonna use loops, use 2 loops






Seeing as the fields are dynamic, you can read them using Evaluate();



This field is empty




Or to set this field to be something;


Variable name flexibility is a wonderful thing

Philip Arnold
ASP Multimedia Limited
T: +44 (0)20 8680 1133

"Websites for the real world"

**
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.
**


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



Re: dynamic

2002-07-26 Thread Brian Scandale

Sorry, I was too terse with my question... I'll be a bit more verbose here. 

 section of the html 
returned by CF to a browser making a request. I use it all the time to put in 
clientside javascript.

My issue is how to do this to a body tag from deep inside a lot of coldfusion code. I 
am using the FuseBox technique of running all requests through a toplevel index.cfm 
file and having that toplevel cfm routine pass control to sublevels. The toplevel 
index.cfm is what has all the typical opening stuff...  like the opening html tag, the 
head tags, the title tags, etc... it is not until later after the index.cfm has called 
the sub routines, (or fuses in fusedoc terminology) does the code even know that it 
would need a specific entry in the body tag. 

I know cfheader takes care of the  tags how about the body?

I'm running CFMX now.

Thanks again,
Brian





At 01:40 PM 7/26/02, you wrote:
>First, you must set DynamicContentVariable to some value
>
>
>
>Then you must output the variable using cold fusion
>
>
>
>Finally, it must be saved as a .cfm file (or a file type handled by the Cold Fusion 
>Server)
>
>(Hope this is what you were asking)
>Jerry Johnson
>
 [EMAIL PROTECTED] 07/26/02 04:17PM >>>
>How does one go about putting dynamic content into the body tag?
>
>you know... perhaps something like:
>
>
>
>thanks
>Brian
>
>
>
__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: dynamic

2002-07-26 Thread Van Vliet, Scott

What I have done in the past is create a Request variable to store
information about my main HTML tags in an action, and then output them in my
display file (Fusebox):



function initHTML() {
Request.HTML = StructNew();
Request.HTML.head = StructNew();
Request.HTML.body = StructNew();
Request.HTML.body.attributes = StructNew();
}
function getHTMLAttributes(tag) {
var output = "";
var tagStruct = Request.HTML[tag];
for (attrib in tagStruct.attributes) {
output = output & " " & lcase(attrib) & "=""" &
tagStruct.attributes[attrib] & ;
}
return output;
}




initHTML();
Request.HTML.head.title = "This is the HTML Title";
Request.HTML.body.attributes.bgcolor = "##ff";
Request.HTML.body.attributes.topmargin = 0;
Request.HTML.body.attributes.leftmargin = 0;
Request.HTML.body.attributes.onload = "doOnLoad()";





#Request.HTML.head.title#












Hope this helps!

--
Scott Van Vliet
Sempra Energy
555 W. 5th St., 21st Floor
Los Angeles, CA 90013
Tel > 213.244.5205
Email > [EMAIL PROTECTED]

"Hello Stupid, and welcome to your crappy computer."
- Strong Bad, HomestarRunner.com






> -Original Message-
> From: Brian Scandale [mailto:[EMAIL PROTECTED]]
> Sent: Friday, July 26, 2002 1:18 PM
> To: CF-Talk
> Subject: dynamic 
> 
> 
> How does one go about putting dynamic content into the body tag?
> 
> you know... perhaps something like:
> 
> 
> 
> thanks
> Brian
> 
> 
__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: dynamic

2002-07-26 Thread Jerry Johnson

First, you must set DynamicContentVariable to some value



Then you must output the variable using cold fusion



Finally, it must be saved as a .cfm file (or a file type handled by the Cold Fusion 
Server)

(Hope this is what you were asking)
Jerry Johnson

>>> [EMAIL PROTECTED] 07/26/02 04:17PM >>>
How does one go about putting dynamic content into the body tag?

you know... perhaps something like:



thanks
Brian


__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: dynamic

2002-07-26 Thread S . Isaac Dealey

You need to move your  tag down into the layout file ...

> Sorry, I was too terse with my question... I'll be a bit more verbose
> here.

>  section of
> the html returned by CF to a browser making a request. I use it all the
> time to put in clientside javascript.

I thought this was  ...  is for http headers isn't it?
Aren't they 2 different things?

Isaac Dealey
Certified Advanced ColdFusion Developer

www.turnkey.to
954-776-0046
__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: dynamic

2002-02-24 Thread Steve Oliver

Use style tags (css)

if(this > that){
document.forms.formname.textname.style.backgroundColor = 'red';
document.forms.formname.textname.style.color = 'white';
}

I'm pretty sure style.backgroundColor works on NS and IE.

_
steve oliver
senior internet developer
atnet solutions, inc.
http://www.atnetsolutions.com


-Original Message-
From: Brian Scandale [mailto:[EMAIL PROTECTED]] 
Sent: Sunday, February 24, 2002 6:30 PM
To: CF-Talk
Subject: dynamic http://www.pennyhost.com/redirect.cfm?adcode=coldfusionb
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: dynamic

2002-02-24 Thread Brian Scandale

Works great Steve... thanks!

FYI: Netscape 4.7 chokes with a javascript error.
 (frm.TotalRejNeeded.style has no properties)




At 06:37 PM 2/24/02 -0500, you wrote:
>Use style tags (css)
>
>if(this > that){
>document.forms.formname.textname.style.backgroundColor = 'red';
>document.forms.formname.textname.style.color = 'white';
>}
>
>I'm pretty sure style.backgroundColor works on NS and IE.
>
>_
>steve oliver
>senior internet developer
>atnet solutions, inc.
>http://www.atnetsolutions.com
>
>
>-Original Message-
>From: Brian Scandale [mailto:[EMAIL PROTECTED]] 
>Sent: Sunday, February 24, 2002 6:30 PM
>To: CF-Talk
>Subject: dynamic 
>
>I have some forms where javascript is used to sum some user input text
>values and put the summation into one of the forms input text fields.
>
>When the sum exceeds some threshold I want the sum to appear as RED text
>-- or better yet RED background and WHITE text.
>
>I've seen this done with javascript but for the life of me cannot find
>an example. 
>
>Anyone know how this is done? 
>Or remembers a site where it is done?
>
>thanks,
>Brian
>
>
__
Get Your Own Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionb
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: dynamic

2002-02-25 Thread Costas Piliotis

For nutscrape, use .styles instead...  

-Original Message-
From: Brian Scandale [mailto:[EMAIL PROTECTED]] 
Sent: Sunday, February 24, 2002 4:50 PM
To: CF-Talk
Subject: RE: dynamic Use style tags (css)
>
>if(this > that){ document.forms.formname.textname.style.backgroundColor 
>= 'red'; document.forms.formname.textname.style.color = 'white';
>}
>
>I'm pretty sure style.backgroundColor works on NS and IE.
>
>_
>steve oliver
>senior internet developer
>atnet solutions, inc.
>http://www.atnetsolutions.com
>
>
>-Original Message-
>From: Brian Scandale [mailto:[EMAIL PROTECTED]]
>Sent: Sunday, February 24, 2002 6:30 PM
>To: CF-Talk
>Subject: dynamic 
>
>I have some forms where javascript is used to sum some user input text 
>values and put the summation into one of the forms input text fields.
>
>When the sum exceeds some threshold I want the sum to appear as RED 
>text
>-- or better yet RED background and WHITE text.
>
>I've seen this done with javascript but for the life of me cannot find 
>an example.
>
>Anyone know how this is done?
>Or remembers a site where it is done?
>
>thanks,
>Brian
>
>

__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Dynamic Arrays

2002-11-14 Thread Raymond Camden
Why not simply use bracket notation?



===
Raymond Camden, ColdFusion Jedi Master for Hire

Email: [EMAIL PROTECTED]
WWW  : www.camdenfamily.com/morpheus
Yahoo IM : morpheus

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

> -Original Message-
> From: Mark Kecko [mailto:mark@;mediapost.com] 
> Sent: Thursday, November 14, 2002 10:04 AM
> To: CF-Talk
> Subject: Dynamic Arrays
> 
> 
> Can anybody tell me why this set to a dyanamically named 
> array won't work,
> is there a workaround?  I've tried ArraySet with the same 
> results.  IsArray
> and ArrayLen recognize it, but I can not Append or Insert items.  Any
> suggestions would be grand, thanks.
> 
> 
> 
> 
>   
>   
>ArrayAppend(Evaluate("Request.arrayOfIds_#theIndex#"),
> tentativeId)>
>   IsArray: 
> #IsArray(Evaluate("Request.arrayOfIds_#theIndex#"))#
>   temp: #temp#
>   ArrayLen: 
> #ArrayLen(Evaluate("Request.arrayOfIds_#theIndex#"))#
>   
> 
> 
> Mark Kecko
> Technology
> Mediapost Communications
> [EMAIL PROTECTED]
> 
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: Dynamic Arrays

2002-11-14 Thread Mark Kecko
Creating the array isn't the problem, adding items to it is.  Am I
misunderstanding your advice.  I changed my line that sets up the array to
bracket notation, still can't add to it.

_mark

-Original Message-
From: Raymond Camden [mailto:jedimaster@;macromedia.com]
Sent: Thursday, November 14, 2002 10:03 AM
To: CF-Talk
Subject: RE: Dynamic Arrays


Why not simply use bracket notation?



===
Raymond Camden, ColdFusion Jedi Master for Hire

Email: [EMAIL PROTECTED]
WWW  : www.camdenfamily.com/morpheus
Yahoo IM : morpheus

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

> -Original Message-
> From: Mark Kecko [mailto:mark@;mediapost.com]
> Sent: Thursday, November 14, 2002 10:04 AM
> To: CF-Talk
> Subject: Dynamic Arrays
>
>
> Can anybody tell me why this set to a dyanamically named
> array won't work,
> is there a workaround?  I've tried ArraySet with the same
> results.  IsArray
> and ArrayLen recognize it, but I can not Append or Insert items.  Any
> suggestions would be grand, thanks.
>
> 
>
> 
>   
>   
>ArrayAppend(Evaluate("Request.arrayOfIds_#theIndex#"),
> tentativeId)>
>   IsArray:
> #IsArray(Evaluate("Request.arrayOfIds_#theIndex#"))#
>   temp: #temp#
>   ArrayLen:
> #ArrayLen(Evaluate("Request.arrayOfIds_#theIndex#"))#
>   
> 
>
> Mark Kecko
> Technology
> Mediapost Communications
> [EMAIL PROTECTED]
>
>
>

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



Re: Dynamic Arrays

2002-11-14 Thread Stephen Moretti
> Why not simply use bracket notation?
> 
> 
> 

Heh heh...

I've started so I'll finish.

Your code works fine like this




   
   
   
   IsArray: #IsArray(Request["arrayOfIds_"&theIndex])#
   temp: #temp#
   ArrayLen: #ArrayLen(Request["arrayOfIds_"&theIndex])#
   


Regards

Stephen

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: Dynamic Arrays

2002-11-14 Thread Raymond Camden
You mean you can't do:

 ?

===
Raymond Camden, ColdFusion Jedi Master for Hire

Email: [EMAIL PROTECTED]
WWW  : www.camdenfamily.com/morpheus
Yahoo IM : morpheus

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

> -Original Message-
> From: Mark Kecko [mailto:mark@;mediapost.com] 
> Sent: Thursday, November 14, 2002 10:11 AM
> To: CF-Talk
> Subject: RE: Dynamic Arrays
> 
> 
> Creating the array isn't the problem, adding items to it is.  Am I
> misunderstanding your advice.  I changed my line that sets up 
> the array to
> bracket notation, still can't add to it.
> 
> _mark
> 
> -Original Message-
> From: Raymond Camden [mailto:jedimaster@;macromedia.com]
> Sent: Thursday, November 14, 2002 10:03 AM
> To: CF-Talk
> Subject: RE: Dynamic Arrays
> 
> 
> Why not simply use bracket notation?
> 
> 
> 
> ==
> =
> Raymond Camden, ColdFusion Jedi Master for Hire
> 
> Email: [EMAIL PROTECTED]
> WWW  : www.camdenfamily.com/morpheus
> Yahoo IM : morpheus
> 
> "My ally is the Force, and a powerful ally it is." - Yoda
> 
> > -Original Message-
> > From: Mark Kecko [mailto:mark@;mediapost.com]
> > Sent: Thursday, November 14, 2002 10:04 AM
> > To: CF-Talk
> > Subject: Dynamic Arrays
> >
> >
> > Can anybody tell me why this set to a dyanamically named
> > array won't work,
> > is there a workaround?  I've tried ArraySet with the same
> > results.  IsArray
> > and ArrayLen recognize it, but I can not Append or Insert 
> items.  Any
> > suggestions would be grand, thanks.
> >
> > 
> >
> > 
> > 
> > 
> >  > ArrayAppend(Evaluate("Request.arrayOfIds_#theIndex#"),
> > tentativeId)>
> > IsArray:
> > #IsArray(Evaluate("Request.arrayOfIds_#theIndex#"))#
> > temp: #temp#
> > ArrayLen:
> > #ArrayLen(Evaluate("Request.arrayOfIds_#theIndex#"))#
> > 
> > 
> >
> > Mark Kecko
> > Technology
> > Mediapost Communications
> > [EMAIL PROTECTED]
> >
> >
> >
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: Dynamic Arrays

2002-11-14 Thread Mark Kecko
Raymond, Stephen, I can't thank you enough!! _mark

-Original Message-
From: Raymond Camden [mailto:jedimaster@;macromedia.com]
Sent: Thursday, November 14, 2002 10:13 AM
To: CF-Talk
Subject: RE: Dynamic Arrays


You mean you can't do:

 ?

===
Raymond Camden, ColdFusion Jedi Master for Hire

Email: [EMAIL PROTECTED]
WWW  : www.camdenfamily.com/morpheus
Yahoo IM : morpheus

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

> -Original Message-
> From: Mark Kecko [mailto:mark@;mediapost.com]
> Sent: Thursday, November 14, 2002 10:11 AM
> To: CF-Talk
> Subject: RE: Dynamic Arrays
>
>
> Creating the array isn't the problem, adding items to it is.  Am I
> misunderstanding your advice.  I changed my line that sets up
> the array to
> bracket notation, still can't add to it.
>
> _mark
>
> -Original Message-
> From: Raymond Camden [mailto:jedimaster@;macromedia.com]
> Sent: Thursday, November 14, 2002 10:03 AM
> To: CF-Talk
> Subject: RE: Dynamic Arrays
>
>
> Why not simply use bracket notation?
>
> 
>
> ==
> =
> Raymond Camden, ColdFusion Jedi Master for Hire
>
> Email: [EMAIL PROTECTED]
> WWW  : www.camdenfamily.com/morpheus
> Yahoo IM : morpheus
>
> "My ally is the Force, and a powerful ally it is." - Yoda
>
> > -Original Message-
> > From: Mark Kecko [mailto:mark@;mediapost.com]
> > Sent: Thursday, November 14, 2002 10:04 AM
> > To: CF-Talk
> > Subject: Dynamic Arrays
> >
> >
> > Can anybody tell me why this set to a dyanamically named
> > array won't work,
> > is there a workaround?  I've tried ArraySet with the same
> > results.  IsArray
> > and ArrayLen recognize it, but I can not Append or Insert
> items.  Any
> > suggestions would be grand, thanks.
> >
> > 
> >
> > 
> > 
> > 
> >  > ArrayAppend(Evaluate("Request.arrayOfIds_#theIndex#"),
> > tentativeId)>
> > IsArray:
> > #IsArray(Evaluate("Request.arrayOfIds_#theIndex#"))#
> > temp: #temp#
> > ArrayLen:
> > #ArrayLen(Evaluate("Request.arrayOfIds_#theIndex#"))#
> > 
> > 
> >
> > Mark Kecko
> > Technology
> > Mediapost Communications
> > [EMAIL PROTECTED]
> >
> >
> >
>
>

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: Dynamic Insert

2003-02-26 Thread Everett, Al
Change:

#org_abbr#


To:

#org_abbr#


Then on your action page your Form.org_id field will be a comma-delimited
list of org_id's.


Then you can just do this:





INSERT INTO org_admin 
(
users_id,
org_id
)
VALUES
(
#form.users_id#,
'#i#'
)







> -Original Message-
> From: Jillian Carroll [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, February 26, 2003 9:53 AM
> To: CF-Talk
> Subject: Dynamic Insert
> 
> 
> I've been working on this for a while and I've created a test page
> before I move this over to my full form.
>  
> How can I create a loop that will allow my insert to work?
>  
> This is what I have:
>  
>   
>   
>   INSERT INTO org_admin (users_id, org_id)
>   VALUES (#form.users_id#,'#form.org_id#')
>   
>  
>  
>  
>  
>  
>  SELECT  * FROM  organizations ORDER BY org_abbr
>  
>  
>  
>  
>  
>  
>  
> 
> 
> 
> Please select the Lung Associations that this user is
> responsible for:
> 
> 
> 
> 
>
>  width="100%">
> 
> 
> 
> 
> 
> 
> 
>  maxrows="#Evaluate(end)#">
> 
> #org_abbr#
> 
> 
>   
>  
>  
>  
>  
> 
> 
> 
> 
>  
>  
>    
>   
>value="#url.id#">
>   
>   
>   
>  
>  
>  
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Dynamic Insert

2003-02-26 Thread Jillian Carroll
Al,

Thanks!  That gets me off on that part.

Next question:

I need to pull the values out so I have an 'update' form. You'll see
that I'm listing the variables to see if the right values are being
pulled from the db.  Only the first one is pulled.  Do I have to loop
through the list_org query somehow too?  I'm really very confused.

This is what I've got:





INSERT INTO org_admin 
(
users_id,
org_id
)
VALUES
(
#form.users_id#,
'#i#'
)








SELECT  * FROM organizations ORDER BY org_abbr



SELECT  org_admin.id AS org_id, * FROM org_admin







 



Please select the Lung
Associations that this user is responsible for:














#list.id#

#list_org.org_id#






#org_abbr#












 












> -Original Message-
> From: Everett, Al [mailto:[EMAIL PROTECTED] 
> Sent: February 26, 2003 9:04 AM
> To: CF-Talk
> Subject: RE: Dynamic Insert
> 
> 
> Change:
> 
> #org_abbr#  name="org_id" value="#list.id#">
> 
> To:
> 
>  />#org_abbr#
> 
> 
> Then on your action page your Form.org_id field will be a 
> comma-delimited list of org_id's.
> 
> 
> Then you can just do this:
> 
> 
>   
>   
>   
>   INSERT INTO org_admin 
>   (
>   users_id,
>   org_id
>   )
>   VALUES
>   (
>   #form.users_id#,
>   '#i#'
>   )
>   
>   
>   
> 
> 
> 
> 
> > -Original Message-
> > From: Jillian Carroll [mailto:[EMAIL PROTECTED]
> > Sent: Wednesday, February 26, 2003 9:53 AM
> > To: CF-Talk
> > Subject: Dynamic Insert
> > 
> > 
> > I've been working on this for a while and I've created a test page 
> > before I move this over to my full form.
> >  
> > How can I create a loop that will allow my insert to work?
> >  
> > This is what I have:
> >  
> >   
> >   
> >   INSERT INTO org_admin (users_id, org_id)
> >   VALUES (#form.users_id#,'#form.org_id#')
> >   
> >  
> >  
> >  
> >  
> >  
> >  SELECT  * FROM  organizations ORDER BY org_abbr
> >  
> >  
> >  
> >  
> >  
> &g

RE: Dynamic Insert

2003-02-26 Thread Everett, Al
I assume you mean this comparison:




You're not providing any sort of row reference for list_org, so you'll
always look at the first record.

This should give you what you want:



> -Original Message-
> From: Jillian Carroll [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, February 26, 2003 12:02 PM
> To: CF-Talk
> Subject: RE: Dynamic Insert
> 
> 
> Al,
> 
> Thanks!  That gets me off on that part.
> 
> Next question:
> 
> I need to pull the values out so I have an 'update' form. You'll see
> that I'm listing the variables to see if the right values are being
> pulled from the db.  Only the first one is pulled.  Do I have to loop
> through the list_org query somehow too?  I'm really very confused.
> 
> This is what I've got:
> 
>   
>   
>   
>datasource="#DSN#">
>   INSERT INTO org_admin 
>   (
>   users_id,
>   org_id
>   )
>   VALUES
>   (
>   #form.users_id#,
>   '#i#'
>   )
>   
>   
>   
>   
> 
>   
> 
>   
>   SELECT  * FROM organizations ORDER BY org_abbr
>   
> 
>   
>   SELECT  org_admin.id AS org_id, * FROM org_admin
>   
> 
>   
> 
>   
>   
>   
>    
>   
>width="100%">
>   
>   Please select the Lung
> Associations that this user is responsible for:
>   
>   
>   
>Records="#list.RecordCount#">
>   
>cellpadding="2" cellspacing="0" width="100%">
>   
>   
>from="1" to="3">
>   
>("start" & #LoopCount#)>
>#LoopCount#)>
>   
>startrow="#Evaluate(start)#" maxrows="#Evaluate(end)#">
>   #list.id#
>   
> #list_org.org_id#
>list_org.org_id EQ list.id>
>checked = "Yes">
>   
>checked = "No">
>   
>type="checkbox" value="#list.id#" name="org" checked=#checked# />
> #org_abbr#
>   
>   
>   
>   
>           
>   
>   
>   
>   
>   
>   
>   
>    
>   
>value="#url.id#">
>   
>   
>   
>   
>   
>   
> 
> 
> 
> 
> > -Original Message-
> > From: Everett, Al [mailto:[EMAIL PROTECTED] 
> > Sent: February 26, 2003 9:04 AM
> > To: CF-Talk
> > Subject: RE: Dynamic Insert
> > 
> > 
> > Change:
> > 
> >  />#org_abbr#  name="org_id" 
> value="#list.id#">
> > 
> > To:
> > 
> >  > />#org_abbr#
> > 
> > 
> > Then on your action page your Form.org_id field will be a 
> > comma-delimited list of org_id's.
> > 
> > 
> > Then you can just do this:
> > 
> > 
> > 

Re: dynamic IIf

2000-08-21 Thread Jamie Keane

The syntax should be IIF(condition,result1,result2)
where result1 occurs if condition is true and result2 occurs if condition is
false.

--
Jamie Keane
Programmer
SolutionMasters, Inc.
9111 Monroe Rd., Suite 100
Charlotte, NC  28270
www.solutionmasters.com
704.563.5559 x 228  Voice
704.849.9291  Fax
-Original Message-
From: Peter Benoit <[EMAIL PROTECTED]>
To: '[EMAIL PROTECTED]' <[EMAIL PROTECTED]>
Date: Monday, August 21, 2000 11:41 AM
Subject: dynamic IIf


>
>Having a hard time with this:
>
>
>
>Tried mixing things up a bit (quotes, pound signs) with no success.  Any
>suggestions?
>
>TIA,
>Pete
>
>---
---
>Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
>To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

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



RE: dynamic IIf

2000-08-21 Thread Peter Benoit

Well that's what I have

IIF(url.stuff IS "whatever"

then "something"

else "something else")

which is what my line of code essentially says.  Though it doesn't work :/

*  -Original Message-
*  From: Jamie Keane [mailto:[EMAIL PROTECTED]]
*  Sent: Monday, August 21, 2000 11:53 AM
*  To: [EMAIL PROTECTED]
*  Subject: Re: dynamic IIf
*  
*  
*  The syntax should be IIF(condition,result1,result2)
*  where result1 occurs if condition is true and result2 occurs 
*  if condition is
*  false.
*  
*  --
*  Jamie Keane
*  Programmer
*  SolutionMasters, Inc.
*  9111 Monroe Rd., Suite 100
*  Charlotte, NC  28270
*  www.solutionmasters.com
*  704.563.5559 x 228  Voice
*  704.849.9291  Fax
*  -Original Message-
*  From: Peter Benoit <[EMAIL PROTECTED]>
*  To: '[EMAIL PROTECTED]' <[EMAIL PROTECTED]>
*  Date: Monday, August 21, 2000 11:41 AM
*  Subject: dynamic IIf
*  
*  
*  >
*  >Having a hard time with this:
*  >
*  >
*  >
*  >Tried mixing things up a bit (quotes, pound signs) with no 
*  success.  Any
*  >suggestions?
*  >
*  >TIA,
*  >Pete
*  >
*  >
*  ---
*  ---
*  >Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
*  >To Unsubscribe visit
*  http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lis
ts/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


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

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



Re: dynamic IIf

2000-08-21 Thread Cary Gordon

Without seeing an example of your code, my best guess is that you are 
likely doing something which requires the use of DE() (the delayed 
evaluation function) it the actions.  The Iif() function raises some timing 
issues which are ameliorated by DE().

Cary

At 11:43 AM 8/21/2000 -0400, you wrote:

>Having a hard time with this:
>
>
>
>Tried mixing things up a bit (quotes, pound signs) with no success.  Any
>suggestions?
>
>TIA,
>Pete

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



Re: dynamic IIf

2000-08-21 Thread Jamie Keane

Oh, my mistake... I forgot the DE()'s around the results.  These are needed.
My brain's fried today. :)

--
Jamie Keane
Programmer
SolutionMasters, Inc.
9111 Monroe Rd., Suite 100
Charlotte, NC  28270
www.solutionmasters.com
704.563.5559 x 228  Voice
704.849.9291  Fax
-Original Message-
From: Peter Benoit <[EMAIL PROTECTED]>
To: '[EMAIL PROTECTED]' <[EMAIL PROTECTED]>
Date: Monday, August 21, 2000 12:03 PM
Subject: RE: dynamic IIf


>Well that's what I have
>
>IIF(url.stuff IS "whatever"
>
>then "something"
>
>else "something else")
>
>which is what my line of code essentially says.  Though it doesn't work :/
>
>*  -Original Message-
>*  From: Jamie Keane [mailto:[EMAIL PROTECTED]]
>*  Sent: Monday, August 21, 2000 11:53 AM
>*  To: [EMAIL PROTECTED]
>*  Subject: Re: dynamic IIf
>*
>*
>*  The syntax should be IIF(condition,result1,result2)
>*  where result1 occurs if condition is true and result2 occurs
>*  if condition is
>*  false.
>*
>*  --
>*  Jamie Keane
>*  Programmer
>*  SolutionMasters, Inc.
>*  9111 Monroe Rd., Suite 100
>*  Charlotte, NC  28270
>*  www.solutionmasters.com
>*  704.563.5559 x 228  Voice
>*  704.849.9291  Fax
>*  -Original Message-
>*  From: Peter Benoit <[EMAIL PROTECTED]>
>*  To: '[EMAIL PROTECTED]' <[EMAIL PROTECTED]>
>*  Date: Monday, August 21, 2000 11:41 AM
>*  Subject: dynamic IIf
>*
>*
>*  >
>*  >Having a hard time with this:
>*  >
>*  >*  else"#">
>*  >
>*  >Tried mixing things up a bit (quotes, pound signs) with no
>*  success.  Any
>*  >suggestions?
>*  >
>*  >TIA,
>*  >Pete
>*  >
>*  >
>*  ---
>*  ---
>*  >Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
>*  >To Unsubscribe visit
>*  http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lis
>ts/cf_talk or
>send a message to [EMAIL PROTECTED] with 'unsubscribe' in
>the body.
>
>---
-
>--
>Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
>To Unsubscribe visit
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
>send a message to [EMAIL PROTECTED] with 'unsubscribe' in
>the body.
>
>---
---
>Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
>To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

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



Re: Dynamic Framesets

2000-09-13 Thread Tim Bahlke

I just check to see what browser the user has and go from there.

For example ...





Hope this helps,
Tim


>From: "Jerry Tolentino" <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: [EMAIL PROTECTED]
>Subject: Dynamic Framesets
>Date: Tue, 12 Sep 2000 15:50:06 -0400
>
>Is there a way to determine the dimensions of an HTML document.
>
>Reason: attempting to create a dynamic-sized frameset.
>
>
>--
>Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
>To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or 
>send a message to [EMAIL PROTECTED] with 'unsubscribe' in 
>the body.

_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

Share information about yourself, create your own public profile at 
http://profiles.msn.com.

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



RE: Dynamic DNS

2003-01-10 Thread Matthew Small
You are incorrect in that thinking.  TZO.com does my dynamic ip address
forwarding and I have the exact setup you just told me about.  I have a
web server running on one of my machines behind my NAT and I have the
router configured to send all port 80 traffic to that one machine. TZO's
software figures out the routable IP that your router uses for WAN
traffic and forwards your domain traffic to that IP, which of course
points to your router.

Matthew Small
IT Supervisor
Showstopper National Dance Competitions
3660 Old Kings Hwy 
Murrells Inlet, SC 29576
843-357-1847
http://www.showstopperonline.com

-Original Message-
From: Chris Alvarado [mailto:[EMAIL PROTECTED]] 
Sent: Friday, January 10, 2003 3:44 PM
To: CF-Talk
Subject: OT: Dynamic DNS

Hello all,

Sort of an off-topic post I guess, so sorry for that.

However this is the most responsive / helpful list I'm on so here it
goes.

I have a domain name for myself that my company hosts the DNS for. I am
looking for a dynamic DNS solution that will allow me to actually host
the site on my cable access where my IP address may change etc.

Here is the kicker,

I have a router / firewall attached to my cable modem that also has a
built in switch. That way I can have like 4 machines using my cable
connection. The IP addresses for each machine as such are NATed and thus
I have the firewall set to forward all port 80 request (http) to my
machines NATed address, this works fine except that as far as I can tell
all of the Dynamic DNS services out there set the IP address to send
your domain requests to are of the MACHINE running their software,
whereas the IP address on my network would actually belong to my cable
modem.

Anyone have any ideas?

Thanks all,

-chris.alvarado
[ application developer ]
4 Guys Interactive, Inc.
http://www.4guys.com 

"We create websites that make you a hero."




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: dynamic valuelist

2002-07-10 Thread Raymond Camden

Sure, just do:



FYI - this is one of the FEW times you need Evaluate.
FYI2 - A UDF for this was written by one of my coworkers and will be up
on CFLib.org soon.

===
Raymond Camden, ColdFusion Jedi Master for Macromedia

Email: [EMAIL PROTECTED]
Yahoo IM : morpheus

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

> -Original Message-
> From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] 
> Sent: Wednesday, July 10, 2002 12:01 PM
> To: CF-Talk
> Subject: dynamic valuelist
> 
> 
> The ValueList() function takes as its attribute the name of a 
> query field. This is passed in without quotes (essentially 
> breaking the rule of non-quoted variables inside functions 
> being evaluated). What I want to do is create a UDF and pass 
> in a query and the name of a column. These are to be combined 
> within a ValueList() to be evaluated. 
> 
> var Items = ValueList(evaluate('Query.'&ItemID));
> 
> This fails. Does anyone have a suggestion as to how I can 
> create the attribute for the valuelist dynamically or should 
> I just run a loop (which is just a few milliseconds slower).
> 
> Michael Dinowitz
> Master of the House of Fusion
> http://www.houseoffusion.com
> 
> 
__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: dynamic valuelist

2002-07-10 Thread Raymond Camden

Of course, in CFMX, you can treat query columns as arrays, so you don't
need evaluate there at all:



(where x is the query and "a" is the dynamic column)

===
Raymond Camden, ColdFusion Jedi Master for Macromedia

Email: [EMAIL PROTECTED]
Yahoo IM : morpheus

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

> -Original Message-
> From: Raymond Camden [mailto:[EMAIL PROTECTED]] 
> Sent: Wednesday, July 10, 2002 12:01 PM
> To: CF-Talk
> Subject: RE: dynamic valuelist
> 
> 
> Sure, just do:
> 
> 
> 
> FYI - this is one of the FEW times you need Evaluate.
> FYI2 - A UDF for this was written by one of my coworkers and 
> will be up
> on CFLib.org soon.
> 
> ==
> =
> Raymond Camden, ColdFusion Jedi Master for Macromedia
> 
> Email: [EMAIL PROTECTED]
> Yahoo IM : morpheus
> 
> "My ally is the Force, and a powerful ally it is." - Yoda 
> 
> > -Original Message-
> > From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] 
> > Sent: Wednesday, July 10, 2002 12:01 PM
> > To: CF-Talk
> > Subject: dynamic valuelist
> > 
> > 
> > The ValueList() function takes as its attribute the name of a 
> > query field. This is passed in without quotes (essentially 
> > breaking the rule of non-quoted variables inside functions 
> > being evaluated). What I want to do is create a UDF and pass 
> > in a query and the name of a column. These are to be combined 
> > within a ValueList() to be evaluated. 
> > 
> > var Items = ValueList(evaluate('Query.'&ItemID));
> > 
> > This fails. Does anyone have a suggestion as to how I can 
> > create the attribute for the valuelist dynamically or should 
> > I just run a loop (which is just a few milliseconds slower).
> > 
> > Michael Dinowitz
> > Master of the House of Fusion
> > http://www.houseoffusion.com
> > 
> > 
> 
__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: dynamic valuelist

2002-07-10 Thread Michael Dinowitz

Thanks. Very sneaky. Now if I can just get past CF not liking the passed query. :)
(which I assume is due to the query being passed by reference, not value)

> Sure, just do:
> 
> 
> 
> FYI - this is one of the FEW times you need Evaluate.
> FYI2 - A UDF for this was written by one of my coworkers and will be up
> on CFLib.org soon.
> 
> ===
> Raymond Camden, ColdFusion Jedi Master for Macromedia
> 
> Email: [EMAIL PROTECTED]
> Yahoo IM : morpheus
> 
> "My ally is the Force, and a powerful ally it is." - Yoda 
> 
> > -Original Message-
> > From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] 
> > Sent: Wednesday, July 10, 2002 12:01 PM
> > To: CF-Talk
> > Subject: dynamic valuelist
> > 
> > 
> > The ValueList() function takes as its attribute the name of a 
> > query field. This is passed in without quotes (essentially 
> > breaking the rule of non-quoted variables inside functions 
> > being evaluated). What I want to do is create a UDF and pass 
> > in a query and the name of a column. These are to be combined 
> > within a ValueList() to be evaluated. 
> > 
> > var Items = ValueList(evaluate('Query.'&ItemID));
> > 
> > This fails. Does anyone have a suggestion as to how I can 
> > create the attribute for the valuelist dynamically or should 
> > I just run a loop (which is just a few milliseconds slower).
> > 
> > Michael Dinowitz
> > Master of the House of Fusion
> > http://www.houseoffusion.com
> > 
> > 
> 
__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: dynamic valuelist

2002-07-10 Thread Raymond Camden

What doesn't it like? If you pass a query to a udf, you pass it by ref.
If you are just getting the valuelist, this is harmless. If you are
actually manipulating the query in the UDF, then you can either
duplicate it in the udf or duplicate it on call:



===
Raymond Camden, ColdFusion Jedi Master for Macromedia

Email: [EMAIL PROTECTED]
Yahoo IM : morpheus

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

> -Original Message-
> From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] 
> Sent: Wednesday, July 10, 2002 12:24 PM
> To: CF-Talk
> Subject: Re: dynamic valuelist
> 
> 
> Thanks. Very sneaky. Now if I can just get past CF not liking 
> the passed query. :)
> (which I assume is due to the query being passed by 
> reference, not value)
> 
> > Sure, just do:
> > 
> > 
> > 
> > FYI - this is one of the FEW times you need Evaluate.
> > FYI2 - A UDF for this was written by one of my coworkers 
> and will be up
> > on CFLib.org soon.
> > 
> > 
> ==
> =
> > Raymond Camden, ColdFusion Jedi Master for Macromedia
> > 
> > Email: [EMAIL PROTECTED]
> > Yahoo IM : morpheus
> > 
> > "My ally is the Force, and a powerful ally it is." - Yoda 
> > 
> > > -Original Message-
> > > From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] 
> > > Sent: Wednesday, July 10, 2002 12:01 PM
> > > To: CF-Talk
> > > Subject: dynamic valuelist
> > > 
> > > 
> > > The ValueList() function takes as its attribute the name of a 
> > > query field. This is passed in without quotes (essentially 
> > > breaking the rule of non-quoted variables inside functions 
> > > being evaluated). What I want to do is create a UDF and pass 
> > > in a query and the name of a column. These are to be combined 
> > > within a ValueList() to be evaluated. 
> > > 
> > > var Items = ValueList(evaluate('Query.'&ItemID));
> > > 
> > > This fails. Does anyone have a suggestion as to how I can 
> > > create the attribute for the valuelist dynamically or should 
> > > I just run a loop (which is just a few milliseconds slower).
> > > 
> > > Michael Dinowitz
> > > Master of the House of Fusion
> > > http://www.houseoffusion.com
> > > 
> > > 
> > 
> 
__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: dynamic valuelist

2002-07-10 Thread Andrew Tyrone

> -Original Message-
> From: Raymond Camden [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, July 10, 2002 12:07 PM
> To: CF-Talk
> Subject: RE: dynamic valuelist
>
>
> Of course, in CFMX, you can treat query columns as arrays, so you don't
> need evaluate there at all:
>
> 
>
> (where x is the query and "a" is the dynamic column)
>

It's also worth noting that this technique works with ColdFusion 5.0 as
well.  I don't know about 4.x versions, however.


-Andy


__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: dynamic valuelist

2002-07-10 Thread Erika L. Walker

I was just about to replay to this and say *ahem* Evaluate() ?


Erika


>>| -Original Message-
>>| From: Raymond Camden [mailto:[EMAIL PROTECTED]] 
>>| 
>>| Sure, just do:
>>| 
>>| 
>>| 
>>| FYI - this is one of the FEW times you need Evaluate.
>>| FYI2 - A UDF for this was written by one of my coworkers 
>>| and will be up on CFLib.org soon.
>>| 

__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: dynamic valuelist

2002-07-10 Thread Michael Dinowitz

This code snippet fails in 5. 
 function test(Query, ItemID)
 {
  return Evaluate('ValueList(Query.#ItemID#)');
 }
#test(qQuery, 'counter')#

> What doesn't it like? If you pass a query to a udf, you pass it by ref.
> If you are just getting the valuelist, this is harmless. If you are
> actually manipulating the query in the UDF, then you can either
> duplicate it in the udf or duplicate it on call:
> 
> 
> 
> ===
> Raymond Camden, ColdFusion Jedi Master for Macromedia
> 
> Email: [EMAIL PROTECTED]
> Yahoo IM : morpheus
> 
> "My ally is the Force, and a powerful ally it is." - Yoda 
> 
> > -Original Message-
> > From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] 
> > Sent: Wednesday, July 10, 2002 12:24 PM
> > To: CF-Talk
> > Subject: Re: dynamic valuelist
> > 
> > 
> > Thanks. Very sneaky. Now if I can just get past CF not liking 
> > the passed query. :)
> > (which I assume is due to the query being passed by 
> > reference, not value)
> > 
> > > Sure, just do:
> > > 
> > > 
> > > 
> > > FYI - this is one of the FEW times you need Evaluate.
> > > FYI2 - A UDF for this was written by one of my coworkers 
> > and will be up
> > > on CFLib.org soon.
> > > 
> > > 
> > ==
> > =
> > > Raymond Camden, ColdFusion Jedi Master for Macromedia
> > > 
> > > Email: [EMAIL PROTECTED]
> > > Yahoo IM : morpheus
> > > 
> > > "My ally is the Force, and a powerful ally it is." - Yoda 
> > > 
> > > > -Original Message-
> > > > From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] 
> > > > Sent: Wednesday, July 10, 2002 12:01 PM
> > > > To: CF-Talk
> > > > Subject: dynamic valuelist
> > > > 
> > > > 
> > > > The ValueList() function takes as its attribute the name of a 
> > > > query field. This is passed in without quotes (essentially 
> > > > breaking the rule of non-quoted variables inside functions 
> > > > being evaluated). What I want to do is create a UDF and pass 
> > > > in a query and the name of a column. These are to be combined 
> > > > within a ValueList() to be evaluated. 
> > > > 
> > > > var Items = ValueList(evaluate('Query.'&ItemID));
> > > > 
> > > > This fails. Does anyone have a suggestion as to how I can 
> > > > create the attribute for the valuelist dynamically or should 
> > > > I just run a loop (which is just a few milliseconds slower).
> > > > 
> > > > Michael Dinowitz
> > > > Master of the House of Fusion
> > > > http://www.houseoffusion.com
> > > > 
> > > > 
> > > 
> > 
> 
__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Dynamic Images

2002-03-13 Thread Eric Dawson



I think there is a couple of others with similar capabilities.

Eric


From: "Kevin McCabe" <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
To: CF-Talk <[EMAIL PROTECTED]>
Subject: Dynamic Images
Date: Wed, 13 Mar 2002 14:15:54 -

Hi All,

I know Generator could do it by as the usual story goes no Budget.

Any How

What I require is the ability to have a base image for example the out line
of a Football Pitch

Then the ability to track lets say 4 Round Images around the pitch.

When Happy save the image off as a Bitmap and save the X,Y of the top left
of eachof the Round Images

Any Ideas?

Cheers

Kev


__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Dynamic Images

2002-03-13 Thread list peters

hi,

Flash would do this quite easily.

Have the 4 images x and y in a database and bring it into flash to display.
Easily create the dynamic images you need..

wont save as bitmap - but you could serve it up dynamically anytime

you could always take a screenshot if desperately need a bitmap a bit
too much..

but flash is great for what you are describing (except making a bitmap)

chad

> Hi All,
>
> I know Generator could do it by as the usual story goes no Budget.
>
> Any How
>
> What I require is the ability to have a base image for example the out
line
> of a Football Pitch
>
> Then the ability to track lets say 4 Round Images around the pitch.
>
> When Happy save the image off as a Bitmap and save the X,Y of the top left
> of eachof the Round Images
>
> Any Ideas?
>
> Cheers
>
> Kev
>
> 
__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Dynamic Images

2002-03-14 Thread Haggerty, Michael A.

This is an interesting post.

How is the placement of the round images determined in the first place? I
would assume, since they are place dynamically, there is some logic you
would be using to determine their placement which could be emulated in a UDF
or something. That way whatever you use to generate the image would not need
to return anything.

Umm depending on how much of a budget you are on, there are two options
I can think of - 

1) PHP (the free option) offers this functionality natively. 

2) AutoImageEffects (the cheap option) is good for this kind of work if you
do not need to get data back from the image you are creating. More info at
http://www.hotscripts.com/Detailed/9893.html

I still use AutoImageEffects every once in a while to generate simple
dynamic maps. It is _really_ easy to learn and use.

I would not rule out spending the money to get a copy of Flash MX. It has a
lot of features that would be useful to you, especially the ability to pass
data back from the movie you generate.

M

-Original Message-
From: Kevin McCabe [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, March 13, 2002 9:16 AM
To: CF-Talk
Subject: Dynamic Images


Hi All,

I know Generator could do it by as the usual story goes no Budget.

Any How

What I require is the ability to have a base image for example the out line
of a Football Pitch

Then the ability to track lets say 4 Round Images around the pitch.

When Happy save the image off as a Bitmap and save the X,Y of the top left
of eachof the Round Images

Any Ideas?

Cheers

Kev


__
Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Dynamic Images

2002-03-14 Thread CrystalM

Kevin,

This is actually going to be VERY EASY with ImageFlare,
a new product of ours that should be available soon.

Initial versions will be sent to beta testers in a matter of days.
Send mail to [EMAIL PROTECTED] to become a beta tester.

* Generator is being discontinued and not
  precisely suited for this sort of thing.

* DynamicGIF is a wrapper to ImageMagick
  and will not do exactly what you need.

* PHP's graphics library will not do it with the
  same quality and speed ImageFlare is capable of.

* ImageFlare is fast and renders at high quality.
  ( Scripted ImageFlare applications have even shown to be easily
faster than compiled C/C++ applications using Windows' GDI+ )

ImageFlare is a CFX tag that will allow you to generate the images AND
return whatever variables you want, among many other things. ImageFlare
allows fast scripted per-pixel access, and high quality rendering...

I think our first simple ImageFlare tutorial will show how it could be used
to easily generate the main header graphics for our site : http://efflare.com

Above all, it makes sense... the scripting is simple... the API is well designed.

> From: "Kevin McCabe" <[EMAIL PROTECTED]>
> Reply-To: [EMAIL PROTECTED]
> To: CF-Talk <[EMAIL PROTECTED]>
> Subject: Dynamic Images
> Date: Wed, 13 Mar 2002 14:15:54 -
> 
> Hi All,
> 
> I know Generator could do it by as the usual story goes no Budget.
> 
> Any How
> 
> What I require is the ability to have a base image for example the out line
> of a Football Pitch
> 
> Then the ability to track lets say 4 Round Images around the pitch.
> 
> When Happy save the image off as a Bitmap and save the X,Y of the top left
> of eachof the Round Images
> 
> Any Ideas?
> 
> Cheers
> 
> Kev

__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: dynamic cfset

2002-04-29 Thread Raymond Camden

You can either do:



Yep, that's one MORE reason to not use Evaluate (at least in CFMX ;)

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

Email: [EMAIL PROTECTED]
Yahoo IM : morpheus

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

> -Original Message-
> From: Wurst, Keith D. [mailto:[EMAIL PROTECTED]] 
> Sent: Monday, April 29, 2002 4:58 PM
> To: CF-Talk
> Subject: dynamic cfset
> 
> 
> I am working on a site where I need to use a cfset inside a 
> cfloop. The
> tricky part is that I want my variable name to be dynamic. I have been
> trying the following...
> 
> 
> 
> ..but as some of you might guess it's not working. The idea 
> would be to get
> the result of 
> 
> Keithblue = "No"
> Keithred =  "No"
> Keithgreen = "No"
> 
> etc, etc.
> 
> Can anyone point me in a better direction to get this 
> working? Thanks very
> much for the help. Talk to you later.
> Keith
> 
__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: dynamic cfset

2002-04-29 Thread Jerry Johnson



?

Jerry Johnson

>>> [EMAIL PROTECTED] 04/29/02 04:57PM >>>
I am working on a site where I need to use a cfset inside a cfloop. The
tricky part is that I want my variable name to be dynamic. I have been
trying the following...



.but as some of you might guess it's not working. The idea would be to get
the result of 

Keithblue = "No"
Keithred =  "No"
Keithgreen = "No"

etc, etc.

Can anyone point me in a better direction to get this working? Thanks very
much for the help. Talk to you later.
Keith

__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: dynamic cfset

2002-04-29 Thread Dave Watts

> I am working on a site where I need to use a cfset inside a 
> cfloop. The tricky part is that I want my variable name to 
> be dynamic. I have been trying the following...
> 
> 
> 
> ..but as some of you might guess it's not working. The idea 
> would be to get the result of 
> 
> Keithblue = "No"
> Keithred =  "No"
> Keithgreen = "No"
> 
> etc, etc.
> 
> Can anyone point me in a better direction to get this 
> working?

You can do either of the following:

 


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

__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: dynamic cfset

2002-04-29 Thread Shawn Grover

Use quotes around the variable name:



that should work

Shawn Grover

-Original Message-
From: Wurst, Keith D. [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 29, 2002 2:58 PM
To: CF-Talk
Subject: dynamic cfset


I am working on a site where I need to use a cfset inside a cfloop. The
tricky part is that I want my variable name to be dynamic. I have been
trying the following...



.but as some of you might guess it's not working. The idea would be to get
the result of 

Keithblue = "No"
Keithred =  "No"
Keithgreen = "No"

etc, etc.

Can anyone point me in a better direction to get this working? Thanks very
much for the help. Talk to you later.
Keith

__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: dynamic cfset

2002-04-29 Thread Paul Giesenhagen



#Evaluate("keith#dynamicpart#")#

(should display "No")

Is that what you are looking for?

Paul Giesenhagen
QuillDesign
http://www.quilldesign.com
SiteDirector v2.0 - Commerce Builder



> I am working on a site where I need to use a cfset inside a cfloop. The
> tricky part is that I want my variable name to be dynamic. I have been
> trying the following...
>
> 
>
> ..but as some of you might guess it's not working. The idea would be to
get
> the result of
>
> Keithblue = "No"
> Keithred =  "No"
> Keithgreen = "No"
>
> etc, etc.
>
> Can anyone point me in a better direction to get this working? Thanks very
> much for the help. Talk to you later.
> Keith
> 
__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: dynamic cfset

2002-04-29 Thread Rob Baxter

Put quotes around the variable name, i.e.



That should do the trick. 'though you may want to consider using a structure
instead ...

StructInsert(Keith, dynamicpart, "No")

Then you could acess it as
Keith.blue, Keith.red, Keith.green, etc.



-Original Message-
From: Wurst, Keith D. [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 29, 2002 4:58 PM
To: CF-Talk
Subject: dynamic cfset


I am working on a site where I need to use a cfset inside a cfloop. The
tricky part is that I want my variable name to be dynamic. I have been
trying the following...



.but as some of you might guess it's not working. The idea would be to get
the result of

Keithblue = "No"
Keithred =  "No"
Keithgreen = "No"

etc, etc.

Can anyone point me in a better direction to get this working? Thanks very
much for the help. Talk to you later.
Keith

__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: dynamic cfset

2002-04-29 Thread Neil Clark - =TMM=

ALERT ALERT - Use of Evaluate on NG.. :-)

Neil Clark
Team Macromedia
http://www.macromedia.com/go/team

Announcing Macromedia MX!! 
--
http://www.macromedia.com/software/trial/.


__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Dynamic News

2002-05-03 Thread Alex

I have moreover. AFAIK it's free

On Fri, 3 May 2002, Cold Fusion wrote:

> Does anyone use Moreover or anything to display NEWS on a webpage?
> 
> If so, which one and what are the cost?
> 
> Good & Bad expereinces are appreciated
> 
> 
__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Dynamic PDFs

2002-05-03 Thread cftalk

Hi,

ActivePDF will do what you want.  It plays very nicely with CF.

Chuck Rodgers

At 02:24 PM 5/3/02 -0500, you wrote:
>I have a set of "blank" unused PDF files that are used for applications (job
>applications).
>
>I need to fill in ares on this PDF from a database programatically. What is
>the easiest way to do this. I have been looking t ActivePDF. is this easy to
>use with CF and will it do what I am describing?
>
>thanks for any and all help,
>
>-chris.alvarado
>[ application developer ]
>4 Guys Interactive, Inc.
>http://www.4guys.com
>
>
__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Dynamic PDFs

2002-05-03 Thread Ian Lurie

Well, I'd vote for PDFConnect (www.pdfconnect.com) but I'm biased :)

Seriously, if these PDFs are forms, and you don't need to save the populated
form, then PDFConnect is cheaper and is ColdFusion-based.

If, however, you need to save the completed forms as separate files,
ActivePDF is a great solution...

Ian

-Original Message-
From: chris.alvarado [mailto:[EMAIL PROTECTED]]
Sent: Friday, May 03, 2002 12:25 PM
To: CF-Talk
Subject: Dynamic PDFs


I have a set of "blank" unused PDF files that are used for applications (job
applications).

I need to fill in ares on this PDF from a database programatically. What is
the easiest way to do this. I have been looking t ActivePDF. is this easy to
use with CF and will it do what I am describing?

thanks for any and all help,

-chris.alvarado
[ application developer ]
4 Guys Interactive, Inc.
http://www.4guys.com


__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Dynamic News

2002-05-03 Thread Randell B Adkins

Moreover is for non-commercial use.

Anything for commercial use that you are aware of?

Randy Adkins
>>> [EMAIL PROTECTED] 05/03/02 15:28 PM >>>
I have moreover. AFAIK it's free

On Fri, 3 May 2002, Cold Fusion wrote:

> Does anyone use Moreover or anything to display NEWS on a webpage?
> 
> If so, which one and what are the cost?
> 
> Good & Bad expereinces are appreciated
> 
> 

__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Dynamic PDFs

2002-05-03 Thread BillyC

Sounds like a perfect example of using PDF forms (FDF's).  Good article
here on doing it programmatically without purchasing a third-party
product:

http://www.worlddesign.com/cf/pdfForms.html
(I think this was originally posted to this list)

---
Billy Cravens


-Original Message-
From: chris.alvarado [mailto:[EMAIL PROTECTED]] 
Sent: Friday, May 03, 2002 2:25 PM
To: CF-Talk
Subject: Dynamic PDFs

I have a set of "blank" unused PDF files that are used for applications
(job
applications).

I need to fill in ares on this PDF from a database programatically. What
is
the easiest way to do this. I have been looking t ActivePDF. is this
easy to
use with CF and will it do what I am describing?

thanks for any and all help,

-chris.alvarado
[ application developer ]
4 Guys Interactive, Inc.
http://www.4guys.com


__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Dynamic News

2002-05-03 Thread BillyC

http://www.newsisfree.com/syndicate.php

---
Billy Cravens
 
Web and Software Consulting
www.Architechx.com

-Original Message-
From: Cold Fusion [mailto:[EMAIL PROTECTED]] 
Sent: Friday, May 03, 2002 1:58 PM
To: CF-Talk
Subject: Dynamic News

Does anyone use Moreover or anything to display NEWS on a webpage?

If so, which one and what are the cost?

Good & Bad expereinces are appreciated


__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Dynamic News

2002-05-03 Thread David Hannum \(Ohio University\)

 Moreover is free for non-commercial, fee for commercial.

Dave


- Original Message -
From: "Randell B Adkins" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Friday, May 03, 2002 3:51 PM
Subject: Re: Dynamic News


> Moreover is for non-commercial use.
>
> Anything for commercial use that you are aware of?
>
> Randy Adkins
> >>> [EMAIL PROTECTED] 05/03/02 15:28 PM >>>
> I have moreover. AFAIK it's free
>
> On Fri, 3 May 2002, Cold Fusion wrote:
>
> > Does anyone use Moreover or anything to display NEWS on a webpage?
> >
> > If so, which one and what are the cost?
> >
> > Good & Bad expereinces are appreciated
> >
> >
>
> 
__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Dynamic News

2002-05-03 Thread Dave Watts

> Moreover is for non-commercial use.
> 
> Anything for commercial use that you are aware of?

If I recall correctly, Moreover is free for non-commercial use, but you can
pay to use it commercially. I wouldn't be surprised if every newsfeed you
find requires payment for commercial use, though.

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

__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: dynamic query

2000-05-17 Thread David Hannum

Bill,

You don't need the CFSET
(Is Availability numeric?  If so, ditch the single quotes)
Also, you might put a % after the variable in case somebody abbreviates:


 
SELECT * from property
WHERE City LIKE '#city#%'
or State LIKE '#state#%'
or Availability = '#SquareFeet#'



Dave


- Original Message -
From: Bill Kaigler <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, May 17, 2000 3:44 PM
Subject: dynamic query


> Hi,
>
> I am trying something which may not be allowed.
>
> 
>
> 
> Select * from property
> #test#
> 
>
> I am getting a 37000 syntax error.  I have tried this with and without the
> single quotes and it gets the same error.
>
> I find conditionals in the sql (as shown in both cold fusion books: Danesh
> and Forta) to be very difficult to maintain as well as read.
>
> thanks in advance
>
> --

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

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



RE: dynamic query

2000-05-18 Thread Dave Watts

> I am trying something which may not be allowed.
> 
> 
> 
> 
>   Select * from property
>   #test#
> 
> 
> I am getting a 37000 syntax error.  I have tried this with 
> and without the single quotes and it gets the same error.

Try this:


SELECT * FROM PROPERTY
#PreserveSingleQuotes(test)#


Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: dynamic query

2000-05-18 Thread Troy Johnson

use the function   preserveSingleQuotes()

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 18, 2000 12:16 PM
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: RE: dynamic query


> I am trying something which may not be allowed.
> 
> 
> 
> 
>   Select * from property
>   #test#
> 
> 
> I am getting a 37000 syntax error.  I have tried this with 
> and without the single quotes and it gets the same error.

Try this:


SELECT * FROM PROPERTY
#PreserveSingleQuotes(test)#


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

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



Re: Dynamic Variable

2000-07-24 Thread kraybill

Use this:



or this: 



The first is easier, but the second is the "official" method...

Gene Kraybill
LPW & Associates
Mansfield, PA

"Kevin Schmidt" <[EMAIL PROTECTED]> wrote:

> I have kind of a stupid question.  I need to create a dynamic variable =
> in a loop with the counter number attached to the end of the variable. =
> So I get button1 button2 buttton3 etc
> 
> I am not exactly sure the syntax  =
> ain't cutting it.
> 
> Let me know what the exact syntax is!
> 
> Thanks
> Kevin Schmidt
> 
> 
> --=_NextPart_000_0C0B_01BFF586.985C45B0
> Content-Type: text/html;
>   charset="iso-8859-1"
> Content-Transfer-Encoding: quoted-printable
> 
> 
> 
>  http-equiv=3DContent-Type>
> 
> 
> 
> 
> I have kind of a stupid question.  =
> I need to=20
> create a dynamic variable in a loop with the counter number attached to =
> the end=20
> of the variable. So I get button1 button2 buttton3 etc
>  
> I am not exactly sure the syntax =
>  i =3D #button_name#> ain't cutting it.
>  
> Let me know what the exact syntax=20
> is!
>  
> Thanks
> Kevin =
> Schmidt
> 
> --=_NextPart_000_0C0B_01BFF586.985C45B0--
> 
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
> 
> 
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Dynamic Variable

2000-07-25 Thread Anthony Geoghegan

Hi Kevin,

|I have kind of a stupid question.

Wrong thing to put on a question to this list lately Kev.

|I need to create a dynamic 
|variable =
|in a loop with the counter number attached to the end of the 
|variable. =
|So I get button1 button2 buttton3 etc

It looks to me that an array would be a much more elegant solution to this
problem Kev.
Somesinc like ziz I am thinkink, no?



  


Regards,
Anthony Geoghegan.
Lead Developer,
IFTN 
www.wow.ie
mailto:[EMAIL PROTECTED]

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



RE: dynamic image

2002-05-23 Thread Jeff Brown

I saw a Dynamic Image Wizard-somethingrather in the Fireworks MX Preview
Release... start there!

v/r,
Jeff

-Original Message-
From: LANCASTER, STEVEN M. (JSC-OL) (BAR)
[mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 23, 2002 12:38 PM
To: CF-Talk
Subject: dynamic image


I want to create an image and make the text on the image dynamic, but I am
not sure where to start.. Anybody have a suggestion?

Steven Lancaster
Barrios Technology
NASA/JSC
281-244-2444 (voice)
[EMAIL PROTECTED] 

 

__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: dynamic image

2002-05-23 Thread Stephen Moretti

Have a look out for CFX_Image custom tag

Apparently its hard to get hold of and hard to use...

Regards

Stephen
- Original Message -
From: "LANCASTER, STEVEN M. (JSC-OL) (BAR)"
<[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, May 23, 2002 5:37 PM
Subject: dynamic image


> I want to create an image and make the text on the image dynamic, but I am
> not sure where to start.. Anybody have a suggestion?
>
> Steven Lancaster
> Barrios Technology
> NASA/JSC
> 281-244-2444 (voice)
> [EMAIL PROTECTED]
>
>
> 
__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: dynamic image

2002-05-23 Thread Bryan Love

You could do it with layers and Javascript.  Just put a layer containing
text over the top of the image.

+---+
Bryan Love
  Macromedia Certified Professional
  Internet Application Developer
  Database Analyst
Telecommunication Systems
[EMAIL PROTECTED]
+---+

"...'If there must be trouble, let it be in my day, that my child may have
peace'..."
- Thomas Paine, The American Crisis



-Original Message-
From: LANCASTER, STEVEN M. (JSC-OL) (BAR)
[mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 23, 2002 9:38 AM
To: CF-Talk
Subject: dynamic image


I want to create an image and make the text on the image dynamic, but I am
not sure where to start.. Anybody have a suggestion?

Steven Lancaster
Barrios Technology
NASA/JSC
281-244-2444 (voice)
[EMAIL PROTECTED] 

 

__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: dynamic image

2002-05-23 Thread Brad Roberts

It's in the dev exchange.  FWIW, it's actually very easy to use and comes
with great documentation.

> -Original Message-
> From: Stephen Moretti [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, May 23, 2002 12:59 PM
> To: CF-Talk
> Subject: Re: dynamic image
>
>
> Have a look out for CFX_Image custom tag
>
> Apparently its hard to get hold of and hard to use...
>
> Regards
>
> Stephen
> - Original Message -
> From: "LANCASTER, STEVEN M. (JSC-OL) (BAR)"
> <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Thursday, May 23, 2002 5:37 PM
> Subject: dynamic image
>
>
> > I want to create an image and make the text on the image
> dynamic, but I am
> > not sure where to start.. Anybody have a suggestion?
> >
> > Steven Lancaster
> > Barrios Technology
> > NASA/JSC
> > 281-244-2444 (voice)
> > [EMAIL PROTECTED]
> >
> >
> >
> 
__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: dynamic image

2002-05-23 Thread Joshua Tipton

Put the image in the background of a table.

-Original Message-
From: LANCASTER, STEVEN M. (JSC-OL) (BAR)
[mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 23, 2002 12:38 PM
To: CF-Talk
Subject: dynamic image


I want to create an image and make the text on the image dynamic, but I am
not sure where to start.. Anybody have a suggestion?

Steven Lancaster
Barrios Technology
NASA/JSC
281-244-2444 (voice)
[EMAIL PROTECTED] 

 

__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: dynamic image

2002-05-23 Thread mynews

If you can get away with having Flash content on the site it's 
a great way to put text on images. You can pull the text from 
a DB. You can animate it. You can use whatever font you want 
(as long as you include the font outlines).

BJ
= = = Original message = = =

Put the image in the background of a table.

-Original Message-
From: LANCASTER, STEVEN M. (JSC-OL) (BAR)
[mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 23, 2002 12:38 PM
To: CF-Talk
Subject: dynamic image


I want to create an image and make the text on the image dynamic, 
but I am
not sure where to start.. Anybody have a suggestion?

Steven Lancaster
Barrios Technology
NASA/JSC
281-244-2444 (voice)
[EMAIL PROTECTED] 

 


__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: dynamic image

2002-05-23 Thread LANCASTER, STEVEN M. (JSC-OL) (BAR)

The layers worked great! Thanks Bryan

Steven Lancaster
Barrios Technology
NASA/JSC
281-244-2444 (voice)
[EMAIL PROTECTED] 

 

-Original Message-
From: Bryan Love [mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 23, 2002 12:05 PM
To: CF-Talk
Subject: RE: dynamic image


You could do it with layers and Javascript.  Just put a layer containing
text over the top of the image.

+---+
Bryan Love
  Macromedia Certified Professional
  Internet Application Developer
  Database Analyst
Telecommunication Systems
[EMAIL PROTECTED]
+---+

"...'If there must be trouble, let it be in my day, that my child may have
peace'..."
- Thomas Paine, The American Crisis



-Original Message-
From: LANCASTER, STEVEN M. (JSC-OL) (BAR)
[mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 23, 2002 9:38 AM
To: CF-Talk
Subject: dynamic image


I want to create an image and make the text on the image dynamic, but I am
not sure where to start.. Anybody have a suggestion?

Steven Lancaster
Barrios Technology
NASA/JSC
281-244-2444 (voice)
[EMAIL PROTECTED] 

 


__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: dynamic image

2002-05-23 Thread Lewis Sellers

On Thu, 23 May 2002 17:59:26 +0100, in cf-talk you wrote:

>Have a look out for CFX_Image custom tag
>
>Apparently its hard to get hold of and hard to use...

I've never actually used it (except runnnig the examples) but the
lastest "official" release I've see is cached at...

http://www.intrafoundation.com/coldfusion.html.

fyi.

--min

__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: dynamic image

2002-05-23 Thread Ryan Pieszak

There's a way to specify what layer to display of an image via javascript?
Can anybody point me to a web page or something so I can learn this, I need
something exactly like this.  Thanks, Ryan.

-Original Message-
From: LANCASTER, STEVEN M. (JSC-OL) (BAR)
[mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 23, 2002 1:25 PM
To: CF-Talk
Subject: RE: dynamic image


The layers worked great! Thanks Bryan

Steven Lancaster
Barrios Technology
NASA/JSC
281-244-2444 (voice)
[EMAIL PROTECTED] 

 

-Original Message-
From: Bryan Love [mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 23, 2002 12:05 PM
To: CF-Talk
Subject: RE: dynamic image


You could do it with layers and Javascript.  Just put a layer containing
text over the top of the image.

+---+
Bryan Love
  Macromedia Certified Professional
  Internet Application Developer
  Database Analyst
Telecommunication Systems
[EMAIL PROTECTED]
+---+

"...'If there must be trouble, let it be in my day, that my child may have
peace'..."
- Thomas Paine, The American Crisis



-Original Message-
From: LANCASTER, STEVEN M. (JSC-OL) (BAR)
[mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 23, 2002 9:38 AM
To: CF-Talk
Subject: dynamic image


I want to create an image and make the text on the image dynamic, but I am
not sure where to start.. Anybody have a suggestion?

Steven Lancaster
Barrios Technology
NASA/JSC
281-244-2444 (voice)
[EMAIL PROTECTED] 

 



__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Dynamic Layers

2002-05-27 Thread Ronald West

Hi,

Do you really need to use layers? If you dynamically generate the color of
the td cell ("bgcolor" or better yet through css), you can just place an
image inside the td as well.

Unless you will have text in the td and want some "soft" image over the top
of the text.

-Ron

-Original Message-
From: Declan Maher [mailto:[EMAIL PROTECTED]]
Sent: Monday, May 27, 2002 5:46 AM
To: CF-Talk
Subject: RE:Dynamic Layers


I am attempting to build a dynamic scheduling system.

At the moment I have a system based over time where a user can enter
colours for a particular number of months to reflect when an action took
place. So say you had spent 3 months doing a certain task you input the
start date and end date, select the task and output this with an
appropriate color over a timespan of say 4 years.

What the client is now looking for is to add another layer on top of
this with certain symbols. Say exam date or finish of term date. What I
need to do, if possible is output a second layer on top of the existing
table. What I am looking to do is use layers to put this top layer in
the correct table cell. Can anybody help or point to any resources that
could be of help?

Thanks for any help

Declan

-Original Message-
From: Bryan Love [mailto:[EMAIL PROTECTED]]
Sent: 27 May 2002 04:21
To: CF-Talk
Subject: RE: Bytes to MB/GB conversion tag?




THANK YOU!!!



-Original Message-
From: Jochem van Dieten [mailto:[EMAIL PROTECTED]]
Sent: Sunday, May 26, 2002 1:51 PM
To: CF-Talk
Subject: Re: Bytes to MB/GB conversion tag?


Neil Clark - =TMM= wrote:
> 1 MB = 1024KB.

You're wrong :)

1 MB = 1000 kB = 100 B

1 Mi = 1024 Ki = 1048576 B

http://physics.nist.gov/cuu/Units/binary.html

Jochem




__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Dynamic Layers

2002-05-27 Thread Declan Maher

Thanks for the reply Ron,

But the way I've coded it means I am  looping through the months of the
year like this

   2001| 2002| 2003  |
J|F|M|A|M|J|J|
|COLOR| -THE COLOR EXTENDS OVER A NUMBER OR MONTHS
|SYMBOL|- THE SYMBOL ONLY NEEDS TO GO OVER ONE MONTH

Because a certain number of cells may be empty I cannot see how this can
be done without two different loops.
Its not just a matter of putting the details into just one predicted
cell in the table.

-Original Message-
From: Ronald West [mailto:[EMAIL PROTECTED]]
Sent: 27 May 2002 15:05
To: CF-Talk
Subject: RE: Dynamic Layers


Hi,

Do you really need to use layers? If you dynamically generate the color
of
the td cell ("bgcolor" or better yet through css), you can just place an
image inside the td as well.

Unless you will have text in the td and want some "soft" image over the
top
of the text.

-Ron

-Original Message-
From: Declan Maher [mailto:[EMAIL PROTECTED]]
Sent: Monday, May 27, 2002 5:46 AM
To: CF-Talk
Subject: RE:Dynamic Layers


I am attempting to build a dynamic scheduling system.

At the moment I have a system based over time where a user can enter
colours for a particular number of months to reflect when an action took
place. So say you had spent 3 months doing a certain task you input the
start date and end date, select the task and output this with an
appropriate color over a timespan of say 4 years.

What the client is now looking for is to add another layer on top of
this with certain symbols. Say exam date or finish of term date. What I
need to do, if possible is output a second layer on top of the existing
table. What I am looking to do is use layers to put this top layer in
the correct table cell. Can anybody help or point to any resources that
could be of help?

Thanks for any help

Declan

-Original Message-
From: Bryan Love [mailto:[EMAIL PROTECTED]]
Sent: 27 May 2002 04:21
To: CF-Talk
Subject: RE: Bytes to MB/GB conversion tag?




THANK YOU!!!



-Original Message-
From: Jochem van Dieten [mailto:[EMAIL PROTECTED]]
Sent: Sunday, May 26, 2002 1:51 PM
To: CF-Talk
Subject: Re: Bytes to MB/GB conversion tag?


Neil Clark - =TMM= wrote:
> 1 MB = 1024KB.

You're wrong :)

1 MB = 1000 kB = 100 B

1 Mi = 1024 Ki = 1048576 B

http://physics.nist.gov/cuu/Units/binary.html

Jochem





__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Dynamic Layers

2002-05-27 Thread Ronald West

Are you thinking then of trying to match a layer up with a Table.  Possibly
using the div or layer tag?

That will be a pretty formidable task.  Especially if you are dealing with
cross browser compatibility.

I am sure that  there is a lot of code involved with what you are doing but
I have a feeling that there is a really simple solution to this.

-Ron

-Original Message-
From: Declan Maher [mailto:[EMAIL PROTECTED]]
Sent: Monday, May 27, 2002 10:13 AM
To: CF-Talk
Subject: RE: Dynamic Layers


Thanks for the reply Ron,

But the way I've coded it means I am  looping through the months of the
year like this

   2001| 2002| 2003  |
J|F|M|A|M|J|J|
|COLOR| -THE COLOR EXTENDS OVER A NUMBER OR MONTHS
|SYMBOL|- THE SYMBOL ONLY NEEDS TO GO OVER ONE MONTH

Because a certain number of cells may be empty I cannot see how this can
be done without two different loops.
Its not just a matter of putting the details into just one predicted
cell in the table.

-Original Message-
From: Ronald West [mailto:[EMAIL PROTECTED]]
Sent: 27 May 2002 15:05
To: CF-Talk
Subject: RE: Dynamic Layers


Hi,

Do you really need to use layers? If you dynamically generate the color
of
the td cell ("bgcolor" or better yet through css), you can just place an
image inside the td as well.

Unless you will have text in the td and want some "soft" image over the
top
of the text.

-Ron

-Original Message-
From: Declan Maher [mailto:[EMAIL PROTECTED]]
Sent: Monday, May 27, 2002 5:46 AM
To: CF-Talk
Subject: RE:Dynamic Layers


I am attempting to build a dynamic scheduling system.

At the moment I have a system based over time where a user can enter
colours for a particular number of months to reflect when an action took
place. So say you had spent 3 months doing a certain task you input the
start date and end date, select the task and output this with an
appropriate color over a timespan of say 4 years.

What the client is now looking for is to add another layer on top of
this with certain symbols. Say exam date or finish of term date. What I
need to do, if possible is output a second layer on top of the existing
table. What I am looking to do is use layers to put this top layer in
the correct table cell. Can anybody help or point to any resources that
could be of help?

Thanks for any help

Declan

-Original Message-
From: Bryan Love [mailto:[EMAIL PROTECTED]]
Sent: 27 May 2002 04:21
To: CF-Talk
Subject: RE: Bytes to MB/GB conversion tag?




THANK YOU!!!



-Original Message-
From: Jochem van Dieten [mailto:[EMAIL PROTECTED]]
Sent: Sunday, May 26, 2002 1:51 PM
To: CF-Talk
Subject: Re: Bytes to MB/GB conversion tag?


Neil Clark - =TMM= wrote:
> 1 MB = 1024KB.

You're wrong :)

1 MB = 1000 kB = 100 B

1 Mi = 1024 Ki = 1048576 B

http://physics.nist.gov/cuu/Units/binary.html

Jochem






__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Dynamic Checkboxes

2002-06-29 Thread Dave Watts

> I am having some trouble with dynamically named checkboxes.
> 
> On a form I have some dynamically named form variables. like
> 
> 
>   ...
>   
> 
> 
> I submit to
> 
> 
>   ...
>   
> 
> All of these work except for the checkbox. The reason is 
> because checkboxes aren't submitted of they aren't checked. 
> So I would think that I should use some thing like this to 
> verify that the variable exists before setting the variable 
> to it's value.
> 
> 
>   
>cfset vremove="0">
> 
> 
> but this doesn't work either.

You can fix your problem by putting this directly after your CFLOOP in your
action page:



The reason that your ParameterExists test isn't working is that you're
checking for vRemove, which isn't your checkbox but rather a local variable
that you're trying to create within the CFLOOP in your action page, based on
the value of the variable from the checkbox. But, if the variable from the
checkbox doesn't exist, you'll get an error when you reference it.

Also, you might want to use IsDefined instead of ParameterExists, generally,
since ParameterExists has been deprecated for some time. To use IsDefined to
test for the existence of Form.foo, you'd use something like this:



Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444
__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Dynamic Checkboxes

2002-06-29 Thread David Schmidt

Well, the isDefined statement would be a good thing to use here.







and then test for remove for processing (assuming you are processing it
inside the loop).  By the way, I typically use conditional looping
instead of indexed looping for things like this.  This way you don't
have to know how many records to start/end with.  Here's how it goes...

 <--- To start the index off --->

To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Saturday, June 29, 2002 6:27 AM
Subject: Dynamic Checkboxes


: I am having some trouble with dynamically named checkboxes. This is
what I
: am trying to do
:
:
: On a form I have some dynamically named form variables. like
:
: 
: 
: 
: 
: 
: 
: 
: 
: 
:
: I submit to
:
: 
: 
: 
: 
: 
: 
: 
: 
:
: #evaluate(vAnswer_ID)#
: #evaluate(vAnswer_Display_sequence)#
: #evaluate(vObject_Type_ID)#
: #evaluate(vAnswer_Text)#
: #evaluate(vAnswer_Field_Name)#
: #evaluate(vAnswer_Code)#
: #evaluate(vRemove)#
:
: 
:
:
:
: All of these work except for the checkbox. The reason is because
checkboxes
: aren't submitted of they aren't checked. So I would think that I
should use
: some thing like this to verify that the variable exists before setting
the
: variable to it's value.
:
: 
: 
: 
: 
:
: but this doesn't work either.
:
:
:
: Any Suggestions.
:
: Thanks,
:
: Dave
:
:
:
: 
__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: dynamic select

2002-06-30 Thread Marius Milosav

You can use cfselect


select car_man from...



   

you can do the same thing with a normal select but you have to manually loop
over your query

Marius Milosav
www.scorpiosoft.com
It's not about technology, it's about people.
Virtual Company (VICO) Application Demo
www.scorpiosoft.com/vicodemo/login.cfm



- Original Message -
From: "Douglas Brown" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Sunday, June 30, 2002 4:25 PM
Subject: dynamic select


> I have a query that pulls options to populate a select box, now what I
> need to do is have a select that makes one of the values of the select
> box "SELECTED" if it's value is in my inventory table from a second
> query.
>
> IE:
>
> query of inventory returns the value of ford for the make column...
>
> I need this to happen, whats the best way to do it.
>
>
> 
> Chevy
> Honda
> Ford
> 
>
>
>
>
> Douglas Brown
> Email: [EMAIL PROTECTED]
>
> 
__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: dynamic select

2002-06-30 Thread Tony Gruen

easy, I presume that your list of all available makes is in another table.
If it is not and your select is hard coded just use the cfif statement and
name the query appropriately. Example below where queryname for all
available makes = qMake, and query for option to be selected = qMakeUser:

(off the top of my head so )




SELECTED>#qMake.Model#







Tony Gruen



-Original Message-
From: Douglas Brown [mailto:[EMAIL PROTECTED]]
Sent: Sunday, June 30, 2002 1:25 PM
To: CF-Talk
Subject: dynamic select


I have a query that pulls options to populate a select box, now what I
need to do is have a select that makes one of the values of the select
box "SELECTED" if it's value is in my inventory table from a second
query.

IE:

query of inventory returns the value of ford for the make column...

I need this to happen, whats the best way to do it.



Chevy
Honda
Ford





Douglas Brown
Email: [EMAIL PROTECTED]


__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: dynamic select

2002-06-30 Thread Tom Nunamaker

Remember, the proper HTML should be:

 mailto:[EMAIL PROTECTED]] 
Sent: Sunday, June 30, 2002 3:42 PM
To: CF-Talk
Subject: RE: dynamic select


easy, I presume that your list of all available makes is in another
table. If it is not and your select is hard coded just use the cfif
statement and name the query appropriately. Example below where
queryname for all available makes = qMake, and query for option to be
selected = qMakeUser:

(off the top of my head so )




SELECTED>#qMake.Model#  





Tony Gruen



-Original Message-
From: Douglas Brown [mailto:[EMAIL PROTECTED]]
Sent: Sunday, June 30, 2002 1:25 PM
To: CF-Talk
Subject: dynamic select


I have a query that pulls options to populate a select box, now what I
need to do is have a select that makes one of the values of the select
box "SELECTED" if it's value is in my inventory table from a second
query.

IE:

query of inventory returns the value of ford for the make column...

I need this to happen, whats the best way to do it.



Chevy
Honda
Ford





Douglas Brown
Email: [EMAIL PROTECTED]



__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: dynamic select

2002-06-30 Thread Dave Watts

> Remember, the proper HTML should be:
> 
>  display text goes here (the
closing tag is required for XHTML compliance, but not otherwise)

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444
__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: dynamic select

2002-06-30 Thread Tom Nunamaker

My mistake.  That's not correct XHTML, which is what you should be
coding for if you don't want to have to redo all of your HTML in the
future.
 
Here's a good reference for converting your HTML documents to XTHML:

http://www.w3schools.com/xhtml/xhtml_syntax.asp


Tom

-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED]] 
Sent: Sunday, June 30, 2002 4:39 PM
To: CF-Talk
Subject: RE: dynamic select


> Remember, the proper HTML should be:
> 
>  display text goes here (the
closing tag is required for XHTML compliance, but not otherwise)

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

__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: dynamic form

2000-10-02 Thread Richard Kern

Your action page will have access to the form variables, as last populated.

However the reference should be #form.emp_name# not as you stated
Richard

-Original Message-
From: Gavin Myers [mailto:[EMAIL PROTECTED]]
Sent: Monday, October 02, 2000 1:31 PM
To: CF-Talk
Subject: dynamic form


this is buggin' me
okay, lets say the database consists of:

emp_name
roy
joe
billy
gus


cf_code (simplified)


select * from names


Who woule you like to fire?

#emp_name# NoYes





In order for this to work i have to specify a name so my radio buttons will
work. In order to give my radio buttons a name i have to give them a dynamic
name (like #emp_name#)

so when i go to my next page, how do i call those dynamic set feild names?

like #form.#emp_name##?

know what i mean?

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



RE: dynamic form

2000-10-02 Thread Hayes, David

form.fieldnames will give you the list of fields of the submitted form,
regardless of how they were created.

You could also use checkboxes, which will return a comma-delimited list.

cf_code (simplified)


select * from names


Who woule you like to fire?

#emp_name# 




Then, form.ckFireList will give you a list like "roy,billy,gus" which you
can loop through.



-Original Message-
From: Gavin Myers [mailto:[EMAIL PROTECTED]]
Sent: Monday, October 02, 2000 2:31 PM
To: CF-Talk
Subject: dynamic form


this is buggin' me
okay, lets say the database consists of:

emp_name
roy
joe
billy
gus


cf_code (simplified)


select * from names


Who woule you like to fire?

#emp_name# NoYes





In order for this to work i have to specify a name so my radio buttons will
work. In order to give my radio buttons a name i have to give them a dynamic
name (like #emp_name#)

so when i go to my next page, how do i call those dynamic set feild names?

like #form.#emp_name##?

know what i mean?

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



RE: dynamic form

2000-10-02 Thread Shane Witbeck

use a hidden field?

Sincerely,

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




-Original Message-
From: Gavin Myers [mailto:[EMAIL PROTECTED]]
Sent: Monday, October 02, 2000 3:31 PM
To: CF-Talk
Subject: dynamic form


this is buggin' me
okay, lets say the database consists of:

emp_name
roy
joe
billy
gus


cf_code (simplified)


select * from names


Who woule you like to fire?

#emp_name# NoYes





In order for this to work i have to specify a name so my radio buttons will
work. In order to give my radio buttons a name i have to give them a dynamic
name (like #emp_name#)

so when i go to my next page, how do i call those dynamic set feild names?

like #form.#emp_name##?

know what i mean?

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

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



Re: dynamic form

2000-10-02 Thread Stan Newdel

It is easier to do this with checkbox fields, because you can simply loop
through the field name var in your action page as it will become a comma
delimited list. You can's use cfinput, you'll have to use regular form
fields. If you insist on using radio buttons I think you could do something
like this:

in the form page:




in the action page:




UPDATE Employees
SET EmpStatus = '#Evaluate(my_field)#'
WHERE Emp_ID = #ListLast(my_field)#

   


- Original Message -
From: "Gavin Myers" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Monday, October 02, 2000 3:31 PM
Subject: dynamic form


> this is buggin' me
> okay, lets say the database consists of:
>
> emp_name
> roy
> joe
> billy
> gus
>
>
> cf_code (simplified)
>
> 
> select * from names
> 
> 
> Who woule you like to fire?
> 
> #emp_name# No value = "1">Yes
> 
> 
> 
>
>
> In order for this to work i have to specify a name so my radio buttons
will
> work. In order to give my radio buttons a name i have to give them a
dynamic
> name (like #emp_name#)
>
> so when i go to my next page, how do i call those dynamic set feild names?
>
> like #form.#emp_name##?
>
> know what i mean?
> --

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

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



RE: dynamic form

2000-10-02 Thread Scott, Andrew

First of all I recommend not using the radio button if you wish to make
multiple selections, radio buttons are best used when you only need to make
a single selection out of a group. Use the checkbox instead, now when it
comes to the name of this its best to do something like this:-)


#emp_name# No


Indicated that selecting this checkbox that it will delete, then use a
javascript or server side validation and alert to make sure that the person
wishes to delete. Then when you reference the variables you should get back
a list with the names_1,names_2,names_3 etc., depending on the amount of
records:-)



regards

Andrew Scott
ANZ eCommerce Centre
* Ph 9273 0693  
* [EMAIL PROTECTED]


-Original Message-
From: Gavin Myers [mailto:[EMAIL PROTECTED]]
Sent: 03 October 2000 06:31
To: CF-Talk
Subject: dynamic form


this is buggin' me
okay, lets say the database consists of:

emp_name
roy
joe
billy
gus


cf_code (simplified)


select * from names


Who woule you like to fire?

#emp_name# NoYes





In order for this to work i have to specify a name so my radio buttons will
work. In order to give my radio buttons a name i have to give them a dynamic
name (like #emp_name#)

so when i go to my next page, how do i call those dynamic set feild names?

like #form.#emp_name##?

know what i mean?

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



RE: dynamic form

2000-10-02 Thread Jaime Garza

1. A crazy idea that I have used before

-form

 select * from names


Who woule you like to fire?

#emp_name# NoYes




-action

you get a FORM.fired that looks like "0@roy,1@joe,1@billy,0@gus"

  v=ListGetAt(f, 1, '@')
  empname=ListGetAt(f, 2, '@')
  


or something like that.  I did not test it of course.

2. Or you could just play with the "Evaluate" function as
#Evaluate("FORM."&emp_name)# where you still need to get the emp_name
somehow.

FYI I added checked to no, just in case you want a default.  Or you could
check to see if emp_name is "Steve Jobs" and set that to "Yes" (Based on the
murdering of NASDAQ.)






> -Original Message-
> From: Gavin Myers [mailto:[EMAIL PROTECTED]]
> Sent: Monday, October 02, 2000 2:31 PM
> To: CF-Talk
> Subject: dynamic form
>
>
> this is buggin' me
> okay, lets say the database consists of:
>
> emp_name
> roy
> joe
> billy
> gus
>
>
> cf_code (simplified)
>
> 
> select * from names
> 
> 
> Who woule you like to fire?
> 
> #emp_name# No value = "1">Yes
> 
> 
> 
>
>
> In order for this to work i have to specify a name so my radio
> buttons will
> work. In order to give my radio buttons a name i have to give
> them a dynamic
> name (like #emp_name#)
>
> so when i go to my next page, how do i call those dynamic set feild names?
>
> like #form.#emp_name##?
>
> know what i mean?
> --
> --
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
> --
> 
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

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



Re: dynamic form

2000-10-03 Thread eric fleming

This is a multi-part message in MIME format.
--A581FDABC5BDB8988D157762
Content-Type: multipart/alternative;
 boundary="117F3F41F77A1390D6E587AC"


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

put it in a 

er:c


Gavin Myers wrote:

> this is buggin' me
> okay, lets say the database consists of:
>
> emp_name
> roy
> joe
> billy
> gus
>
> cf_code (simplified)
>
> 
> select * from names
> 
> 
> Who woule you like to fire?
> 
> #emp_name# No value = "1">Yes
> 
> 
> 
>
> In order for this to work i have to specify a name so my radio buttons will
> work. In order to give my radio buttons a name i have to give them a dynamic
> name (like #emp_name#)
>
> so when i go to my next page, how do i call those dynamic set feild names?
>
> like #form.#emp_name##?
>
> know what i mean?
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

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



put it in a 
er:c
 
Gavin Myers wrote:
this is buggin' me
okay, lets say the database consists of:
emp_name
roy
joe
billy
gus
cf_code (simplified)

select * from names


Who woule you like to fire?

#emp_name# NoYes



In order for this to work i have to specify a name so my radio buttons
will
work. In order to give my radio buttons a name i have to give them
a dynamic
name (like #emp_name#)
so when i go to my next page, how do i call those dynamic set feild
names?
like #form.#emp_name##?
know what i mean?
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/">http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk">http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
or send a message to [EMAIL PROTECTED] with 'unsubscribe'
in the body.


--117F3F41F77A1390D6E587AC--

--A581FDABC5BDB8988D157762
Content-Type: text/x-vcard; charset=us-ascii;
 name="eflem.vcf"
Content-Transfer-Encoding: 7bit
Content-Description: Card for eric fleming
Content-Disposition: attachment;
 filename="eflem.vcf"

begin:vcard 
n:Fleming;Eric
tel;fax:954.351.9099
tel;work:954.351.5554 ext. 113
x-mozilla-html:FALSE
url:www.tekgroup.com
org:TEK group International Inc.;Programming
adr:;;;Ft. Lauderdale;FL;;
version:2.1
email;internet:[EMAIL PROTECTED]
title:Internet Consultant
fn:Eric Fleming
end:vcard

--A581FDABC5BDB8988D157762--

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



RE: dynamic form

2000-10-03 Thread Wayne E. Pfeffer

i know exactly what you mean, i've had to do it myself more times than i
care to remember.  on the following page, to "decode" the form fields, you
can do one of two two things, you can either walk the formfields structure,
or you can do something like this:





or something like that.  at any rate if you want to be able to generate form
fields on the fly like this, the page that you are submitting to, will need
to do "evaluate" on the fields.

Wayne E. Pfeffer
Sr. Web Apps Developer
NetRadio.com

-Original Message-
From: eric fleming [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 03, 2000 8:21 AM
To: CF-Talk
Subject: Re: dynamic form


This is a multi-part message in MIME format.
--A581FDABC5BDB8988D157762
Content-Type: multipart/alternative;
 boundary="117F3F41F77A1390D6E587AC"


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

put it in a 

er:c


Gavin Myers wrote:

> this is buggin' me
> okay, lets say the database consists of:
>
> emp_name
> roy
> joe
> billy
> gus
>
> cf_code (simplified)
>
> 
> select * from names
> 
> 
> Who woule you like to fire?
> 
> #emp_name# No value = "1">Yes
> 
> 
> 
>
> In order for this to work i have to specify a name so my radio buttons
will
> work. In order to give my radio buttons a name i have to give them a
dynamic
> name (like #emp_name#)
>
> so when i go to my next page, how do i call those dynamic set feild names?
>
> like #form.#emp_name##?
>
> know what i mean?
> --

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

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



put it in a <cfloop query="queryname"></cfloop>
er:c
 
Gavin Myers wrote:
this is buggin' me
okay, lets say the database consists of:
emp_name
roy
joe
billy
gus
cf_code (simplified)
<cfquery>
select * from names
</cfquery>
<cfform>
Who woule you like to fire?
<cfoutput>
#emp_name# <cfinput type = "radio" value = "0">No<cfinput type
= "radio"
value = "1">Yes
</cfoutput>
<input type = "submit" value = "submit">
</cfform>
In order for this to work i have to specify a name so my radio buttons
will
work. In order to give my radio buttons a name i have to give them
a dynamic
name (like #emp_name#)
so when i go to my next page, how do i call those dynamic set feild
names?
like #form.#emp_name##?
know what i mean?

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/">http://www.mai
[EMAIL PROTECTED]/
To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_tal
k">http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_ta
lk
or send a message to [EMAIL PROTECTED] with 'unsubscribe'
in the body.


--117F3F41F77A1390D6E587AC--

--A581FDABC5BDB8988D157762
Content-Type: text/x-vcard; charset=us-ascii;
 name="eflem.vcf"
Content-Transfer-Encoding: 7bit
Content-Description: Card for eric fleming
Content-Disposition: attachment;
 filename="eflem.vcf"

begin:vcard
n:Fleming;Eric
tel;fax:954.351.9099
tel;work:954.351.5554 ext. 113
x-mozilla-html:FALSE
url:www.tekgroup.com
org:TEK group International Inc.;Programming
adr:;;;Ft. Lauderdale;FL;;
version:2.1
email;internet:[EMAIL PROTECTED]
title:Internet Consultant
fn:Eric Fleming
end:vcard

--A581FDABC5BDB8988D157762--


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

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



RE: dynamic form

2000-10-05 Thread Warrick, Mark

Try this in your select form template:






 Fire 'em  Don't Fire 'em 



At the bottom of the form (hidden):




Then in the template which displays the results:











#employee_name# Fire 'emDon't Fire 
'em



--
Mark Warrick
Phone: (714) 547-5386
Efax.com Fax: (801) 730-7289
Personal Email: [EMAIL PROTECTED]
Personal URL: http://www.warrick.net 
Business Email: [EMAIL PROTECTED]
Business URL: http://www.fusioneers.com
ICQ: 346566
--


> -Original Message-
> From: Gavin Myers [mailto:[EMAIL PROTECTED]]
> Sent: Monday, October 02, 2000 12:31 PM
> To: CF-Talk
> Subject: dynamic form
> 
> 
> this is buggin' me
> okay, lets say the database consists of:
> 
> emp_name
> roy
> joe
> billy
> gus
> 
> 
> cf_code (simplified)
> 
> 
> select * from names
> 
> 
> Who woule you like to fire?
> 
> #emp_name# No value = "1">Yes
> 
> 
> 
> 
> 
> In order for this to work i have to specify a name so my radio 
> buttons will
> work. In order to give my radio buttons a name i have to give 
> them a dynamic
> name (like #emp_name#)
> 
> so when i go to my next page, how do i call those dynamic set feild names?
> 
> like #form.#emp_name##?
> 
> know what i mean?
> --
> 
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit 
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf
_talk or send a message to [EMAIL PROTECTED] with 'unsubscribe' in the 
body.

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebarRsts&bodyRsts/cf_talk or send a message 
to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Dynamic PDF

2000-10-30 Thread Kevin Langevin

There was a thread on this previously...I believe that the main app that
could do this was removed from circulation due to legal problems with
Adobe...but I think someone posted a somewhat complex workaround.  You
should be able to find info in the archives...The archives are still around,
aren't they?


-Kev


> -Original Message-
> From: Mike Sullivan [mailto:[EMAIL PROTECTED]]
> Sent: Monday, October 30, 2000 6:53 PM
> To: CF-Talk
> Subject: Dynamic PDF
>
>
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> All,
> Is there a way to create PDFs on the fly?  My users get a results set
> from a query and I would like to give them a dynamic way to print it.
>
> Any thoughts on how it can be done?
>
> TIA
> Mike
>
> -BEGIN PGP SIGNATURE-
> Version: PGPfreeware 6.5.3 for non-commercial use 
>
> iQA/AwUBOf4JHXYFmKomMlANEQJJ9QCgztd+pjH8xqPClOc8t4+C+AyTbGwAoL8i
> +Qlmxq7j9jccBYIrzdqrT4hA
> =uLlS
> -END PGP SIGNATURE-
> --
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
> or send a message with 'unsubscribe' in the body to
> [EMAIL PROTECTED]


Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



Re: Dynamic PDF

2000-10-30 Thread Stephen M. Aylor


www.activePDF.com

html ---> pdf server based tools.

or

www.digapp.com  digital applications or

the world famous Thomas Merz pdf libraries

www.pdflib.com

Steve

- Original Message -
From: "Kevin Langevin" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Monday, October 30, 2000 4:04 PM
Subject: RE: Dynamic PDF


> There was a thread on this previously...I believe that the main app that
> could do this was removed from circulation due to legal problems with
> Adobe...but I think someone posted a somewhat complex workaround.  You
> should be able to find info in the archives...The archives are still
around,
> aren't they?
>
> 
> -Kev
> 
>
> > -Original Message-
> > From: Mike Sullivan [mailto:[EMAIL PROTECTED]]
> > Sent: Monday, October 30, 2000 6:53 PM
> > To: CF-Talk
> > Subject: Dynamic PDF
> >
> >
> > -BEGIN PGP SIGNED MESSAGE-
> > Hash: SHA1
> >
> > All,
> > Is there a way to create PDFs on the fly?  My users get a results set
> > from a query and I would like to give them a dynamic way to print it.
> >
> > Any thoughts on how it can be done?
> >
> > TIA
> > Mike
> >
> > -BEGIN PGP SIGNATURE-
> > Version: PGPfreeware 6.5.3 for non-commercial use <http://www.pgp.com>
> >
> > iQA/AwUBOf4JHXYFmKomMlANEQJJ9QCgztd+pjH8xqPClOc8t4+C+AyTbGwAoL8i
> > +Qlmxq7j9jccBYIrzdqrT4hA
> > =uLlS
> > -END PGP SIGNATURE-
> > --
> > --
> > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
> > or send a message with 'unsubscribe' in the body to
> > [EMAIL PROTECTED]
>
> --
--
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send
a message with 'unsubscribe' in the body to
[EMAIL PROTECTED]
>
>



Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



Re: Dynamic PDF

2000-10-30 Thread Stephen M. Aylor


It all basically depends on what the application is.

Crystal Reports, Word, Excel, tabular data output in a browser/html from a
cf query 

www.pdfzone.com

www.planetpdf.com

Stephen M. Aylor
Aylor Insurance Agency, Inc.
"Specialized insurance for Technology Risks"
[EMAIL PROTECTED]
949.581.2333 voice
949.581.2814 fax



Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



Re: Dynamic PDF

2000-10-30 Thread Stephen M. Aylor


Ops ...What platform(s)?  Browsers?

Steve

> 
> All,
> Is there a way to create PDFs on the fly?  My users get a results set
> from a query and I would like to give them a dynamic way to print it.
> 
> Any thoughts on how it can be done?
> 
> TIA
> Mike 




Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



RE: Dynamic PDF

2000-10-31 Thread Daye, Marianne

There's a custom tag called htm2pdf that does this.
http://devex.allaire.com/developer/gallery/SearchResults.cfm?keywords=html2p
df&search=search.  I haven't actually put it to the test, but I plan to use
it in the near future.  If you use it, could you tell me what you think and
problems you might have encountered?

Marianne Daye
Programmer/Analyst
Information Delivery Systems
http://ids.rti.org


-Original Message-
From: Mike Sullivan [mailto:[EMAIL PROTECTED]]
Sent: Monday, October 30, 2000 6:53 PM
To: CF-Talk
Subject: Dynamic PDF


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

All,
Is there a way to create PDFs on the fly?  My users get a results set
from a query and I would like to give them a dynamic way to print it.

Any thoughts on how it can be done?

TIA
Mike 

-BEGIN PGP SIGNATURE-
Version: PGPfreeware 6.5.3 for non-commercial use 

iQA/AwUBOf4JHXYFmKomMlANEQJJ9QCgztd+pjH8xqPClOc8t4+C+AyTbGwAoL8i
+Qlmxq7j9jccBYIrzdqrT4hA
=uLlS
-END PGP SIGNATURE-


Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a
message with 'unsubscribe' in the body to [EMAIL PROTECTED]

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



Re: Dynamic PDF

2000-10-31 Thread Ryan

>
>All,
>Is there a way to create PDFs on the fly?  My users get a results set
>from a query and I would like to give them a dynamic way to print it.
>
>Any thoughts on how it can be done?

A PDF file is really text inside, if you just need to change a few
parts of the file, like their name + account number or something,
but the rest of the document stays the same, you can create the PDF
and then open it and do a search and replace for your place holder
(like --NAME-HERE--). This works best if there is nothing else on
the same line after the text you are replacing, the different sizes
of replacement strings may mess up what comes later. Example:

Joe Smith   Other Stuff
Cathly Brunagamnecktie  Other Stuff (not lined up)

The CFX to do html2pdf also sounds promising, but of course won't
work for those of us on the worlds best free operating system...


Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



Re: Dynamic PDF

2000-10-31 Thread Howie Hamlin

Nope, not true - a PDF file uses compression.  More info at:
http://www.wotsit.org/download.asp?f=pdfspec

Regards,

Howie

- Original Message -
From: "Ryan" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, October 31, 2000 9:12 AM
Subject: Re: Dynamic PDF


> >
> >All,
> >Is there a way to create PDFs on the fly?  My users get a results set
> >from a query and I would like to give them a dynamic way to print it.
> >
> >Any thoughts on how it can be done?
>
> A PDF file is really text inside, if you just need to change a few
> parts of the file, like their name + account number or something,
> but the rest of the document stays the same, you can create the PDF
> and then open it and do a search and replace for your place holder
> (like --NAME-HERE--). This works best if there is nothing else on
> the same line after the text you are replacing, the different sizes
> of replacement strings may mess up what comes later. Example:
>
> Joe Smith Other Stuff
> Cathly Brunagamnecktie Other Stuff (not lined up)
>



Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



RE: Dynamic PDF

2000-10-31 Thread Ian Lurie

Generating PDF files on the fly is tricky. While you can use Acrobat
Distiller to create an ASCII-based PDF file, the ASCII version is EXTREMELY
bulky. The binary, compressed version is really the only way to go.

We've had better success generating PostScript or RTF, and then converting
that to PDF, or generating FDF (forms data format) and merging that into PDF
on the fly. The FDF concept is elegant, but very limited, as you can't allow
for differing document lengths.

There are also pre-built products out there like Miramo by DataZone
(www.datazone.com) that let you do extremely complex dynamic generation, but
you're typically looking at $10k+ just to buy the software...

Ian Lurie
www.portentinteractive.com
www.pdfconnect.com

-Original Message-
From: Howie Hamlin [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 31, 2000 6:34 AM
To: CF-Talk
Subject: Re: Dynamic PDF


Nope, not true - a PDF file uses compression.  More info at:
http://www.wotsit.org/download.asp?f=pdfspec

Regards,

Howie

- Original Message -
From: "Ryan" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, October 31, 2000 9:12 AM
Subject: Re: Dynamic PDF


> >
> >All,
> >Is there a way to create PDFs on the fly?  My users get a results set
> >from a query and I would like to give them a dynamic way to print it.
> >
> >Any thoughts on how it can be done?
>
> A PDF file is really text inside, if you just need to change a few
> parts of the file, like their name + account number or something,
> but the rest of the document stays the same, you can create the PDF
> and then open it and do a search and replace for your place holder
> (like --NAME-HERE--). This works best if there is nothing else on
> the same line after the text you are replacing, the different sizes
> of replacement strings may mess up what comes later. Example:
>
> Joe Smith Other Stuff
> Cathly Brunagamnecktie Other Stuff (not lined up)
>




Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a
message with 'unsubscribe' in the body to [EMAIL PROTECTED]


Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



RE: Dynamic PDF

2000-10-31 Thread Gieseman, Athelene

I finally have the web piece of Crystal Reports running and it works quite
well.  Get a hold of CR version 8 if you can.

Athelene Gieseman
[EMAIL PROTECTED]


-Original Message-
From: Mike Sullivan [mailto:[EMAIL PROTECTED]]
Sent: Monday, October 30, 2000 5:53 PM
To: CF-Talk
Subject: Dynamic PDF


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

All,
Is there a way to create PDFs on the fly?  My users get a results set
from a query and I would like to give them a dynamic way to print it.

Any thoughts on how it can be done?

TIA
Mike 

-BEGIN PGP SIGNATURE-
Version: PGPfreeware 6.5.3 for non-commercial use 

iQA/AwUBOf4JHXYFmKomMlANEQJJ9QCgztd+pjH8xqPClOc8t4+C+AyTbGwAoL8i
+Qlmxq7j9jccBYIrzdqrT4hA
=uLlS
-END PGP SIGNATURE-


Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a
message with 'unsubscribe' in the body to [EMAIL PROTECTED]

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



Re: Dynamic PDF

2000-10-31 Thread Ryan

At 09:33 10/31/00 -0500, you wrote:
>Nope, not true - a PDF file uses compression.  More info at:
>http://www.wotsit.org/download.asp?f=pdfspec

It may or may not use compression, its not part of the standard.
Any PDF reader should be able to read a PDF if its compressed
or not.

RPS


Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



Re: Dynamic PDF

2000-10-31 Thread Stephen M. Aylor


> A PDF file is really text inside,

true... but pdf accounts for every bit in the file, and changes will cause
the file to not open many times.

> if you just need to change a few
> parts of the file, like their name + account number or something,
> but the rest of the document stays the same, you can create the PDF
> and then open it and do a search and replace for your place holder
> (like --NAME-HERE--).

My experieince has been rather poor with this technique, and is likely not
recommended forything other than very simple pdf files.

This works best if there is nothing else on
> the same line after the text you are replacing, the different sizes
> of replacement strings may mess up what comes later.

exactly the problem

www.activePDF.com has server side tools to assist with this - reasonable.
For those benefiting from the FREE OS - www.digapp.com - an non free
solution for your free OS.  or www.pdflib.com   lots a work tho'

Steve



Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



Re: Dynamic PDF

2000-11-01 Thread Sean Renet

Mike check out www.activepdf.com
I use their activepdf toolkit to generate all kinds of pdf files on the fly
- Original Message -
From: "Mike Sullivan" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Monday, October 30, 2000 3:53 PM
Subject: Dynamic PDF


> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> All,
> Is there a way to create PDFs on the fly?  My users get a results set
> from a query and I would like to give them a dynamic way to print it.
>
> Any thoughts on how it can be done?
>
> TIA
> Mike
>
> -BEGIN PGP SIGNATURE-
> Version: PGPfreeware 6.5.3 for non-commercial use 
>
> iQA/AwUBOf4JHXYFmKomMlANEQJJ9QCgztd+pjH8xqPClOc8t4+C+AyTbGwAoL8i
> +Qlmxq7j9jccBYIrzdqrT4hA
> =uLlS
> -END PGP SIGNATURE-
> --
--
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send
a message with 'unsubscribe' in the body to
[EMAIL PROTECTED]
>


Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



RE: Dynamic PDF

2000-11-01 Thread Simon Horwith

Depends on what you want to do, and what your budget is like.  I highly
recommend activepdf server as well, especially for generating pdf's with
embedded imaging and/or pdf's generated directly from postscript.  If you
want to go for a cheap method with little flexibility in terms of
formatting, you could manually create it.

~Simon

-Original Message-
From: Sean Renet [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 01, 2000 4:39 PM
To: CF-Talk
Subject: Re: Dynamic PDF


Mike check out www.activepdf.com
I use their activepdf toolkit to generate all kinds of pdf files on the fly
- Original Message -
From: "Mike Sullivan" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Monday, October 30, 2000 3:53 PM
Subject: Dynamic PDF


> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> All,
> Is there a way to create PDFs on the fly?  My users get a results set
> from a query and I would like to give them a dynamic way to print it.
>
> Any thoughts on how it can be done?
>
> TIA
> Mike
>
> -BEGIN PGP SIGNATURE-
> Version: PGPfreeware 6.5.3 for non-commercial use <http://www.pgp.com>
>
> iQA/AwUBOf4JHXYFmKomMlANEQJJ9QCgztd+pjH8xqPClOc8t4+C+AyTbGwAoL8i
> +Qlmxq7j9jccBYIrzdqrT4hA
> =uLlS
> -END PGP SIGNATURE-
> --
--
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send
a message with 'unsubscribe' in the body to
[EMAIL PROTECTED]
>



Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a
message with 'unsubscribe' in the body to [EMAIL PROTECTED]

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



RE: dynamic value

2000-11-07 Thread Hayes, David

I'm not clear what you are having trouble with: is it the total dollars or
the total item count?   

-Original Message-
From: Kathy Bergman [mailto:[EMAIL PROTECTED]]
Sent: Monday, November 06, 2000 3:40 PM
To: CF-Talk
Subject: dynamic value


I'm stumped and could sure use help!  How can I get a total number of all
items ordered?  The item and quantities picked of each item display, but
I've run out of ideas for outputting the total amounts.  Listlen doesn't
work.  Any other ideas?  thanks!!



Select Price, Prod_desc, prodcode
>From Prodcodes
Where prodcode = '#listelement#'

  
  








#getproducts.prod_desc#
#NumberFormat(Getproducts.Price,'$9(.99)')#
#thisvalue#
#NumberFormat(itemsubtotal,'$9(.99)')#





 


Subtotal 
 
#itemsordered#
 #NumberFormat(OrderSubTotal,'$9(.99)')# 


Sales Tax 
 
 
 #NumberFormat(SalesTax,'$9(.99)')# 


Shipping 
 
 
 #NumberFormat(Shipping,'$9(.99)')#



TOTAL
 
#TotalQty#
 #NumberFormat(OrderTotal,'$9(.99)')# 








Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a
message with 'unsubscribe' in the body to [EMAIL PROTECTED]

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



Re: Dynamic PDF

2000-11-07 Thread Stephen M. Aylor


This may help.

http://www.zeon.com.tw/pdfdrive.htm

My thought process on this is ... buy this tool / pdf printer driver -

Load it and MS Word on the server.

Create your .doc or .rtf files via cf .. whatever 

 to control word to print your .doc/.rtf using this printer
driver.

Q: is it MS "legal" to put MS Word on a server and remotely control it to
print stuff out?

I dunno any C/C++ / Java - but you could also create your document and use
www.pdflib.com tools to create and display.  I do not know what the
commercial license fees are.  I am guessing that you've already peeked at
www.activePDF.com, and found their tools not in the budget - cuz we chatted
about them. (i think).

There is also Fastio Systems tools ClibPDF - as I recall - over my skull.
www.fastio.com  If your good with that kinda thing.

I dunno about you other folk... but Im getting kinda burnt on trying to find
a reasonable - cheap and robust way to just create a freakin PDF file -
Adobe sure seems to make it a pain in the arse to work with their stuff
server side - affordably.

Stephen M. Aylor
Aylor Insurance Agency, Inc.
"Specialized insurance for Technology Risks"
[EMAIL PROTECTED]



Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



RE: Dynamic PDF

2000-11-07 Thread Dan Haley

Steve,

Didn't see the original post on this thread, so I don't know if this is
totally applicable, but I think you and I may have talked before on this PDF
issue concerning printing to PDF on a server.  At that time I said I kept
getting the go ahead from Adobe and you were surprised.  I followed up an
additional time and explained the situation in detail to the person I spoke
to and got a detailed reply from them.  The issue they have with Adobe on a
server is if your users are actively using the product themselves - i.e.,
controlling an instance of Adobe Acrobat to create editable documents and
editing them using your copy of Acrobat.  If all you are doing is printing
to PDF a document you have created for your customer using Adobe Acrobat,
and then distributing the PDF to the customer, there is nothing wrong with
that.  To edit the document, your customer must own their own copy of Adobe
Acrobat.  You have a single machine, single license - you are in compliance.
All you are doing is automating a process that could be performed by a
human.  

I would assume that MS Word would be similar, but it depends on what you are
doing.  If you have a site that allows a user to write a resume and they can
then send that resume in Word format to an employer, that would probably
violate your license agreement as your end user is 'using' your copy of
Word.  If instead they typed in their resume and you send them a .doc file,
then YOU are using Word to create a document for them.  They then need their
own copy of Word to work with that file.

Again, I don't know if the same logic applies to Word, but on Acrobat I'm
pretty comfortable using it to print to PDF on the server.

Dan

-Original Message-
From: Stephen M. Aylor [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 08, 2000 12:13 AM
To: CF-Talk
Cc: [EMAIL PROTECTED]
Subject: Re: Dynamic PDF



This may help.

http://www.zeon.com.tw/pdfdrive.htm

My thought process on this is ... buy this tool / pdf printer driver -

Load it and MS Word on the server.

Create your .doc or .rtf files via cf .. whatever 

 to control word to print your .doc/.rtf using this printer
driver.

Q: is it MS "legal" to put MS Word on a server and remotely control it to
print stuff out?

I dunno any C/C++ / Java - but you could also create your document and use
www.pdflib.com tools to create and display.  I do not know what the
commercial license fees are.  I am guessing that you've already peeked at
www.activePDF.com, and found their tools not in the budget - cuz we chatted
about them. (i think).

There is also Fastio Systems tools ClibPDF - as I recall - over my skull.
www.fastio.com  If your good with that kinda thing.

I dunno about you other folk... but Im getting kinda burnt on trying to find
a reasonable - cheap and robust way to just create a freakin PDF file -
Adobe sure seems to make it a pain in the arse to work with their stuff
server side - affordably.

Stephen M. Aylor
Aylor Insurance Agency, Inc.
"Specialized insurance for Technology Risks"
[EMAIL PROTECTED]




Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a
message with 'unsubscribe' in the body to [EMAIL PROTECTED]


The information contained in this message is privileged and confidential.  It is 
intended solely for the use of the named recipient.  If you are not the intended 
recipient, you are hereby notified that any disclosure, copying, distribution, or use 
of the contents of this transmission is strictly prohibited.  If you receive this 
message in error, please notify the sender immediately.  Thank you.

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



RE: Dynamic PDF

2000-11-09 Thread Dave Watts

> Q: is it MS "legal" to put MS Word on a server and remotely 
> control it to print stuff out?

I'm not a lawyer, but according to the MS Developer Days presentation I
attended a couple of years ago, as long as you pay for the copy of Office
you put on the server, you're OK.

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

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



  1   2   3   4   5   6   7   8   9   >