Re: Dynamic Custom Tag Name

2002-06-22 Thread Paul Giesenhagen
Todd, Actually it seems to be working correctly ... my secondary question was through the following example: Below I have the module that calls the whichtag variable... then between that cfmodule, I may have another similar cfmodule call that calls an alertbox or other custom tag

Re: Dynamic Custom Tag Name

2002-06-22 Thread Todd
similar cfmodule call that calls an alertbox or other custom tag ... These tags are always local. I guess I am making sure that I do not have any problems running a cfmodule within a cfmodule ... (looking down the road). cfmodule name=#variables.whichtag# !--- Expanded include --- cfmodule template

Call a variable in a Custom Tag?

2002-06-11 Thread Dave Carabetta
I know that, within a custom tag, I can set/update a variables on the calling page using the caller scope. However, is there a way to do the opposite? On the calling page, I'd like to reach in to the custom tag and pull out a variable that gets set. The reason why I'd like to do

RE: Call a variable in a Custom Tag?

2002-06-11 Thread Dave Watts
I know that, within a custom tag, I can set/update a variables on the calling page using the caller scope. However, is there a way to do the opposite? On the calling page, I'd like to reach in to the custom tag and pull out a variable that gets set. The reason why I'd like to do

RE: Call a variable in a Custom Tag?

2002-06-11 Thread Philip Arnold - ASP
I know that, within a custom tag, I can set/update a variables on the calling page using the caller scope. However, is there a way to do the opposite? On the calling page, I'd like to reach in to the custom tag and pull out a variable that gets set. The reason why I'd like to do

RE: Call a variable in a Custom Tag?

