Help me! My brain won't start

2001-04-30 Thread Russel Madere
I'm getting ready to implement a custom tag that needs to have an array passed. Can I just do: CFMODULE template=whatever.cfm arrWhatever=#VARIABLES.arrWhatever# Or should I do: CFMODULE template=whatever.cfm arrWhatever=CALLER.VARIABLES.arrWhatever My brain is so fried this morning, I just

RE: Help me! My brain won't start

2001-04-30 Thread Dylan Bromby
you can use CF_Whatever and as long as whatever.cfm is in the same directory OR in the custom tags directory you should be fine. -Original Message- From: Russel Madere [mailto:[EMAIL PROTECTED]] Sent: Monday, April 30, 2001 8:00 AM To: CF-Talk Subject: Help me! My brain won't start I'm

Re: Help me! My brain won't start

2001-04-30 Thread Critter
Hello Russel, you could just pass in the array and a variable to be used on the caller page. then return the array via: SetVariable(caller.#attributes.arrVariable#,attributes.arrWhatever); -- Best regards, Critter --- Monday, April 30, 2001,

RE: Help me! My brain won't start

2001-04-30 Thread Russel Madere
://www.TurboSquid.com Some days you eat the bear; some days the bear eats you. -Original Message- From: Dylan Bromby [mailto:[EMAIL PROTECTED]] Sent: Monday, April 30, 2001 10:11 To: CF-Talk Subject: RE: Help me! My brain won't

Re: Help me! My brain won't start

2001-04-30 Thread Jon Hall
PROTECTED] Sent: Monday, April 30, 2001 11:41 AM Subject: RE: Help me! My brain won't start I knew that. We are using CFMODULE because the files reside in a centralized CodeResources directory. What I need help with is passing the array

RE: Help me! My brain won't start

2001-04-30 Thread Dylan Bromby
oh ok. did you try just: arrWhatever=#caller.arrWhatever# -Original Message- From: Russel Madere [mailto:[EMAIL PROTECTED]] Sent: Monday, April 30, 2001 8:41 AM To: CF-Talk Subject: RE: Help me! My brain won't start I knew that. We are using CFMODULE because the files reside

RE: Help me! My brain won't start

2001-04-30 Thread Russel Madere
; some days the bear eats you. -Original Message- From: Dylan Bromby [mailto:[EMAIL PROTECTED]] Sent: Monday, April 30, 2001 11:39 To: CF-Talk Subject: RE: Help me! My brain won't start oh ok. did you try just: arrWhatever