Can someone Explain this Error Message

2004-11-03 Thread Graham Pearson
I am getting an error message which states: Branch target offset too large for short The first line of the stack trace reads org.apache.bcel.generic.ClassGenException: Brnach target offset too large for short The error message will appear when I include the following line and if I comment

Re: Can someone Explain this Error Message

2004-11-03 Thread Thomas Chiverton
On Wednesday 03 Nov 2004 12:04 pm, Graham Pearson wrote: Branch target offset too large for short Is the file very large ? Can you test it with a less evil path ? -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44 (0)1749 834900 email: [EMAIL PROTECTED] BlueFinger Limited Underwood

Re: Can someone Explain this Error Message

2004-11-03 Thread Thomas Chiverton
On Wednesday 03 Nov 2004 12:23 pm, Thomas Chiverton wrote: less evil path ? or, indeed, string ? -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44 (0)1749 834900 email: [EMAIL PROTECTED] BlueFinger Limited Underwood Business Park Wookey Hole Road, WELLS. BA5 1AF Tel: +44 (0)1749

Re: Can someone Explain this Error Message

2004-11-03 Thread Graham Pearson
The File when generated is approx 2 Meg in size. What have I done is learned the RTF File Format and is 60 Pages long. At 07:23 AM 11/3/2004, you wrote: On Wednesday 03 Nov 2004 12:04 pm, Graham Pearson wrote: Branch target offset too large for short Is the file very large ? Can you test it

Can someone Explain this code

2004-11-01 Thread Asim Manzur
The following code display 32. If you run the code the value in the var on the last trip of the loop was 22 after it finish the loop how come the value changes to 32. Can understnad that. can someone explain it to me please. CFLOOP INDEX=CBA FROM=1 TO=15 STEP=2 cfoutput This is an outer Loop

Re: Can someone Explain this code

2004-11-01 Thread Jim McAtee
is exited. - Original Message - From: Asim Manzur [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, November 01, 2004 8:17 AM Subject: Can someone Explain this code The following code display 32. If you run the code the value in the var on the last trip of the loop was 22

IsNumeric weirdness - can someone explain this?

2001-06-20 Thread Evan Lavidor
Here's the test code: - cfset myvariable = 3D1 cfoutput p#IsNumeric('3D1')#/p p#myvariable#/p p#IsNumeric(myvariable)#/p /cfoutput This returns: Yes 3D1 Yes - WTF?!? Shouldn't I be

RE: IsNumeric weirdness - can someone explain this?

2001-06-20 Thread Andrew Tyrone
-Original Message- From: Evan Lavidor [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 19, 2001 3:59 PM To: CF-Talk Subject: IsNumeric weirdness - can someone explain this? Here's the test code: - cfset myvariable = 3D1 cfoutput

Can someone explain this?

2000-07-14 Thread Randy Adkins
What does it mean by OCCLUDE and CF_TagName Construct??? "Warning","TID=355","07/13/00","08:17:10","In a CF_TagName construct custom tag file 'C:\CFUSION\CustomTags\K_Tags\BrowserCheck.cfm' will occlude custom tag file 'C:\CFUSION\CustomTags\R_Tags\BrowserCheck.cfm'."

RE: Can someone explain this?

2000-07-14 Thread Zachary Bedell
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 You have two tags with the same name. Since CF searches the custom tag directory in alphabetical order, the BrowserCheck.cfm in K_Tags will be called, but there's no way to access the one in the R_Tags directory. Thus the first will occlude the

Re: Can someone explain this?

2000-07-14 Thread Seth Petry-Johnson
What does it mean by OCCLUDE and CF_TagName Construct??? "Warning","TID=355","07/13/00","08:17:10","In a CF_TagName construct custom tag file 'C:\CFUSION\CustomTags\K_Tags\BrowserCheck.cfm' will occlude custom tag file 'C:\CFUSION\CustomTags\R_Tags\BrowserCheck.cfm'." CF finds custom tags