2002-06-11 Thread Ian Lurie
Try CFSET SetVariable(Caller.#variable#, VALUE) Ben Forta's basic CF 5.0 book has a great section on this - page 632 or so. Ian -Original Message- From: Dave Carabetta [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 11, 2002 7:38 AM To: CF-Talk Subject: Call a variable in a Custom Tag

RE: Call a variable in a Custom Tag?

2002-06-11 Thread Ben Johnson
The reason why I'd like to do it this was is that it seems that my custom tag would be a bit more modular in that if the tag is called from another application using a different variable name, I'm not dependant on the variable name I've used in the custom tag. Dave, Try passing

RE: Call a variable in a Custom Tag?

2002-06-11 Thread Raymond Camden
The basic answer to your question is no. You can't 'reach into' a tag and grab a variable. However, it sounds to me like you are saying that you need a way for the custom tag to return a dynamic variable name. A good example of why this is needed: Imagine a custom tag that returns a variable

RE: Call a variable in a Custom Tag?

2002-06-11 Thread Michael Dorr
The best way I know to do this is to use request scoped variables. !---Set request scoped variable - in custom tag, or wherever--- cfset request.myVar = 1000 !---Get variable value--- cfoutput#request.myVar#/cfoutput Whenever you set a request scoped variable, you are able to call

RE: Call a variable in a Custom Tag?

2002-06-11 Thread Dave Carabetta
No, to the best of my knowledge, the internal local scope of the custom tag isn't exposed to the calling page - after all, that would defeat the purpose of having a separate local scope, and anyway, the custom tag has finished executing (and its local scope no longer exists) by the time that you

RE: Call a variable in a Custom Tag?

2002-06-11 Thread Philip Arnold - ASP
Thanks all. I didn't think you could do it, and your explanations make sense. I'm going to go the SetVariable() to solve my problem. It's not the use of SetVariable() that will solve your problems, but the scope you use on the variable Philip Arnold Technical Director Certified ColdFusion

Re: Call a variable in a Custom Tag?

2002-06-11 Thread Jamie Jackson
Use the variable name as an attribute within the custom tag call, then set that (dynamic) variable to the caller scope in the tag. cf_myTag att1=blah1 att2=blah2 var=myVar!--- tag sets caller.myVar, for later use --- cfoutput#myVar#/cfoutput Jamie On Tue, 11 Jun 2002 10:38:21 -0400, in cf

RE: QuerySim custom tag and Fusebox 3

2002-05-28 Thread heirophant mm
Well, that's simple enough. Thanks, Alistair. I would never have seen that. And thanks everyone for their input. Date: Mon, 27 May 2002 11:24:49 +0100 From: Alistair Davidson [EMAIL PROTECTED] Subject: RE: QuerySim custom tag and Fusebox 3 Message-ID: [EMAIL PROTECTED] Hi guys The problem

RE: QuerySim custom tag and Fusebox 3

2002-05-27 Thread Alistair Davidson
Freeserve.com PLC www.smartgroups.com -Original Message- From: Hal Helms [mailto:[EMAIL PROTECTED]] Sent: 26 May 2002 17:07 To: CF-Talk Subject: RE: QuerySim custom tag and Fusebox 3 I just tried it out without problems. Here's what I have: A home circuit with a ShoppingCart circuit beneath

RE: QuerySim custom tag and Fusebox 3

2002-05-27 Thread heirophant mm
[EMAIL PROTECTED] Subject: RE: QuerySim custom tag and Fusebox 3 Message-ID: 000501c204cf$5781c920$c0d45c42@BigHal I just tried it out without problems. Here's what I have: A home circuit with a ShoppingCart circuit beneath it (as well as some other ones). In the FBX_Settings.cfm file

RE: QuerySim custom tag and Fusebox 3

2002-05-27 Thread Hal Helms
You might also try the core files available from techspedition.com and see if the error reproduces. -Original Message- From: heirophant mm [mailto:[EMAIL PROTECTED]] Sent: Monday, May 27, 2002 1:38 PM To: CF-Talk Subject: RE: QuerySim custom tag and Fusebox 3 That is exactly

RE: QuerySim custom tag and Fusebox 3

2002-05-26 Thread heirophant mm
I'm actually using the #request.self#?fuseaction=#xfa.something# notation, i was just writing it in short hand by typing /index.cfm. That was confusing on my part, sorry. I have looked into the problem a little more, and here is what i have found. It seems that QuerySim, or any custom tag

RE: QuerySim custom tag and Fusebox 3

2002-05-26 Thread Hal Helms
: Sunday, May 26, 2002 10:41 AM To: CF-Talk Subject: RE: QuerySim custom tag and Fusebox 3 I'm actually using the #request.self#?fuseaction=#xfa.something# notation, i was just writing it in short hand by typing /index.cfm. That was confusing on my part, sorry. I have looked into the problem

QuerySim custom tag and Fusebox 3

2002-05-25 Thread heirophant mm
Hi everyone, I'm using the QuerySim custom tag (find it at www.halhelms.com) to assist in developing a Fusebox 3 site. When I use it in a template that I am viewing directly rather than through the Fusebox ( as in /index.cfm?fuseaction=circuit.fuse), it works fine. Also, QuerySim works

RE: QuerySim custom tag and Fusebox 3

2002-05-25 Thread Hal Helms
: QuerySim custom tag and Fusebox 3 Hi everyone, I'm using the QuerySim custom tag (find it at www.halhelms.com) to assist in developing a Fusebox 3 site. When I use it in a template that I am viewing directly rather than through the Fusebox ( as in /index.cfm?fuseaction=circuit.fuse

RE: HELP! Searching for a Custom Tag

2002-05-24 Thread Peter Tilbrook
Woods [mailto:[EMAIL PROTECTED]] Sent: Thursday, 23 May 2002 11:33 PM To: CF-Talk Subject: HELP! Searching for a Custom Tag Greetings All, I am looking for the custom tag called CFX_ParseHTML it appears that when we upgraded our server this tag Was not copied over.. I have been searching all over

HELP! Searching for a Custom Tag

2002-05-23 Thread Mallory Woods
Greetings All, I am looking for the custom tag called CFX_ParseHTML it appears that when we upgraded our server this tag Was not copied over.. I have been searching all over for it and every place I look no longer has the tag.. Does anyone have a working link or perhaps the file itself

RE: UDFs in a Custom Tag problem

2002-05-23 Thread Raymond Camden
-Original Message- From: James Sleeman [mailto:[EMAIL PROTECTED]] Sent: Sunday, May 19, 2002 8:28 PM To: CF-Talk Subject: Re: UDFs in a Custom Tag problem You have to do it as an include, the function declaration actually happens on parsing of the template you see, so when your

cf_tree custom tag

2002-05-21 Thread David Green
Hello list, Thanks for the help Well working on converting my cf applets back to 4.5 using custom tag. Cfgrid is fixed but now I'm having a problem with the cf_tree. It seems that a couple of the parameters have changed in the custom tag. (queryasroot and expand) am getting an error

Re: cf_tree custom tag

2002-05-21 Thread David Green
Just got a call from Macromedia. They have changed there mind on charging me for the advice of the custom tag and are documenting the problem of cfgrid and JDK 1.4.0. But if anybody has help on the cf_tree I would appreciate it. Thanks David - Original Message - From: David Green

Re: UDFs in a Custom Tag problem

2002-05-20 Thread heirophant mm
] Subject: Re: UDFs in a Custom Tag problem Message-ID: 0d8001c1ff95$376b8d90$680a0a0a@impc04 You have to do it as an include, the function declaration actually happens on parsing of the template you see, so when your custom tag gets hit on the end tag that parser reads the custom tag template again

