RE: (U) Referring to UDF Structure Values After Function is Run

2005-01-07 Thread Montgomery Chris Contr AFSFC/SFPA
> Sent: Friday, January 07, 2005 10:57 AM > To: CF-Talk > Subject: Re: (U) Referring to UDF Structure Values After > Function is Run > > > At first glance, it returns the container. Simply assign the > output of > the UDF to a variable, and then reference the variab

Re: (U) Referring to UDF Structure Values After Function is Run

2005-01-07 Thread Ben Doom
At first glance, it returns the container. Simply assign the output of the UDF to a variable, and then reference the variable: container = getcontainer(stuff); result = container.length; bob = getcontainer(stuff); jim = bob.end; Again, this is first glance, off the top of my head, but it should

(U) Referring to UDF Structure Values After Function is Run

2005-01-07 Thread Montgomery Chris Contr AFSFC/SFPA
Classification: UNCLASSIFIED Howdy, I'm running some tests using the GetContainer UDF ( http://www.cflib.org/udf.cfm?ID=566 ). That function creates a couple of structures (container and container.contents). Wondering how to refer to the structure values after the UDF is run in my template. For