Re: Structures (probably a stupid question)

2005-04-25 Thread Dave Carabetta
On 4/25/05, Al Everett <[EMAIL PROTECTED]> wrote: > The thing that helped me understand structures more than anything else > was the good old CFDUMP tag. When I could "see" the structure it all > made sense. > The only thing to keep in mind if you're going to rely on CFDUMP to "learn" structures

Re: Structures (probably a stupid question)

2005-04-25 Thread Al Everett
The thing that helped me understand structures more than anything else was the good old CFDUMP tag. When I could "see" the structure it all made sense. On 4/24/05, Thane Sherrington <[EMAIL PROTECTED]> wrote: > At 12:57 PM 24/04/2005, Sean Corfield wrote: > > >If you're just getting your head aro

Re: Structures (probably a stupid question)

2005-04-24 Thread Will Tomlinson
>At 12:57 PM 24/04/2005, Sean Corfield wrote: > >>If you're just getting your head around this stuff, I strongly suggest >>you buy Jeff Peters' book: "ColdFusion Lists, Arrays & Structures": >> Excellent advice. Jeff Peters' book is a great read. Real world examples, etc.. Will ~~~

RE: Structures (probably a stupid question)

2005-04-24 Thread Jim Davis
> -Original Message- > From: Thane Sherrington [mailto:[EMAIL PROTECTED] > Sent: Sunday, April 24, 2005 11:21 AM > To: CF-Talk > Subject: Structures (probably a stupid question) > > I'm trying to understand structures - I understand that they are like the > fo

RE: Structures (probably a stupid question)

2005-04-24 Thread Ewok
cture. Eg. -Original Message- From: Thane Sherrington [mailto:[EMAIL PROTECTED] Sent: Sunday, April 24, 2005 11:21 AM To: CF-Talk Subject: Structures (probably a stupid question) I'm trying to understand structures - I understand that they are like the form scope in that I can

Re: Structures (probably a stupid question)

2005-04-24 Thread Thane Sherrington
At 12:57 PM 24/04/2005, Sean Corfield wrote: >If you're just getting your head around this stuff, I strongly suggest >you buy Jeff Peters' book: "ColdFusion Lists, Arrays & Structures": > >http://www.protonarts.com/index.cfm?fuseaction=Books.showBookDetails&ISBN=0975264702 Thanks for the suggesti

RE: Structures (probably a stupid question)

2005-04-24 Thread Thane Sherrington
At 12:57 PM 24/04/2005, Adrian Lynch wrote: > > > > > > > > > > > > >That'll get you an array of structures. One thing to note, unlike this... Thanks for this - it's much clearer now. Now I can give it a shot in my app. T --- [This E-mail scanned for viruses by Declude Anti-Virus] ~~

Re: Structures (probably a stupid question)

2005-04-24 Thread Sean Corfield
On 4/24/05, Thane Sherrington <[EMAIL PROTECTED]> wrote: > I'm trying to understand structures - I understand that they are like the > form scope in that I can access them as myStruct.myVar, but is there a way > to create an array of structures? myArray = arrayNew(1) myArray[1] = structNew() myArr

RE: Structures (probably a stupid question)

2005-04-24 Thread Adrian Lynch
error. Hence the need for... myArrayOfStructs[1] = StructNew() before using that index as a structure. Ade -Original Message- From: Thane Sherrington [mailto:[EMAIL PROTECTED] Sent: 24 April 2005 16:21 To: CF-Talk Subject: Structures (probably a stupid question) I'm trying to unders

Structures (probably a stupid question)

2005-04-24 Thread Thane Sherrington
I'm trying to understand structures - I understand that they are like the form scope in that I can access them as myStruct.myVar, but is there a way to create an array of structures? I'm thinking it would be nice to create a structure like: myStruct.FName myStruct.LName myStruct.EMail And the