Re: UDFs in a Custom Tag problem

2002-05-19 Thread James Sleeman
You have to do it as an include, the function declaration actually happens on parsing of the template you see, so when your custom tag gets hit on the end tag that parser reads the custom tag template again, and sees a declaration for isOperator - no matter that it won't be used this time around

UDFs in a Custom Tag problem

2002-05-17 Thread heirophant mm
Hello developers, I'm writing a custom tag, and I've written some UDFs to clean up some of the code within the custom tag. Only the custom tag uses these UDFs - they're pretty specialized - so I thought it would be easiest to just put them right inside the template for the custom tag. Here's

RE: UDFs in a Custom Tag problem

2002-05-17 Thread Andre Turrettini
. Keep us posted. DRE -Original Message- From: heirophant mm [mailto:[EMAIL PROTECTED]] Sent: Friday, May 17, 2002 8:28 AM To: CF-Talk Subject: UDFs in a Custom Tag problem Hello developers, I'm writing a custom tag, and I've written some UDFs to clean up some of the code within the custom

RE: UDFs in a Custom Tag problem

2002-05-17 Thread Rob Baxter
To: CF-Talk Subject: UDFs in a Custom Tag problem Hello developers, I'm writing a custom tag, and I've written some UDFs to clean up some of the code within the custom tag. Only the custom tag uses these UDFs - they're pretty specialized - so I thought it would be easiest to just put them right

Find and Replace custom tag.

2002-05-13 Thread Darren Adams
found the CFX_pcregex custom tag and just wondered if anyone had used it and could offer me advice on how to set it up ! Cheers, Darren Adams Web Developer Mob:07759 965523 Office:01252 556220 Data + Structure = Information Message End

RE: Custom Tag for Sorting

2002-04-29 Thread James Taavon
If I am using CFLDAP instead of CFQUERY, does the same code work? -Original Message- From: Joseph Thompson [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 25, 2002 12:28 PM To: CF-Talk Subject: Re: Custom Tag for Sorting Not a tag, but this will sort a query into X columns. http

Re: Custom Tag for Sorting

2002-04-29 Thread Stephen Moretti
If I am using CFLDAP instead of CFQUERY, does the same code work? Should do. CFLDAP returns information in a Coldfusion query format. Regards Stephen __ This list and all House of Fusion resources hosted by

RE: Custom Tag for Sorting

2002-04-29 Thread James Taavon
yes, but since there is no CFQUERY statement, how do select distinct? Don't I need to do that or is the sorting controlled all onthe CFOUTPUT end? -Original Message- From: Stephen Moretti [mailto:[EMAIL PROTECTED]] Sent: Monday, April 29, 2002 9:56 AM To: CF-Talk Subject: Re: Custom Tag

Re: Custom Tag for Sorting

2002-04-29 Thread Stephen Moretti
yes, but since there is no CFQUERY statement, how do select distinct? Don't I need to do that or is the sorting controlled all onthe CFOUTPUT end? Depends on your query to the LDAP server... You may already have distinct rows... If not then yes you'll have to handle this on output. In

RE: Custom Tag for Sorting

2002-04-29 Thread Raymond Camden
-Talk Subject: Re: Custom Tag for Sorting yes, but since there is no CFQUERY statement, how do select distinct? Don't I need to do that or is the sorting controlled all onthe CFOUTPUT end? Depends on your query to the LDAP server... You may already have distinct rows

RE: Custom Tag for Sorting

2002-04-29 Thread Dave Watts
FYI, and maybe I'm biased, but Query of Query under MX _really_ rocks. You have to check out the docs for it. I hope it's significantly better than it was in CF 5, where it really, really, doesn't rock at all. In my experience, it performed really slowly, and had other significant problems as

RE: Custom Tag for Sorting

2002-04-29 Thread Raymond Camden
:[EMAIL PROTECTED]] Sent: Monday, April 29, 2002 11:00 AM To: CF-Talk Subject: RE: Custom Tag for Sorting FYI, and maybe I'm biased, but Query of Query under MX _really_ rocks. You have to check out the docs for it. I hope it's significantly better than it was in CF 5, where it really

