CFX_ImageInfoMX

2003-11-07 Thread Lewis Sellers
'lo all. Thought I might as well get the Java certifications to add to my resume' so I've been learning Java as time permits the last two or three weeks. Just for the experience of it (not because there's a great roaring demand or anything) I created a new Java version of the ancient C++ CFX I

RE: CF5, ISA server, debugging question

2003-11-07 Thread Stephen Hait
Dave Watts wrote: > I can think of a couple of possible solutions. One would be to > simply enable debugging for that address in the CF Administrator, > then use code to control the display of debugging output. For > example, you could have something like this in your Application.cfm > file for a s

Re: Using complex data with web services

2003-11-07 Thread Matt Liotta
> Unfortunately, I don't think I made myself clear.  I'm trying to > invoke a webservice that is set up this way. > Actually, I think I was one that wasn't clear. I really need to write an article on this since I seem to be answering this question all the time. Anyway, create a CFC as I describ

Re: Using complex data with web services

2003-11-07 Thread Nelson Winters
Thanks Matt, Unfortunately, I don't think I made myself clear.  I'm trying to invoke a webservice that is set up this way. This is the latest approach I've tried (unsuccessfully): oRequest = structNew(); oRequest.oCredentials = structNew(); oRequest.oCredentials.sCompanyName = "ABC"; oReque

RE: Debug output order

2003-11-07 Thread DURETTE, STEVEN J (AIT)
Mark, I'm assuming that you mean "Dockable" when you say tree. I did this and they are no longer alphabetical.  Now they are sorted by Total Execution Time.  Longest running file first. Then alphabetical if times match. Strange. Steve -Original Message- From: Mark A. Kruger - C

RE: How to count sessions

2003-11-07 Thread cf
well sometimes I do, just not often! haha ok for example, if you use the MM login behavior it sets a session as MM_Username. So then on your query you just do something like SELECT * FROM TABLE WHERE username = #session.MM_Username# just substitute MM_Username with what session ur using:) dav

RE: CFQUERYPARAM bug?

2003-11-07 Thread Mark A. Kruger - CFG
I'd wager that syntactically you would be stringing your variables together with your keywords as in "WHERE the_id=?AND the_other_id=? no space between the q-mark and the "AND".  keywords are always delimited by spaces. When the driver does the "prepare" task it sees a bind placeholder abu

RE: Release Date for Blue Dragon using .net

2003-11-07 Thread Vince Bonfanti
Hi Jeremy, We're not ready to release any new information or announce a release date for BlueDragon.NET. I can tell you three things: (1) development is actively under way; (2) the product is nearing completion; and, (3) when we make a public announcement we'll do it here on CF-Talk. Thanks f

RE: How to count sessions

2003-11-07 Thread Ryan Kime
FYI.there's also a method called getSessionCount() in coldfusion.runtime.SessionTracker that returns an int -Original Message- From: Eric Creese [mailto:[EMAIL PROTECTED] Sent: Friday, November 07, 2003 4:25 PM To: CF-Talk Subject: RE: How to count sessions How can I convert #StructC

RE: How to count sessions

2003-11-07 Thread DURETTE, STEVEN J (AIT)
Eric, Assuming that Application.UsersInfo is a structure...     #myLoop# - #Application.UsersInfo[myLoop]# Steve -Original Message- From: Eric Creese [mailto:[EMAIL PROTECTED] Sent: Friday, November 07, 2003 5:25 PM To: CF-Talk Subject: RE: How to count sessions How can I con

RE: How to count sessions

2003-11-07 Thread Eric Creese
thanks for your honesty.LOL Have a great weekend! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, November 07, 2003 4:19 PM To: CF-Talk Subject: RE: How to count sessions you know im not sure. I have thought about doing that and doing the sort on the

CFQUERYPARAM bug?

2003-11-07 Thread Jim Curran
Hey All, Just figured i'd see if anyone else has insight on this: Using 6.1 and MSSQL Server SELECT * FROM table WHERE the_id = cfsqltype="CF_SQL_INTEGER"> AND the_other_id = cfsqltype="CF_SQL_INTEGER"> If i have *no* space after the first queryparam and before the return, I get an "

RE: Debug output order

