RE: Delete structure?

2004-02-21 Thread Pascal Peters
[mailto:[EMAIL PROTECTED] Sent: vrijdag 20 februari 2004 19:13 To: CF-Talk Subject: Re: Delete structure? What did I do wrong with this code cfset i = 1 cfoutput query=GetInforVul startrow=1 maxrows=#GetInforVul.recordcount# cfset vulInfor = StructNew() cfset vulInfor.ID = '#GetInforVul.ID

Delete structure?

2004-02-20 Thread John Ho
How to delete struct? when the struct no longer need, I want to delete it. Can I do that?. Thanks John __ Do you Yahoo!? Yahoo! Mail SpamGuard - Read only the mail you want. http://antispam.yahoo.com/tools [Todays Threads] [This Message] [Subscription]

RE: Delete structure?

2004-02-20 Thread Tangorre, Michael
Sure... StructDelete(structure, key) Example:#StructDelete(session,userSettings)# Mike _ From: John Ho [mailto:[EMAIL PROTECTED] Sent: Friday, February 20, 2004 9:28 AM To: CF-Talk Subject: Delete structure? How to delete struct? when the struct no longer need, I want to delete it. Can

RE: Delete structure?

2004-02-20 Thread Douglas.Knudsen
http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/functi18.htm#wp1099964 Doug -Original Message- From: John Ho [mailto:[EMAIL PROTECTED] Sent: Friday, February 20, 2004 9:28 AM To: CF-Talk Subject: Delete structure? How to delete struct? when the struct no longer need, I want

RE: Delete structure?

2004-02-20 Thread Pascal Peters
Message- From: John Ho [mailto:[EMAIL PROTECTED] Sent: vrijdag 20 februari 2004 15:28 To: CF-Talk Subject: Delete structure? How to delete struct? when the struct no longer need, I want to delete it. Can I do that?. Thanks John __ Do you Yahoo

Re: Delete structure?

2004-02-20 Thread John Ho
20, 2004 9:28 AM To: CF-Talk Subject: Delete structure? How to delete struct? when the struct no longer need, I want to delete it. Can I do that?. Thanks John __ Do you Yahoo!? Yahoo! Mail SpamGuard - Read only the mail you want. http://antispam.yahoo.com/tools

RE: Delete structure?

2004-02-20 Thread Pascal Peters
februari 2004 14:45 To: CF-Talk Subject: Re: Delete structure? I use this function before but it seems struct have not deleted I create 5 struct in a cfloop like this cfloop cfset vulInfor = StructNew() cfset vulInfor.A = something cfset vulInfor.B = somethingelse ... cfset array[i

Re: Delete structure?

2004-02-20 Thread John Ho
Thank you I try to store a structure in an array(array of structs). But since structs pass by reference then I can not delete these structs. Anyway just a learning experience. How do I delete struct vulInfor in this case? I don't see what you are doing and some code is missing, but from the code

RE: Delete structure?

2004-02-20 Thread Pascal Peters
: Re: Delete structure? Thank you I try to store a structure in an array(array of structs). But since structs pass by reference then I can not delete these structs. Anyway just a learning experience. How do I delete struct vulInfor in this case? I don't see what you are doing and some

Re: Delete structure?

2004-02-20 Thread John Ho
What did I do wrong with this code cfset i = 1 cfoutput query=GetInforVul startrow=1 maxrows=#GetInforVul.recordcount# cfset vulInfor = StructNew() cfset vulInfor.ID = '#GetInforVul.ID#' cfset vulInfor.vulName = '#GetInforVul.vul_name#' cfset vulInfor.Desc = '#GetInforVul.description#' cfset