RE: Custom Tag for Sorting

2002-04-29 Thread Dave Watts
Well, I'm biased - heck, I liked QofQ in CF5, but I think you should check out the docs for QofQ in MX. If you have avoided it in the past, there is no reason not to now. For example, to me, the biggest problem was the inability to do a case insenstive search. That has been corrected.

RE: Custom Tag for Sorting

2002-04-29 Thread Matthew R. Small
I found Raymond Camden's name in the cfexample.mdb file of the CFMX preview. Cool. :-) - Matt Small -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED]] Sent: Monday, April 29, 2002 11:02 AM To: CF-Talk Subject: RE: Custom Tag for Sorting Well, I'm biased - heck, I liked

RE: Custom Tag for Sorting

2002-04-29 Thread Raymond Camden
To: CF-Talk Subject: RE: Custom Tag for Sorting I found Raymond Camden's name in the cfexample.mdb file of the CFMX preview. Cool. :-) - Matt Small -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED]] Sent: Monday, April 29, 2002 11:02 AM To: CF-Talk Subject: RE

Re: Custom Tag for Sorting

2002-04-29 Thread Stephen Moretti
Well, I'm biased - heck, I liked QofQ in CF5, but I think you should check out the docs for QofQ in MX. If you have avoided it in the past, there is no reason not to now. For example, to me, the biggest problem was the inability to do a case insenstive search. That has been corrected.

RE: Custom Tag for Sorting

2002-04-29 Thread Matt Liotta
caching a while back that covered sorting issues. You can find the presentation at, http://www.bacfug.net/Code/Complex_Caching.zip. -Matt -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Monday, April 29, 2002 8:11 AM To: CF-Talk Subject: RE: Custom Tag for Sorting

RE: Custom Tag for Sorting

2002-04-29 Thread Matthew R. Small
Yes... I also noticed that a Jacob Camden was the CIO. :-) Matt Small -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED]] Sent: Monday, April 29, 2002 11:13 AM To: CF-Talk Subject: RE: Custom Tag for Sorting Well, I kinda had a hand in making that particular part - so

RE: Custom Tag for Sorting

2002-04-29 Thread Raymond Camden
Yup, QofQ has zero performance optimizations built-in. I haven't actually played with it in CFMX, so I don't know if anything has changed. However, I did notice that CFMX has Pointbase embedded in it. Planning on figuring out what I can do with that. Further, I did a presentation on

RE: Custom Tag for Sorting

2002-04-29 Thread Raymond Camden
Well that's good to know I just dislike QofQ on principle, because it allows people (I refuse to call them developers) to write code using QofQ that a decent bit of SQL would have done infinitely better. I know it has its uses and a query sort for queries that are returned

RE: Custom Tag for Sorting

2002-04-29 Thread Dave Watts
However, I did notice that CFMX has Pointbase embedded in it. Planning on figuring out what I can do with that. That's in JRun too. I think it serves as an equivalent for Access, essentially - I don't see why you'd want to use it with a full-blown J2EE web app server. Even for the MM J2EE

RE: Custom Tag for Sorting

2002-04-29 Thread Dave Watts
PB is not 'embedded' - it's only shipped w/ the non-Win versions to support the example DBs (and the db for the docs). The version of PointBase shipped with it is the Embedded version, I think - it's called PointBase Embedded. It's been included with JRun for a while, I think, even on the

RE: Custom Tag for Sorting