2003-11-07 Thread Mark A. Kruger - CFG
Steve, Here's one from my CFMX server. (0ms) E:\inetpub\wwwdocs\Clients\Application.cfm (94ms) E:\inetpub\wwwdocs\Clients\Client_Documents.cfm   ·  (0ms) E:\inetpub\wwwdocs\Clients\includes\control.cfm @ line 17   ·  (47ms) E:\inetpub\wwwdocs\Clients\queries\qry_ClientDocs.cfm @ line 20   ·  (0

RE: RE: Debug output order

2003-11-07 Thread Mark A. Kruger - CFG
I hate to say this but 3.04 is easier than 4.x.  If you see 4.x for CFMX run.  And whatever you do - don't upgrade! -Mark   -Original Message-   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]   Sent: Friday, November 07, 2003 3:55 PM   To: CF-Talk   Subject: Re:RE: Debug output ord

Entering A Time Stamp in DB -- Problem

2003-11-07 Thread Nick Baker
CF V 5 MS Access DB I have time in the following format that was extracted in one CF template and stuffed in a DB without any hitch. {ts '2003-11-07 19:57:14'} When this same info iss passed as part of a text to another CF template, using CFHTTP, the same CF DB to insert into a copy of the s

RE: How to count sessions

2003-11-07 Thread Eric Creese
How can I convert #StructCount(Application.UsersInfo)# into something that will make the Application.UsersInfo a simple value that I can then use for querying? -Original Message- From: Eric Creese Sent: Friday, November 07, 2003 4:13 PM To: CF-Talk Subject: RE: How to count sessions ok I

Re: Using complex data with web services

2003-11-07 Thread Matt Liotta
> >     > > ABC > jdoe > abc123 > > ABC > jsmith >     > > You would create a CFC with three properties --sCompanyName, sUserName, and sPassword-- specified using the cfproperty tag. Matt Liotta President & CEO Montara Soft

RE: How to count sessions

2003-11-07 Thread cf
you know im not sure. I have thought about doing that and doing the sort on the query by session name but have never tried it. I came to the conclusion that if i want to do that then i would write the logins to a database & pull them from that. Then have a script to run every 10 minutes or so to

Using complex data with web services

2003-11-07 Thread Nelson Winters
I'm trying to use a .Net based web service.  I was able to get the following simple web service working.     webservice="http://www28.brinkster.com/hegdes/NumberToWords.asmx?WSDL"     returnVariable="Test">     However, the web service I'm actually trying to use specifies that I need to pass t

RE: How to count sessions

2003-11-07 Thread Eric Creese
ok I did the tutorial and got what I wanted. Now here is a tough one. can I use the the session vars to to query my users table to display the users names? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, November 07, 2003 3:55 PM To: CF-Talk Subject: RE:

cfoutput?

2003-11-07 Thread Bailey, Neal
Ok here is another one for ya... I have a bunch of html documents stored in my database and in these documents I need to run some ColdFusion code before it's displayed. But since I'm outputting the html using ColdFusion it will not work. Is there some other way of running my cf code before or af

replace(mystuff, with this stuff)

2003-11-07 Thread Bailey, Neal
Hey guys... I have another issue I'm trying to figure out. If you have been following my previous posts I needed to grab some xml data and insert it into our database for viewing on our website. I now have all this working just great but now I have noticed that within some of the content that we

RE: How to count sessions

2003-11-07 Thread Douglas.Knudsen
in a CFM page?  You can place it anywhere in your webroot.  Just need to know the application name...I'm guessing there is a way to get data on all sessions without knowing the session names, but I'm out of time here to try.  Play around with it...from the code below do a to see some methods and

RE: How to count sessions

2003-11-07 Thread cf
http://tutorial12.easycfm.com/ copy & paste is your friend ;) put it in the Application.cfm page > where should I put this code? > > -Original Message- > From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED] > Sent: Friday, November 07, 2003 3:18 PM > To: CF-Talk > Subject: RE: How t

RE: Debug output order

2003-11-07 Thread Debbie Dickerson
Forget I said that. Didn't notice you said CF5. -Original Message- From: Debbie Dickerson [mailto:[EMAIL PROTECTED] Sent: Friday, November 07, 2003 4:44 PM To: CF-Talk Subject: RE: Debug output order Switch the output mode from 'summary' to 'tree', and it should show in the order it's pr

