RE: local variable dump?

2002-02-27 Thread David Schmidt
Ah, if wishes could come true... Unfortunately, I don't believe you can loop through the variables or client scopes. __ Why Share? Dedicated Win 2000 Server ยท PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER Instant

RE: local variable dump?

2002-02-27 Thread Pascal Peters
The local (variables.) scope is not a structure, so you cannot retreive them automatically. You can see them using the debugger in CFStudio. -Original Message- From: Tyler Silcox [mailto:[EMAIL PROTECTED]] Sent: woensdag 27 februari 2002 18:06 To: CF-Talk Subject: QQ: local variable

Re: local variable dump?

2002-02-27 Thread Stephen Moretti
Ah, if wishes could come true... Unfortunately, I don't believe you can loop through the variables or client scopes. Client variables you can. Use GetClientVariablesList() if CFDump doesn't work. Server variables are the other scope that you cannot CFDUMP. Regards Stephen

RE: local variable dump?

2002-02-27 Thread David Schmidt
Yes. I knew about the GetClientVariablesList. But that is not quite the same code as a standard loop over the structure. -Original Message- From: Stephen Moretti [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 27, 2002 9:53 AM To: CF-Talk Subject: Re: local variable dump? Ah

Re: local variable dump?

2002-02-27 Thread Jon Hall
packet as the client variable, then it's only one line of code to turn the client variable I'm after into a nice struct. jon - Original Message - From: David Schmidt [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, February 27, 2002 1:26 PM Subject: RE: local variable dump