2002-04-29 Thread Jesse Noller
Imagine it like this: You wouldn't run your application on a production machine w/ access, right? Yes, people do. Is this good? Not on your life. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Monday, April 29, 2002 11:30 AM To: CF-Talk Subject: RE: Custom

RE: Custom Tag for Sorting

2002-04-29 Thread Raymond Camden
for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Monday, April 29, 2002 11:30 AM To: CF-Talk Subject: RE: Custom Tag for Sorting PB

RE: Custom Tag for Sorting

2002-04-29 Thread Matt Liotta
I thought it was embedded with JRun. -Matt -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED]] Sent: Monday, April 29, 2002 8:21 AM To: CF-Talk Subject: RE: Custom Tag for Sorting Yup, QofQ has zero performance optimizations built-in. I haven't actually played

RE: Custom Tag for Sorting

2002-04-29 Thread Dave Watts
Well, that's the version - I was making sure people didn't think we were shipping a db server as part of the product. You realize, a year from now, you're going to be telling everyone how they shouldn't be using PointBase Embedded, just like you are with Access now! Dave Watts, CTO, Fig Leaf

RE: Custom Tag for Sorting

2002-04-29 Thread Matt Liotta
Actually, now that Access can make use of MSDE, it IS a good idea because MSDE rocks if you are stuck on a Windows platform. -Matt -Original Message- From: Jesse Noller [mailto:[EMAIL PROTECTED]] Sent: Monday, April 29, 2002 8:32 AM To: CF-Talk Subject: RE: Custom Tag for Sorting

RE: Custom Tag for Sorting

2002-04-29 Thread Dave Watts
Actually, now that Access can make use of MSDE, it IS a good idea because MSDE rocks if you are stuck on a Windows platform. Yes, but then you're just using Access as a front-end to a database; you're not using an Access database. MSDE does rock, though. Dave Watts, CTO, Fig Leaf Software

RE: Custom Tag for Sorting

2002-04-29 Thread James Taavon
=ThreadTopicID=604), but i need to adapt it to function with CFLDAP. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Monday, April 29, 2002 11:53 AM To: CF-Talk Subject: RE: Custom Tag for Sorting Well, that's the version - I was making sure people didn't think

Re: Custom Tag for Sorting

2002-04-29 Thread Stephen Moretti
Imagine it like this: You wouldn't run your application on a production machine w/ access, right? Yes, people do. Is this good? Not on your life. Hey now be nice MS Access is not a great database and yes it does have its limits, but I've run websites in the past with thousands of

RE: Custom Tag for Sorting

2002-04-29 Thread Neil Clark - =TMM=
CFMX uses a specially adapted version of JRun yes... AFAIK. __ 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

Re: Custom Tag for Sorting