CFMX from CF5

2003-11-07 Thread Richard Wigfall
I have just setup a new ColdFusion MX6.1 Linux box running Apache, and I want to move all of the content including the Verity Collections from a Linux box  running ColdFusion5 and Apache, to the ne box running CFMX6.1.  Can anyone tell me what I need to do to accomplish this move, including how to

Re:RE: Debug output order

2003-11-07 Thread jlangevin
That's what I was afraid of.  Thanks for the info.   We're running version 3.04.  Every time I have to troubleshoot anything in this version I want to quit web development! --Jeff _ Jeff Langevin  

RE: Debug output order

2003-11-07 Thread Debbie Dickerson
Switch the output mode from 'summary' to 'tree', and it should show in the order it's processed. Debbie -Original Message- From: DURETTE, STEVEN J (AIT) [mailto:[EMAIL PROTECTED] Sent: Friday, November 07, 2003 4:38 PM To: CF-Talk Subject: RE: Debug output order The default one that i

RE: How to count sessions

2003-11-07 Thread Eric Creese
I pasted this code into a cfm page and then called it. I just want to get a number of active session instead I got a table print out of stuff. -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED] Sent: Friday, November 07, 2003 3:18 PM To: CF-Talk Subject: RE: How to cou

RE: Debug output order

2003-11-07 Thread DURETTE, STEVEN J (AIT)
The default one that installed.  No changes.  It just alphabetizes the list. Here is an example: Total Time Avg Time Count Template 60 ms 60 ms 1 C:\Inetpub\wwwroot\BAU\Application.cfm 60 ms 60 ms 1 C:\Inetpub\wwwroot\BAU\ForceLoadTool\Application.cfm 10 ms 10 ms 1   top level C

RE: Debug output order

2003-11-07 Thread Mark A. Kruger - CFG
Steve, What debug template are you using - and did you make any changes to it? -mark   -Original Message-   From: DURETTE, STEVEN J (AIT) [mailto:[EMAIL PROTECTED]   Sent: Friday, November 07, 2003 3:18 PM   To: CF-Talk   Subject: RE: Debug output order   Mark,   I beg to differ.   I'

RE: How to count sessions

2003-11-07 Thread Jim Davis
I personally don't use the session scope and keep all "session" data in the application scope.  This allows you to do a LOT of stuff with the "logged in" users but forces you to manage session timeouts on your own: however the big win is that you can decide what to do on session timeout (I store al

RE: How to count sessions

2003-11-07 Thread Eric Creese
where should I put this code? -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED] Sent: Friday, November 07, 2003 3:18 PM To: CF-Talk Subject: RE: How to count sessions wonderful... nice trick - very helpful. -Mark   -Original Message-   From: [EMAIL PROTECTE

RE: Debug output order

2003-11-07 Thread DURETTE, STEVEN J (AIT)
Mark, I beg to differ. I'm using CFMX 6.1 For a page I am viewing they are in this order: 1) Application.cfm 2) global.cfm 3) varload.cfm 4) CategoryDefine.cfm but the order in the debug output is: 1) Application.cfm 2) CategoryDefine.cfm 3) global.cfm 4) varload.cfm Steve -Orig

RE: How to count sessions

2003-11-07 Thread Douglas.Knudsen
ah yes..the proper credit due...I couldn't recall from whence it came...Kudos go to Samuel (I'm assuming by 'below' you meant the code I posted on the sessiontracker classgun shy about email history?  :)  ) Doug -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Se

RE: How to count sessions

2003-11-07 Thread Mark A. Kruger - CFG
wonderful... nice trick - very helpful. -Mark   -Original Message-   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]   Sent: Friday, November 07, 2003 2:58 PM   To: CF-Talk   Subject: RE: How to count sessions   actually there is...one way in CFMX is this quick stuff               

RE: Debug output order

2003-11-07 Thread Mark A. Kruger - CFG
Jeff, There's not a way in CF 5 - in CFMX there is an open template - and they actually ARE in order by default.  What version of ACB are you using? -Mark   -Original Message-   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]   Sent: Friday, November 07, 2003 2:22 PM   To: CF-Talk   Su