2002-04-29 Thread Stephen Moretti
Stephen - Original Message - From: James Taavon [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, April 29, 2002 5:17 PM Subject: RE: Custom Tag for Sorting i seem to have lost control of this subject, i just wanted to know how using CFLDAP, to output my data: A E B F C G

RE: Custom Tag for Sorting

2002-04-29 Thread James Taavon
? -Original Message- From: Stephen Moretti [mailto:[EMAIL PROTECTED]] Sent: Monday, April 29, 2002 1:13 PM To: CF-Talk Subject: Re: Custom Tag for Sorting Yeah sorry about that James So what's the problem you're having using the same bit of code with a CFLDAP query object

Re: Generating Invoices / custom tag ms_word_find_and_replace

2002-04-28 Thread Martin Orth
Tray this custom tag: !--- This code is a coldfusion custom tag. tag name: cf_msword_replace tag description: With this tag it is possible to find and replace text strings in word documents. tag requirements: This tag only works on win nt boxes with an installed version of msword

Custom Tag for Sorting

2002-04-25 Thread James Taavon
I can't remember if I saw it on this list or not, but i came across a custom tag that allows you to sort a list from a query like: a e b f c g d h instead of: a b c d e f g h Does

Re: Custom Tag for Sorting

2002-04-25 Thread Joseph Thompson
Not a tag, but this will sort a query into X columns. http://cfhub.com/forum/index.cfm?FuseAction=ThreadTopicID=604 I can't remember if I saw it on this list or not, but i came across a custom tag that allows you to sort a list from a query like: a e b f c g d h instead of: a b c d

Conventional Encryption Custom Tag?

2002-04-18 Thread Jamie Jackson
I'm looking for a custom tag that will do the kind of conventional (passphrase-protected, but keyless) encryption that PGP can decrypt. Ideas? Thanks, Jamie

Re: Conventional Encryption Custom Tag?

2002-04-18 Thread Stephen Moretti
Jamie, I'm looking for a custom tag that will do the kind of conventional (passphrase-protected, but keyless) encryption that PGP can decrypt. PGP requires two keys, one public and one private. To encrypt, you must use the public key and to decrypt you must use the private key. This means

Re: Conventional Encryption Custom Tag?

2002-04-18 Thread Jamie Jackson
On Thu, 18 Apr 2002 17:51:05 +0100, in cf-talk you wrote: Jamie, I'm looking for a custom tag that will do the kind of conventional (passphrase-protected, but keyless) encryption that PGP can decrypt. PGP requires two keys, one public and one private. To encrypt, you must use the public

Custom tag (here it is)

2002-04-17 Thread Kevin Schmidt
cfdirectory name=getdirs directory=#attributes.dir# action=list sort=size ASC cfloop query=getdirs cfif (type eq Dir) AND (name neq .) AND (name neq ..)

RE: Custom tag (here it is)

2002-04-17 Thread Matthew Walker
Here's a non-recursive version. I haven't turned it into a custom tag. It's just a block of code. I might finish it and put it up as a custom tag on http://www.matthewwalker.net.nz cfset Attributes.DirectoryPath = C:\CFusion\ cfset RS = Chr(30) cfset DirectoryPathList

Re: Custom Tag

2002-04-16 Thread phumes1
Hi, I have a custom tag that I want to add some CFIF statements but I'm not sure if this can be done. Has anyone had experience doing this before? I'm passing the username, fullname and password from input boxes and the password items with checkboxes to my template. The below custom tags

Re: Custom Tag

2002-04-16 Thread Justin Scott
I have a custom tag that I want to add some CFIF statements but I'm not sure if this can be done. Has anyone had experience doing this before? I'm passing the username, fullname and password from input boxes and the password items with checkboxes to my template. The syntax you're

RE: Custom Tag

2002-04-16 Thread Craig Thomas
Is that (like) your actual code? that code calls a cfx tag (which is much different than a custom tag). Craig -Original Message- From: phumes1 [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 16, 2002 1:54 PM To: CF-Talk Subject: Re: Custom Tag Hi, I have a custom tag that I want

Re: Custom Tag

2002-04-16 Thread Mario Martinez R.
Until I know You can write anu CF code in a custom tag. You can reference the parameters as #Attributes.parametername# where parameter name is what you choosed. You can reference the output parameter as #Attributes.Result# if I don't remenber bad. But basically CF is great. Mario --- phumes1

Re: Custom Tag

2002-04-16 Thread Mario Martinez R.
Until I know You can write anu CF code in a custom tag. You can reference the parameters as #Attributes.parametername# where parameter name is what you choosed. You can reference the output parameter as #Attributes.Result# if I don't remenber bad. But basically CF is great. --- phumes1

Re: Custom Tag

2002-04-16 Thread Mario Martinez R.
I would pass a list as a parameter and make the whole stuff inside the custom tag code Mario --- Justin Scott [EMAIL PROTECTED] escribió: I have a custom tag that I want to add some CFIF statements but I'm not sure if this can be done. Has anyone had experience doing this before? I'm

Custom tag for importing data

2002-04-15 Thread Vishal Narayan
Does anyone know of any custom tags /applications that allow importing data from : 1. CSV files 2. Excel Spreadsheets 3. MS Access into one of the following formats: 1. Ms Access 2. SQL 2000 Yes, I know that we can do this directly in Excel, Access and SQL 2000 itself. But I want to be able

RE: Custom Tag Question

2002-04-12 Thread Pascal Peters
This works, but why not use Dave's approach and pass the query as a pointer. It will make more readable code. Also, you don't need to pass the recordcount into the CT. The info is available there. Calling the tag with this: cf_theS Rows=3 Query=#GetProductList# !--- begin custom tag

Custom Tag Question

2002-04-11 Thread Chad Gray
Hello, I am trying to write a super simple custom tag but im running into problems getting CFQuery information into the custom tag. Is it possible to pass Query data into a custom tag? My error is The QUERY attribute of the tag does not specify the name of an available query Im calling

Re: Custom Tag Question

2002-04-11 Thread Sharon Diorio
I am trying to write a super simple custom tag but im running into problems getting CFQuery information into the custom tag. Is it possible to pass Query data into a custom tag? Yes. The trick is evaluating it before passing it, you can't pass it by reference. It becomes an attribute

RE: Custom Tag Question

2002-04-11 Thread Dave Watts
I am trying to write a super simple custom tag but im running into problems getting CFQuery information into the custom tag. Is it possible to pass Query data into a custom tag? Yes. The trick is evaluating it before passing it, you can't pass it by reference. It becomes

UDF or Custom Tag

2002-04-03 Thread chris.alvarado
does anyone have a UDF or Custom tag that will turn, http://www.yahoo.com into a href=http://www.yahoo.com;http://www.yahoo.com/a i would just build it myself but im swamped. thanks a million. -chris.alvarado [application.developer] 4 Guys Interactive, Inc

RE: UDF or Custom Tag

2002-04-03 Thread Raymond Camden
I'm assuming you want to scan a body of text for URLs? If so, search on the Devex for a custom tag by Joel Mueller. I can't remember the name, but you should be able to search by author name. His custom tag worked _very_ well, and would also change stuff like [EMAIL PROTECTED] to a href=mailto

RE: UDF or Custom Tag

2002-04-03 Thread Park, Simon
or Custom Tag does anyone have a UDF or Custom tag that will turn, http://www.yahoo.com into a href=http://www.yahoo.com;http://www.yahoo.com/a i would just build it myself but im swamped. thanks a million. -chris.alvarado [application.developer] 4 Guys Interactive, Inc

RE: UDF or Custom Tag

2002-04-03 Thread chris.alvarado
PROTECTED]] Sent: Wednesday, April 03, 2002 11:20 AM To: CF-Talk Subject: RE: UDF or Custom Tag CFSCRIPT function CreateHTMLLink(textin) { textout = a href=' textin ' textin /a; return textout; } /CFSCRIPT CFOUTPUT #CreateHTMLLink(http://www.yahoo.com;)# /CFOUTPUT

RE: UDF or Custom Tag

2002-04-03 Thread Jerry Johnson
, 2002 11:20 AM To: CF-Talk Subject: RE: UDF or Custom Tag CFSCRIPT function CreateHTMLLink(textin) { textout = a href=' textin ' textin /a; return textout; } /CFSCRIPT CFOUTPUT #CreateHTMLLink(http://www.yahoo.com;)# /CFOUTPUT

RE: UDF or Custom Tag

2002-04-03 Thread Will Swain
I've used one called cf_createLinks, which may be the one Ray is referring to. Works well. will -Original Message- From: chris.alvarado [mailto:[EMAIL PROTECTED]] Sent: 03 April 2002 17:45 To: CF-Talk Subject: UDF or Custom Tag does anyone have a UDF or Custom tag that will turn

RE: Java Custom Tag

2002-04-01 Thread Matthew R. Small
You need to put the class path so that the jvm can find all of the necessary files to execute the custom tag. I always include a path to the bin directory and then a path to the directory where my custom tags files are stored. Something like: c:\jdk1.3\bin\;c:\cfusion\java\; I haven't set

Java Custom Tag

2002-03-29 Thread John Kivus
Here's a real snowball question: How do you set-up a custom tag that has a Java Library? The tag came with a cab file of Java classes and then 3 CFM files. I'm assuming you set it up as a CFX tag, but the interface for Java tags is different from the C++ tags and I'm not sure what it wants

RE: Java Custom Tag

2002-03-29 Thread VAN VLIET, SCOTT E (SBCSI)
Tag Here's a real snowball question: How do you set-up a custom tag that has a Java Library? The tag came with a cab file of Java classes and then 3 CFM files. I'm assuming you set it up as a CFX tag, but the interface for Java tags is different from the C++ tags and I'm not sure what it wants

Re: CFX custom tag