RE: How to count sessions

2003-11-07 Thread Eric Creese
sounds interesting, I will give it a try. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, November 07, 2003 2:58 PM To: CF-Talk Subject: RE: How to count sessions actually there is...one way in CFMX is this quick stuff Ray Camden has some other c

Re: How to count sessions

2003-11-07 Thread brob
is there an equivalent for CF 5? :) thanks!   - Original Message -   From: [EMAIL PROTECTED]   To: CF-Talk   Sent: Friday, November 07, 2003 2:58 PM   Subject: RE: How to count sessions   actually there is...one way in CFMX is this quick stuff               Ray Camden has some othe

RE: How to count sessions

2003-11-07 Thread Raymond Camden
Just an FYI, my way of doing it was manually. The idea for the code below came from Samuel Neff and his blog, and I now use his code. (Although CFLIB still uses a manual form.) [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: How to count sessions

2003-11-07 Thread Douglas.Knudsen
actually there is...one way in CFMX is this quick stuff Ray Camden has some other code for this...a flash app even...out on his blog under http://www.camdenfamily.com/morpheus/blog/ Doug -Original Message- From: brob [mailto:[EMAIL PROTECTED] Sent: Friday, November 07, 2

RE: RE: RE: RE: Distributed and Non-Distributed Mode on same box?

2003-11-07 Thread Mike Brunt
Two CF Server and IIS on the same boxes clustered behind a hardware load-balancer (non distr).  Then IIS on a seperate box running CF on that in distributed mode against the cluster above.  That is as I understand it. Original Message --- > The cost of extra boxes (they're clus

Re: How to count sessions

2003-11-07 Thread brob
I dont think there's a server variable that counts the number of unique sessions available.  You can find out this way thoughFirst yo have an application variable like application.counter, and then everytime a member logs in you increment that counter by 1. Be sure to check for things like if

RE: RE: RE: Distributed and Non-Distributed Mode on same box?

2003-11-07 Thread Dave Watts
> The cost of extra boxes (they're clustered), server licences > and ongoing maintenance costs. I still don't get it. How many boxes do they have? Are they running CF on all of these boxes already anyway? If I have two boxes, I could configure them many different ways: - CF and IIS installed lo

RE: RE: RE: Distributed and Non-Distributed Mode on same box?

2003-11-07 Thread Mike Brunt
The cost of extra boxes (they're clustered), server licences and ongoing maintenance costs. Kind Regards - Mike Brunt Original Message --- > I agree with you Dave.  From what I understand they see this > as a resource saving issue.  We are trying to dissuade them > from this

RE: RE: Distributed and Non-Distributed Mode on same box?

2003-11-07 Thread Dave Watts
> I agree with you Dave.  From what I understand they see this > as a resource saving issue.  We are trying to dissuade them > from this and I am trying to find objective reasons for that. What resources are they trying to save? I just don't get it. Dave Watts, CTO, Fig Leaf Software http://www

How to count sessions

2003-11-07 Thread Eric Creese
How can you count the number of active session are opened. For instance I have a membership site and I want to get a count of members who have logged in and have an open session. E [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

ot: please reply off list EXCHANGE 2003 quick question

2003-11-07 Thread Tony Weeg
if you have any experience with exchange server 2003 and can give me a pointer real quick please reply off list...thanks! ...tony tony weeg senior web applications architect navtrak, inc. www.navtrak.net [EMAIL PROTECTED] 410.548.2337 [Todays Threads] [This Message] [Subscription] [Fast U

RE: RE: Distributed and Non-Distributed Mode on same box?

2003-11-07 Thread Mike Brunt
I agree with you Dave.  From what I understand they see this as a resource saving issue.  We are trying to dissuade them from this and I am trying to find objective reasons for that. Kind Regards - Mike Brunt Original Message --- > I need some opinions/points on this. We have a

Debug output order

2003-11-07 Thread jlangevin
Hi folks, I am running CF5 on Win2k and I am trying to debug something in AbleCommerce (hold your groans).   I have set all debug info to be dumped to the screen in cf administrator.  I would like to see the order that templates are getting processed.  However, the template execution list is in a

RE: Distributed and Non-Distributed Mode on same box?

2003-11-07 Thread Dave Watts
> I need some opinions/points on this. We have a client > running both distributed and non-distributed mode on the > same CF50 Server, Windows 2k against IIS. Do you think > this is a bad idea? Why are they doing this? It sounds bad to me, in the sense that I don't see any point to it. Dave Wa

Distributed and Non-Distributed Mode on same box?

2003-11-07 Thread Mike Brunt
I need some opinions/points on this.  We have a client running both distributed and non-distributed mode on the same CF50 Server, Windows 2k against IIS.  Do you think this is a bad idea? Kind Regards - Mike Brunt [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Se

RE: RegEx Question...

2003-11-07 Thread Che Vilnonis
Thanks Ben.   -Original Message-   From: Ben Doom [mailto:[EMAIL PROTECTED]   Sent: Friday, November 07, 2003 2:42 PM   To: CF-Talk   Subject: Re: RegEx Question...   Assuming you are requiring the 1- and the area code:   1-[0-9]{3}-[0-9]{3}-[0-9]{4}   Something more flexible might be  

Re: RegEx Question...

2003-11-07 Thread Ben Doom
Assuming you are requiring the 1- and the area code: 1-[0-9]{3}-[0-9]{3}-[0-9]{4} Something more flexible might be ((1-)?[0-9]{3}-)?[0-9]{3}-[0-9]{4} HTH. --Ben Doom Che Vilnonis wrote: > Real simple questionfolks...I use something like this to flag invalid > zipcodes: > > > if (NOT (REFin

RE: RSS displayed in CF

2003-11-07 Thread Bryan F. Hogan
http://www.cfm-applications.com/blogman/articles/rss2query.shtml -Original Message- From: Wurst, Keith D. [mailto:[EMAIL PROTECTED] Sent: Friday, November 07, 2003 1:31 PM To: CF-Talk Subject: RSS displayed in CF hey everyone. does anyone have a good example of how to display a RSS file

RegEx Question...

2003-11-07 Thread Che Vilnonis
Real simple questionfolks...I use something like this to flag invalid zipcodes: if (NOT (REFind('^[[:digit:]]{5}(( |-)?[[:digit:]]{4})?$',FORM.ZIP) NEQ 0)) {} What RegEx would work to validate a US phone number in a 1-888-555-1212 format? Thank again...Che [Todays Threads] [This Message]

RE: CF5, ISA server, debugging question

2003-11-07 Thread Dave Watts
> I have a client who recently installed a MS ISA server for > firewall purposes. This seems to change how IIS recognizes > requests from IP addresses - now all requests are reported > in the web server logs as 192.168.0.1. Likewise, cgi.remote_host > now reports this IP regardless of where on

RE: Sports feeds web services?

2003-11-07 Thread Eric Creese
try http://www.newsclicker.com/ but the last time I checked there was no stats related feeds. I also use http://www.allsports.com -Original Message- From: James Johnson [mailto:[EMAIL PROTECTED] Sent: Friday, November 07, 2003 12:08 PM To: CF-Talk Subject: Sports feeds web services? He

RE: Just Wondering Why

2003-11-07 Thread Mark A. Kruger - CFG
I'm with you guys. I not only separate into separate files, but I make a very good effort at separating Logic blocks, queries, thematic elements (styles etc) and display code. In addition, in the CFMX world, CFC's allow for an even greater level of abstraction because they can serve multiple purpos

Re: Javascript CF question

2003-11-07 Thread Charlie Griefer
I'm not sure why you get a blank page.  
   
document.write('#JSStringFormat(now())#');
   

writes a timestamp to the page for me. as far as including CF code in a .js file..yes, you should be able to include a line of code like: and if test.cfm

Re: Javascript CF question

2003-11-07 Thread Calvin Ward
Would there be a concern with caching using this option? - Calvin   - Original Message -   From: Ketan Patel   To: CF-Talk   Sent: Friday, November 07, 2003 11:34 AM   Subject: _javascript_ CF question   Hi All,   I have a question related to _javascript_. I have some dynamic articles

RE: question...

2003-11-07 Thread Kenneth Ketsdever
Does that make it .0004 cents? -Original Message- From: Calvin Ward [mailto:[EMAIL PROTECTED] Sent: Friday, November 07, 2003 10:36 AM To: CF-Talk Subject: Re: question... My .02 agrees with your .02 - Calvin   - Original Message -   From: Mark A. Kruger - CFG   To: CF-Talk  

Re: question...

2003-11-07 Thread Calvin Ward
My .02 agrees with your .02 - Calvin   - Original Message -   From: Mark A. Kruger - CFG   To: CF-Talk   Sent: Friday, November 07, 2003 9:43 AM   Subject: RE: question...   I like this better:   IF(StructKeyExists(form,Listgeat(fieldlist,i))    {         }   One of the

RE: Javascript CF question

2003-11-07 Thread Ketan Patel
Hi Charlie, My caller page has following code Test110.cfm code src=""> and Test111.cfm code is  document.write('#JSStringFormat(now())#'); nothing comes blank. Now my question is can I call a extrnal .cfm page using _javascript_ when I rename to .js and throw in bunch of text it works, I

Re: Javascript CF question

2003-11-07 Thread Charlie Griefer
 document.write('#JSStringFormat(now())#'); http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/funct148.htm hth, Charlie   - Original Message -   From: Bert Dawson   To: CF-Talk   Sent: Friday, November 07, 2003 11:19 AM   Subject: RE: _javascript_ CF question   What do you

Virus scanner for CF upload?

2003-11-07 Thread DeMarco, Alex
Is there any tool out there to do virus scanner when a file is uploaded via CFMX? - Alex [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RSS displayed in CF

2003-11-07 Thread Wurst, Keith D.
hey everyone. does anyone have a good example of how to display a RSS file on a CF based website (not mx)? thanks. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Javascript CF question

2003-11-07 Thread Bert Dawson
What do you see if you browse to http://www.mysite.com/test111.cfm and view the source? Is it all valid js? e.g. example becomes: document.write('{ts '2003-11-07 18:15:34'}'); and js ain't gonna like all those apostrophes... Bert >

Sports feeds web services?

2003-11-07 Thread James Johnson
Hello, Does anyone know, or have a resource for, a web service to provide stats for sports? I'm looking for box scores, player stats, etc. I have found ESPN's SportsTicker, but it is pretty pricey. Thanks, James Johnson [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [

OT: ArgoSoft Script

2003-11-07 Thread cfhelp
Anyone here have a CF script that creates MailBag domains in ArgoSoft's mail server using CFHTTP or other method? Rick [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Javascript CF question

2003-11-07 Thread Ketan Patel

CF5, ISA server, debugging question

2003-11-07 Thread Stephen Hait
I have a client who recently installed a MS ISA server for firewall purposes. This seems to change how IIS recognizes requests from IP addresses - now all requests are reported in the web server logs as 192.168.0.1. Likewise, cgi.remote_host now reports this IP regardless of where on the Intern

RE: Another question.

2003-11-07 Thread Che Vilnonis
Thomas, Craig...Thanks!   -Original Message-   From: Craig Dudley [mailto:[EMAIL PROTECTED]   Sent: Friday, November 07, 2003 12:04 PM   To: CF-Talk   Subject: RE: Another question.   Try the 'setvariable'  function.   ie..   if (NOT isDefined("#listgetat(ErrorFlags,i)#")) {   setvariab

Re: Another question.

2003-11-07 Thread Ben Doom
ListGetAt() returns a string, so what you are saying is essentially the same as "some string goes here" = ""; which is not a legal command.  If you had a structure predefined, let's call it Errors, you could do somethinglike Errors[listgetat(errorflags, i)] = ""; --Ben Doom Che Vilnonis wrot

RE: Another question.

2003-11-07 Thread Craig Dudley
Try the 'setvariable'  function. ie.. if (NOT isDefined("#listgetat(ErrorFlags,i)#")) { setvariable(listgetat(ErrorFlags,i),"");} -Original Message- From: Che Vilnonis [mailto:[EMAIL PROTECTED] Sent: 07 November 2003 17:04 To: CF-Talk Subject: Another question. Hello agai

Re: Another question.

2003-11-07 Thread Thomas Chiverton
On Friday 07 Nov 2003 17:04 pm, Che Vilnonis wrote: > if (NOT isDefined("#listgetat(ErrorFlags,i)#")) {listgetat(ErrorFlags,i) = You can't use listGetAt to set elements in arrays, it's only job is to return the contents at a position. -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(

Another question.

2003-11-07 Thread Che Vilnonis
Hello again. I'm in the process of converting a lot of my code over to blocks and I can't get by this error. // Define error variables list. ErrorFlags = "CreateAccountFlag,ExistingAccountFlag,EmailFlag,EmailInvalidFlag,PasswordFl ag,Password2Flag,PasswordLengthFlag,Password2LengthFlag,PasswordN

Re: CF-Talk: Digest every 6 hours

2003-11-07 Thread IBC Staff - Shane Kelly
Thanks for your email. Shane is currently out of the office until the 23rd of November. If your enquiry requires urgent attention, you may contact  [EMAIL PROTECTED] Regards IBC Postmaster [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re:Just Wondering Why

2003-11-07 Thread Jeremy Brodie
I agree. I've seen too many cases of files that are over 500 lines long, contain 20 or more CFIFs (many nested and renested) that are really hard to maintain. I've found it better to create custom tags and CFCs acting as objects and widgets and reuse them. This way if there is a problem with the

RE: Javascript CF question

2003-11-07 Thread John McCosker
If I understand your quest directly, when they load your JS file you then want the JS file to write to their web document on the fly. Since you can't tell the structure of the doc then you want to create a div with position absolute elements, position it, then write your data to it and make it visi

RE: what do I need to know about CF 4.5

2003-11-07 Thread Christine Lawson
You'll want to review the CFML Language History that covers what changed with each version: http://www.macromedia.com/support/coldfusion/ts/documents/cfmlhistory.htm Christine -Original Message- From: Michael Hodgdon [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 04, 2003 10:15 AM

Javascript CF question

2003-11-07 Thread Ketan Patel
Hi All, I have a question related to _javascript_. I have some dynamic articles which I want to share with other websites. The best way I think is call my page using _javascript_.

RE: Just Wondering Why

2003-11-07 Thread Hugo Ahlenius
big self-contained files. I used to do that. Then I stopped doing that. The files were getting *VERY* big, and some things were not that easy to reuse over the application -- and if you start doing includes/tags then it is not contained in one file anymore. I actually found things harder to maint

Re: Just Wondering Why

2003-11-07 Thread Bryan Stevenson
Rickdoesn't that fly in the face of code resuse??  If each template is self contained...how do you reuse a query in the file in another file?  Perhaps I misunderstood? Bryan Stevenson B.Comm. VP & Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PRO

RE: Just Wondering Why

2003-11-07 Thread cfhelp
As a practice I try and make each template self contained (You can open it with the browser by its self).  All Queries, Set Params and output all in one file. Makes troubleshooting easier and reusable code. Rick   _   From: Kwang Suh [mailto:[EMAIL PROTECTED] Sent: Friday, November 07, 2003

RE: SQL server

2003-11-07 Thread Andy Ousterhout
Try this list: http://www.sunbelt-software.com/sql_list_charter.htm   -Original Message-   From: David Brown [mailto:[EMAIL PROTECTED]   Sent: Friday, November 07, 2003 9:57 AM   To: CF-Talk   Subject: SQL server   I know this is the wrong group, but I am in a jam.  Our DBA (I am not one)

RE: SQL server

2003-11-07 Thread C. Hatton Humphrey
It depends on how long ago the rows were added and if your DBA has a Transaction Log Recovery tool.  They ain't cheap but they'll fix the problem. I've had to deal with problems like that before... NOT a fun thing to do. Best of luck! Hatton Humphrey   -Original Message-   From: David Bro

Stock feeds

2003-11-07 Thread Roth, John
All, Since there was a little talk abbot weather feeds, does anyone now of any Stock Market feeds?  Also, I have not played with RSS at all, but is there anything like that for RSS? I am on digest mode, so if you want an immediate response, CC me directly. ;-) Yours Truly, J.B. Roth Web Develope

SQL server

2003-11-07 Thread David Brown
I know this is the wrong group, but I am in a jam.  Our DBA (I am not one) did not backup one of our databases.  There is a table with some rows that have been deleted.  Is there a way to restore them from logs.  If so could you point me to a link on how to do this. I would be very greatful. Davi

Re: Novell to acquire SUSE

2003-11-07 Thread Jochem van Dieten
John Paul Ashenfelter wrote: > I always thought the key reason to choose a Linux distro was because it was *better* than Windows, not because it was *cheaper*. Or perhaps because it is Open Source, which might be a requirement for the job. > I'll echo Dave Watts and others comments though -- if

Release Date for Blue Dragon using .net

2003-11-07 Thread Jeremy Brodie
When will the .net version of Blue Dragon be released to the masses? Any new information on the subject. Thank you Jeremy Brodie Intelix an Edgewater Technology Solutions Company web: http://www.edgewater.com phone:(703) 815-2500 nasdaq symbol: EDGE [Todays Threads] [This Message] [Subscrip

Re: OT: VoIP

2003-11-07 Thread Thomas Chiverton
On Friday 07 Nov 2003 14:30 pm, Dan Phillips \(CFXHosting.com\) wrote: > Sorry for the OT. Is there anyone on this list in the Southern Ontario > region that knows on companies that provide Voice Over IP or Broadband > phone service? Skype ? -- Tom Chiverton Advanced ColdFusion Programmer Tel:

RE: question...

2003-11-07 Thread Mark A. Kruger - CFG
I like this better: IF(StructKeyExists(form,Listgeat(fieldlist,i))    {         } One of the reasons I like using Cfscript is to get rid of pound signs and quotes  - seems more readable. Just my 02. -mark   -Original Message-   From: Che Vilnonis [mailto:[EMAIL PROTECTED]   Sent:

RE: VoIP

2003-11-07 Thread Gabriel Robichaud
Have you tried Nortel? ;) -Original Message- From: Dan Phillips (CFXHosting.com) [mailto:[EMAIL PROTECTED] Sent: November 7, 2003 9:31 AM To: CF-Talk Subject: OT: VoIP Sorry for the OT. Is there anyone on this list in the Southern Ontario region that knows on companies that provide Vo

OT: VoIP

2003-11-07 Thread Dan Phillips \(CFXHosting.com\)
Sorry for the OT. Is there anyone on this list in the Southern Ontario region that knows on companies that provide Voice Over IP or Broadband phone service? Thanks! Dan Phillips www.CFXHosting.com 1-866-239-4678 x105 [EMAIL PROTECTED] . [Todays Threads] [This Message] [Subscription] [F

RE: best way to force a save as no matter what

2003-11-07 Thread Tyler Clendenin
use cfcontent and cfheader Tyler Clendenin [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Just Wondering Why

2003-11-07 Thread Pascal Peters
No need for cfoutput with cf-tag attribute values will always evaluate var. -Oorspronkelijk bericht- Van: Sutton Yamanashi [mailto:[EMAIL PROTECTED] Verzonden: vr 7/11/2003 14:36 Aan: CF-Talk CC: Onderwerp: RE: Just Wondering Why only be necessary if the file name itsel

RE: Just Wondering Why

2003-11-07 Thread Philip Arnold
> I do not think carries over to any included file.  So, you Can > have a pair of tags nesting your included file, but this would > only be necessary if the file name itself was a variable: > > >   > This isn't the case - within any CF tag, the attributes can be part or all variables Like

RE: Just Wondering Why

2003-11-07 Thread Sutton Yamanashi
Hey Mike. I do not think carries over to any included file.  So, you Can have a pair of tags nesting your included file, but this would only be necessary if the file name itself was a variable:    But, you absolutely must use the tags within the included file if you are calling a var

Re: Just Wondering Why

2003-11-07 Thread Mickael
Thanks that answers my question.  I appreciate the extra info as well. Mike   - Original Message -   From: Pascal Peters   To: CF-Talk   Sent: Friday, November 07, 2003 2:59 AM   Subject: RE: Just Wondering Why   The has to be in the same physical template as the variable call. If it

  1   2   >