2002-03-19 Thread Sharon Diorio
scope=SESSION timeout=10 type=exclusive cfset SESSION.loggedIn = 1 /cflock /cfif HTH! Sharon - Original Message - From: phumes1 [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, March 19, 2002 1:28 PM Subject: Re: CFX custom tag Hi, I'm using the following

Re: CFX custom tag

2002-03-19 Thread phumes1
, March 19, 2002 1:28 PM Subject: Re: CFX custom tag Hi, I'm using the following custom tag to output the group(s) of specific users. This is in my index.cfm. How can I run the code below just once at login/authentication time. I'm using NT authentication for login purposes. I don't

Re: CFX custom tag

2002-03-19 Thread Sharon Diorio
, March 19, 2002 2:37 PM Subject: Re: CFX custom tag This would go in my index.cfm file, correct? At 02:12 PM 3/19/2002 -0500, you wrote: If I'm understanding the question, you can just set a session variable at login/authentication time indicating that the code has been run. cflock scope

Re: CFX custom tag

2002-03-19 Thread phumes1
-wide security where I set variables in the login.cfm then check for those variables in the Application.cfm. Sharon DiOrio - Original Message - From: phumes1 [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, March 19, 2002 2:37 PM Subject: Re: CFX custom tag This would go

RE: CFX custom tag

2002-03-19 Thread Andrew Scott
- From: Sharon Diorio [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 20 March 2002 6:13 AM To: CF-Talk Subject: Re: CFX custom tag If I'm understanding the question, you can just set a session variable at login/authentication time indicating that the code has been run. cflock scope=SESSION timeout=10

cfmail within a custom tag being run twice

2002-02-18 Thread Stephen Adams
Hi everyone, I am having a problem with a custom tag I have written that sends out an email every time an error occurrs. The problem is that I always get two emails sent for one error. I am using a close tag to call the custom tag, other than that I can't see why the tag would be run twice

RE: cfmail within a custom tag being run twice

2002-02-18 Thread Pascal Peters
-Talk Subject: cfmail within a custom tag being run twice Hi everyone, I am having a problem with a custom tag I have written that sends out an email every time an error occurrs. The problem is that I always get two emails sent for one error. I am using a close tag to call the custom tag, other

RE: cfmail within a custom tag being run twice

2002-02-18 Thread Ryan Edgar
Stephen, Use the ThisTag.ExecutionMode variable to check whether you are at the start or end of a custom tag pair. E.g. cfif ThisTag.ExecutionMode IS start Some code here. cfelseif ThisTag.ExecutionMode IS end Other Code here. /cfif If it's unimportant in your case

Custom Tag ??

2002-02-08 Thread Shahzad.Butt
Hi How can I get list of Names of Attributes passed to custom tag using CFModule. Basically what I want is CFModule Template=blahblah.cfm a=Blah b=BlahBlah c=BlahBlahBlah I want list a,b,c (not their values but names) in blahblah.cfm cos using StructKeyList(attributes) I can get list

RE: Custom Tag ??

2002-02-08 Thread Andrew Scott
-Talk Subject: Custom Tag ?? Hi How can I get list of Names of Attributes passed to custom tag using CFModule. Basically what I want is CFModule Template=blahblah.cfm a=Blah b=BlahBlah c=BlahBlahBlah I want list a,b,c (not their values but names) in blahblah.cfm cos using StructKeyList

CSV To DB Custom Tag

2002-02-07 Thread Dave Douglas
Hello, I am using CSV 2 DB Custom Tag from Dev Exchange to import a CSV spreadsheet into database. It works great on inserting and updating, but errors on any column that has a comma in the data ie. the Name column. I thought that the quotes placed around that column by CSV would prevent

Custom Tag

2002-02-06 Thread Shahzad.Butt
How can I list the attributes passed by calling custom tag. say CFModule template=myTag a = b = c = in myTag.cfm I want to set CFLoop from=1 To=#NumberOfAttributesPassed# Index=Counter CFSet hdnValue#Counter# = Attributes.a CFSet hdnValue#Counter# = Attributes.b

RE: Custom Tag

2002-02-06 Thread Raymond Camden
, and a powerful ally it is. - Yoda -Original Message- From: Shahzad.Butt [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 06, 2002 10:57 AM To: CF-Talk Subject: Custom Tag How can I list the attributes passed by calling custom tag. say CFModule template=myTag a = b = c

<    3   4   5   6   7   8   9   10   11   12   >