Using # signs on URL to go to a name=.... on .cfm pages

2002-10-03 Thread Michael E. Carluen
Seems like a no brainer question on .htm pages, but how about on .cfm pages? How to you dynamically create URLs with # signs to link to a name=... tags? ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4

RE: Using # signs on URL to go to a name=.... on .cfm pages

2002-10-03 Thread Pascal Peters
It's the same for html and cfml. If you need to do it in a CFOUTPUT, just double the # sign -Original Message- From: Michael E. Carluen [mailto:[EMAIL PROTECTED]] Sent: donderdag 3 oktober 2002 8:52 To: CF-Talk Subject: Using # signs on URL to go to a name= on .cfm pages Seems

Re: Cfmail performance comparisons

2002-10-03 Thread W Luke
Stacy Young [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] merce.com... Are u processing anything else besides outputting a query into cfmail? Yes. I'll probably loop over the cfmail, and run a query each time. I'm coming round to thinking the best, most reliable way to do it would

RE: Using # signs on URL to go to a name=.... on .cfm pages

2002-10-03 Thread Michael E. Carluen
Pascal, I'm probably missing something from your solution. Here is we I wantnted to use it: cfoutput td align=center a href=view_overview.cfm?expand=#project_idproject_name# img src=../lib_images/triangle.gif alt=View All Projects border=0 /a /td

RE: Using # signs on URL to go to a name=.... on .cfm pages

2002-10-03 Thread Pascal Peters
I pasted your code on a test page and it works as intended. Here is the generated content: td align=center a href=view_overview.cfm?expand=9#cost img src=../lib_images/triangle.gif alt=View All Projects border=0 /a /td If you have a different result, I don't know

RE: Using # signs on URL to go to a name=.... on .cfm pages

2002-10-03 Thread John Beynon
Hey Michael, I just cut and paste your code out and when I click on the link it took me to: http://localhost:8500/testsvr/view_overview.cfm?expand=9#cost as expected. The double # is definitely the right syntax since the second # escapes the first, John. -Original Message- From:

RE: Using # signs on URL to go to a name=.... on .cfm pages

2002-10-03 Thread Michael E. Carluen
Ugh! John, Pascal... you're right... I think I had one too many #'s the last time. Work this time. I appreciate both of your help. At 08:54 AM 10/3/2002 +0100, John Beynon wrote: Hey Michael, I just cut and paste your code out and when I click on the link it took me to:

RE: Printing Crystal Report from web page?

2002-10-03 Thread Kevan . Windle
You can also get crystal to output to PDF, if like us you think the report viewers are a bit clunky. -Original Message- From: Frank Mamone [mailto:[EMAIL PROTECTED]] Sent: 03 October 2002 02:38 To: CF-Talk Subject: Re: Printing Crystal Report from web page? The best method I've found

RE: HomeSite+

2002-10-03 Thread Robertson-Ravo, Neil (REC)
meanwhile...back at the Batcave... -Original Message- From: Tilbrook, Peter [mailto:[EMAIL PROTECTED]] Sent: 03 October 2002 05:50 To: CF-Talk Subject: HomeSite+ I thought we'd lost ColdFusion Studio for good with the release of the pretty good Studio MX. Thankfully MM have

RE: COM Object Instantiation Problem

2002-10-03 Thread Robertson-Ravo, Neil (REC)
It was for CFMX (not J2EE), not just standalone though, the whole shebang., -Original Message- From: Dale Coyner [mailto:[EMAIL PROTECTED]] Sent: 03 October 2002 04:53 To: CF-Talk Subject: RE: COM Object Instantiation Problem Bryan, Is the update for CF4J2EE also? I had read that

RE: Any Christian ColdFusion developers out there?

2002-10-03 Thread Robertson-Ravo, Neil (REC)
no religion here thank you (wel, certainly none for me), as the list master stated : cf-community. -Original Message- From: Howie Hamlin [mailto:[EMAIL PROTECTED]] Sent: 03 October 2002 04:46 To: CF-Talk Subject: Re: Any Christian ColdFusion developers out there? Whoa - I saw your

Footer at Bottom

2002-10-03 Thread Shahzad.Butt
How can I always display my footer page (consist of one Table), always at bottom of Browser Window. No matter its being included in page with two lines still its at bottom of page and even if page has got scrollable thingy still footer is at end (bottom) of page. Shahzad Butt (Development

RE: Footer at Bottom

2002-10-03 Thread Robertson-Ravo, Neil (REC)
place the table within the OnRequestEnd.cfm page. That is always the last page parsed and will ensure your table is at the bottom of the page. -Original Message- From: Shahzad.Butt [mailto:[EMAIL PROTECTED]] Sent: 03 October 2002 10:41 To: CF-Talk Subject: Footer at Bottom How can I

Passing URL.variable to an iFrame

2002-10-03 Thread Russ
All, I'm passing a URL.variable through to my page, and my page loads an iFrame. Whenever the iFrame is grabbing a query and I'm hoping it will grab based upon the URL.variable, it doesn't do that. Instead, it grabs the value based upon the default in my cfparam tag. Is there anything I'm

RE: Footer at Bottom

2002-10-03 Thread Shahzad.Butt
Displaying page at end of each request is not a problem, its already doing that. But what I want is display at bottom of screen. Currently what it is doing is something like that CONTENTS OF PAGE CONSIST OF SAY 4 LINES --- Footer at 6th LINE What I want is CONTENTS OF

RE: Footer at Bottom

2002-10-03 Thread Robertson-Ravo, Neil (REC)
why dont you place it in within a table and valign='bottom'. You could always use a Custom Tag to perform the operation also... N -Original Message- From: Shahzad.Butt [mailto:[EMAIL PROTECTED]] Sent: 03 October 2002 10:55 To: CF-Talk Subject: RE: Footer at Bottom Displaying page at

RE: Footer at Bottom

2002-10-03 Thread Russ
Try placing your entire page in a 100% x 100% table. 2 rows. Bottom row valign=bottom Include footer. See if that works. Russ -Original Message- From: Shahzad.Butt [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 03, 2002 4:55 AM To: CF-Talk Subject: RE: Footer at Bottom

CF5 Problem

2002-10-03 Thread CF-DEV
Any idea why CF 5 would server CFM files up as TXT files? I do have the index.cfm in the IIS settings for default documents. TIA! ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: Footer at Bottom

2002-10-03 Thread John Beynon
If you had a layout table sized 100% vertical and a row a the bottom you could shove it in there - that should work. -Original Message- From: Robertson-Ravo, Neil (REC) [mailto:[EMAIL PROTECTED]] Sent: 03 October 2002 10:57 To: CF-Talk Subject: RE: Footer at Bottom why dont you place

RE: Footer at Bottom

2002-10-03 Thread Pascal Peters
I'm not 100% sure, but I think you can place everything in a table with width and haight set to 100%. You create a top cell for the content and a bottom cell with valign=bottom for the footer. You should probably test this for cross-browser compatibility -Original Message- From:

RE: Passing URL.variable to an iFrame

2002-10-03 Thread Russ
Ignore this request. Stupid syntax errors at 5am CST. Apologies for the extra noise on my part. Russ -Original Message- From: Russ [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 03, 2002 4:50 AM To: CF-Talk Subject: Passing URL.variable to an iFrame All, I'm passing

Re: cfmail: attachment + multipart?

2002-10-03 Thread Jochem van Dieten
Samuel Farmer wrote: I am trying to send out a cfmail in multipart format and (sometimes) send an attachment as well. Got the first part to work, but if I add a file to the mimeAttach attribute I get the file but the email formating is lost. Any ideas/solutions? Headers mix-up.

Verity with Coldfusion MX

2002-10-03 Thread Ian Vaughan
What are your experiences with verity that comes with Coldfusion MX, I believe that it is an updated version of the verity version that cam with Coldfsuion 4.5?? Is it more accurate, faster and more powerfulll than the previous version? If not what other options/software are there for having a

RE: CF Mail Problem..

2002-10-03 Thread Bud
On 10/1/02, Ryan Sabir penned: Thats how CFMAIL is supposed to work when you pass a query to it. What you should do is use a CFLOOP query=queryname inside your CFMAIL content section to output the data you need in the table. bye! That depends. If you have a cfouput nested in the cfmail, it

Non-Windows CFMX interfacing emulated MS-Access db. was: SOT How to set up win XP network to be recognized by OS X

2002-10-03 Thread Dick Applebaum
Success! It is possible to interface ColdFusion MX (CFMX) running on OS X 10.2.1 (Jaguar) to a MS-Access database running under VirtualPC emulated WinXP on the same machine. This should also be possible on a Linux Box using VMWare. Everything seems to work well (limited testing, so far). A

RE: Any Christian ColdFusion developers out there?

2002-10-03 Thread Rick Faircloth
I think he addressed his remarks to Christians, Neil... He did not address his remarks to those who were not interested. As for community, are Christians, who define a subgroup of CF developers, welcome inside the larger community of CF, or are those who are religious, particularly Christians,

Re: Footer at Bottom

2002-10-03 Thread Stephen Moretti
Displaying page at end of each request is not a problem, its already doing that. But what I want is display at bottom of screen. Currently what it is doing is something like that You're talking about something like the nasty floating thing that you get when you go a geocities website, except

RE: Cfmail performance comparisons

2002-10-03 Thread Stacy Young
Is it possible to just run the one query then output using cfmail? cfmail query=myQuery to= from= subject= -Original Message- From: W Luke [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 03, 2002 3:18 AM To: CF-Talk Subject: Re: Cfmail performance comparisons Stacy Young [EMAIL

RE: Converting new lines to br

2002-10-03 Thread Everett, Al
If you only need it for display purposes, ParagraphFormat() should be what you need. If you actually need to change the string, then the other suggestions given should be fine. I'm new to Cold Fusion so bear with me. Is there a way of converting new lines in a string to html line breaks br.

RE: Any Christian ColdFusion developers out there?

2002-10-03 Thread Robertson-Ravo, Neil (REC)
cf-community... -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED]] Sent: 03 October 2002 13:15 To: CF-Talk Subject: RE: Any Christian ColdFusion developers out there? I think he addressed his remarks to Christians, Neil... He did not address his remarks to those who

RE: Footer at Bottom

2002-10-03 Thread Kevin Graeme
This won't work. The table height attribute doesn't work consistently and has been deprecated by the W3C in HTML 4.01. The only way I can think of to do it is with floating layers and DHTML. Set the footer content into a layer and continually check the browser window to see what its dimensions

Installing Tomcat 4

2002-10-03 Thread Robertson-Ravo, Neil (REC)
I know this is not CF related, but we are using Tomcat for one of our application features; thing is, do any of you guys know the process of installing it? I have Tomcat 4.x binary files which have been delivered to me as a .zip archive. I extracted these and I have the Tomcat.exe etc and whole

RE: Installing Tomcat 4

2002-10-03 Thread Adrian Lynch
Double click the .exe :O) Sorry :OP Ade -Original Message- From: Robertson-Ravo, Neil (REC) [mailto:[EMAIL PROTECTED]] Sent: 03 October 2002 13:45 To: CF-Talk Subject: Installing Tomcat 4 I know this is not CF related, but we are using Tomcat for one of our application features;

RE: Date Comparison

2002-10-03 Thread Everett, Al
Short answer: You can't. CF needs to run under a user account in order to access drives on the network. (I still have a flat spot on my head from banging it against my desk over this.) -Original Message- From: Brook [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 02, 2002 6:56

Re: Installing Tomcat 4

2002-10-03 Thread Stephen Moretti
http://jakarta.apache.org/tomcat/ There's a pointer for you ;o) - Original Message - From: Robertson-Ravo, Neil (REC) [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, October 03, 2002 1:44 PM Subject: Installing Tomcat 4 I know this is not CF related, but we are

RE: Installing Tomcat 4

2002-10-03 Thread Robertson-Ravo, Neil (REC)
luck I have this tight belt on -Original Message- From: Stephen Moretti [mailto:[EMAIL PROTECTED]] Sent: 03 October 2002 13:59 To: CF-Talk Subject: Re: Installing Tomcat 4 http://jakarta.apache.org/tomcat/ There's a pointer for you ;o) - Original Message -

RE: Installing Tomcat 4

2002-10-03 Thread Mark Smyth
run the exe and once done check the tomcat service is running (if you're opn windows) then you should be able to browse http://localhost:8080 which will provide the local tomcat docs hth mark -Original Message- From: Stephen Moretti [mailto:[EMAIL PROTECTED]] Sent: 03 October 2002

RE: How to delete a session variable

2002-10-03 Thread Raymond Camden
You can use structDelete: cfset structDelete(session,name of var to kill, ie, foo) Be sure to use locks if you are MX. === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] Yahoo IM :

RE: Installing Tomcat 4

2002-10-03 Thread Robertson-Ravo, Neil (REC)
there isnt an .exe installer, only binaries -Original Message- From: Mark Smyth [mailto:[EMAIL PROTECTED]] Sent: 03 October 2002 14:01 To: CF-Talk Subject: RE: Installing Tomcat 4 run the exe and once done check the tomcat service is running (if you're opn windows) then you

RE: CFMX bug?

2002-10-03 Thread Michael Corbridge
Peter, I would like to look into this issue for you. What was your upgrade path? michael d corbridge macromedia 617.219.2307 [EMAIL PROTECTED] -Original Message- From: Tilbrook, Peter [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 03, 2002 2:09 AM To: CF-Talk Subject: CFMX bug?

RE: Installing Tomcat 4

2002-10-03 Thread Robertson-Ravo, Neil (REC)
ah it doesnt matter, turns out its a piece of piss :-) -Original Message- From: Robertson-Ravo, Neil (REC) [mailto:[EMAIL PROTECTED]] Sent: 03 October 2002 14:10 To: CF-Talk Subject: RE: Installing Tomcat 4 there isnt an .exe installer, only binaries -Original Message-

RE: Installing Tomcat 4

2002-10-03 Thread Mark Smyth
is that the technical term? ;) -Original Message- From: Robertson-Ravo, Neil (REC) [mailto:[EMAIL PROTECTED]] Sent: 03 October 2002 14:13 To: CF-Talk Subject: RE: Installing Tomcat 4 ah it doesnt matter, turns out its a piece of piss :-) -Original Message- From:

Payflow in MX?

2002-10-03 Thread Sean Daniels
Since our upgrade to MX, the CFX_Cybercash tag has been flaky at best so we're making the move away from Cybercash to Payflow. Can anyone out there confirm for me that the CFX_PaymentNet tag functions correctly in MX? I believe Verisign offers an XML gateway too, but I really want the minimum

Re: Non-Windows CFMX interfacing emulated MS-Access db. was: SOT How to set up win XP network to be recognized by OS X

2002-10-03 Thread Sean Daniels
On Thursday, October 3, 2002, at 07:17 AM, Dick Applebaum wrote: It is possible to interface ColdFusion MX (CFMX) running on OS X 10.2.1 (Jaguar) to a MS-Access database running under VirtualPC emulated WinXP on the same machine. Dick, thanks for posting this update. Someday when I have

RE: CFC debug bug...

2002-10-03 Thread Michael Corbridge
Here's my debug info: ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk FAQ:

RE: Math In MX?

2002-10-03 Thread Michael Corbridge
Lee, Any resolution to this math error? I ran the division on my MX box and indeed the quotient is 0.346752058554 michael d corbridge macromedia 617.219.2307 [EMAIL PROTECTED] -Original Message- From: Lee Fuller [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 01, 2002 10:19 PM To:

RE: CFC debug bug...

2002-10-03 Thread Adrian Lynch
Looks like your page is working :OD -Original Message- From: Michael Corbridge [mailto:[EMAIL PROTECTED]] Sent: 03 October 2002 14:35 To: CF-Talk Subject: RE: CFC debug bug... Here's my debug info: ~| Archives:

Header info displaying on site?

2002-10-03 Thread Ian Lurie
Hi all, I've got an app that's suddenly showing what looks like http header information at the top of every page on the site: HTTP/1.1 200 OK Server: Microsoft-IIS/5.0 Date: Thu, 03 Oct 2002 13:46:25 GMT Connection: close Content-type: text/html Page-Completion-Status: Normal Set-Cookie:

RE: Payflow in MX?

2002-10-03 Thread Ben Densmore
Yes, I have tested CFX_PaymentNet with MX and have had no problems, the only thing you will have a problem with, at least I ran into this, if you use the installer it will tell you it can't detect Coldfusion on the system, just copy the dll file to your winnt\system32(if you're using windows)

need info

2002-10-03 Thread Steve Dworman
My boss needs me to gather information for a project. What we need to quote is a system that will accept a minimum of 2500 faxes a day, store the image, a CF app will then store the image in the database. I have the CF part down, but I’m still learning about the hardware required to handle the

RE: Header info displaying on site?

2002-10-03 Thread John Beynon
Let me guess, you've just upgraded IE? Perhaps to 6 SP1? Jb. -Original Message- From: Ian Lurie [mailto:[EMAIL PROTECTED]] Sent: 03 October 2002 14:49 To: CF-Talk Subject: Header info displaying on site? Hi all, I've got an app that's suddenly showing what looks like http header

CFM Files Display as TXT

2002-10-03 Thread Randell B Adkins
Any idea why CFM files when called by a browser would display them as if they were TEXT and not served up as CFM files from the CF Application Server? I am running CF5 under IIS. I do have index.cfm as a default document. But when I call: http://localhost/mydir/index.cfm it displays the

need info...cont

2002-10-03 Thread Steve Dworman
FYI…I’ve done some research on this and found FAXPRESS, Optus Software, and Castelle. What I’m looking for is an implementation, or in other words a solution that is working now. Thanks, Steven D Dworman Macromedia Certified Developer -

Re: Header info displaying on site?

2002-10-03 Thread Ian Lurie
Nope. I'm using Mozilla. This also happens in NS 4 and 6, on three separate client computers and two different servers... On 10/3/02 6:56 AM, John Beynon [EMAIL PROTECTED] wrote: Let me guess, you've just upgraded IE? Perhaps to 6 SP1? Jb.

RE: Header info displaying on site?

2002-10-03 Thread Robertson-Ravo, Neil (REC)
talking of Moz, whats the best kind out there at the mo? -Original Message- From: Ian Lurie [mailto:[EMAIL PROTECTED]] Sent: 03 October 2002 15:09 To: CF-Talk Subject: Re: Header info displaying on site? Nope. I'm using Mozilla. This also happens in NS 4 and 6, on three separate client

RE: Header info displaying on site?

2002-10-03 Thread Mike Townend
It will be to do with how CF puts information into the title tags of the page... Are you using CFHTMLHEAD or cfform tags on the pages where this occurs? -Original Message- From: Ian Lurie [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 3, 2002 15:09 To: CF-Talk Subject: Re: Header

RE: Header info displaying on site?

2002-10-03 Thread John Beynon
Hmm, I've only seen recent reports on people upgrading to IE6 - header info was displayed for some on MM's site... -Original Message- From: Ian Lurie [mailto:[EMAIL PROTECTED]] Sent: 03 October 2002 15:09 To: CF-Talk Subject: Re: Header info displaying on site? Nope. I'm using

QofQ weirdness when using QueryNew

2002-10-03 Thread Ryan Kime
OK, I really need some help on this one. I have a query I create on the fly using QueryNew/QueryAddRow/QuerySetCell. Everything is fine until I try to use a cfquery with dbtype=Query on the created query to order the results - it throws a QofQ runtime error. If I comment out the cfquery and

RE: QofQ weirdness when using QueryNew

2002-10-03 Thread Ryan Kime
Let me format that code a little better: cfset newRow = QueryAddRow(teamStandings, 1) !--- set the cells in the query row --- cfset temp = QuerySetCell(teamStandings, site_id, #site_id#, #loop_count#) cfset temp = QuerySetCell(teamStandings, name, #orginization_name#, #loop_count#) cfset

TSQL

2002-10-03 Thread Mario Martinez
Hi folks: This question could be innapropiate but this list has always been great . Besides I'm a newbie. My problem is Transact-SQL related. I want to convert a numeric value (it 's the amount of seconds a user has spend in one of my sites) to this format hh:mm:ss .Is there any function in SQL

RE: SQL error - Arithmetic overflow...?

2002-10-03 Thread A.Little
Don't know for sure, but could it be that the fields where you're adding 27.5 are set up as integer fields? This might not have been a problem in Access where there's just a 'number' datatype, but could make a difference in sql with 'int', 'float', 'decimal' etc If you've auto-upsized your

Re: CFM Files Display as TXT

2002-10-03 Thread S . Isaac Dealey
Your default documents list shouldn't matter in this case although you may want to check to make sure the CF Server service hasn't stopped in NT Services... If the service is stopped, afaik IIS just passes the file on to the browser as is. Any idea why CFM files when called by a browser would

Re: Header info displaying on site?

2002-10-03 Thread Stephen Moretti
John, That may be the problem, but I've seen this happen before on ie4 and ie5 Ian, Check the HTML on that page. If I remember correctly, sometimes if this occurs if there is stuff in the header or above the html tag... Its been such a long time since I encountered this personally that I

RE: Header info displaying on site?

2002-10-03 Thread Adrian Lynch
Do you have any browsers where it doesn't happen? -Original Message- From: Ian Lurie [mailto:[EMAIL PROTECTED]] Sent: 03 October 2002 15:09 To: CF-Talk Subject: Re: Header info displaying on site? Nope. I'm using Mozilla. This also happens in NS 4 and 6, on three separate client

Cumulative Patch for SQL Server (Q316333) Crtical for 2000

2002-10-03 Thread Zac Spitzer
Microsoft Security Bulletin MS02-056 http://www.microsoft.com/technet/treeview/default.asp?url=/technet/security/bulletin/MS02-056.asp have fun, yet another crappy m$ patch from with no installer and 2 pages of instructions and it's rated critical for all internet instances z

Re: QofQ weirdness when using QueryNew

2002-10-03 Thread Zac Spitzer
Ryan Kime wrote: OK, I really need some help on this one. I have a query I create on the fly using QueryNew/QueryAddRow/QuerySetCell. Everything is fine until I try to use a cfquery with dbtype=Query on the created query to order the results - it throws a QofQ runtime error. If I comment

RE: QofQ weirdness when using QueryNew

2002-10-03 Thread Mark A. Kruger - CFG
Ryan, We had this error discussed a little while back. QuerySetCell types your data as a string if you do not trick it into knowing othewise. It really needs an additional parameter called type or something. Anyway, try this trick on the dist_wins column set: QuerySetCell(teamStandings,

Re: TSQL

2002-10-03 Thread S . Isaac Dealey
I'm not aware of a simple native way to do this, though you can use dateadd math... select convert(varchar,hour(dateadd(s,#seconds#,#createodbcdate(now())#))) + ':' + convert(varchar,minute(dateadd(s,#seconds#,#createodbcdate(now())#))) + ':' +

Running the CFMX Updater - virtual sites

2002-10-03 Thread Dave Wilson
Hi, I've just stumbled across the COM problems in CFMX and have installed the Update but nothing has changed with my COM problem. Its a simple call to the Excel object to read a simple value and worked fine in CF4.5.2 I've even re-run wsconfig.jar on the server in an attempt to transfer the

RE: Header info displaying on site?

2002-10-03 Thread John Beynon
I spoke to MS about it when I first saw it and they referred me to an article that basically affected *any* update of the IE software..althought there was no definitive answer and I've forgotten the Q number. Jb. -Original Message- From: Stephen Moretti [mailto:[EMAIL PROTECTED]] Sent:

Re: Header info displaying on site?

2002-10-03 Thread Ian Lurie
No - it's definitely my code... On 10/3/02 7:41 AM, Adrian Lynch [EMAIL PROTECTED] wrote: Do you have any browsers where it doesn't happen? -- Portent Interactive Effective web sites through Conversation Marketing  http://www.portentinteractive.com

RE: -OT- Another Javascript problem with forms

2002-10-03 Thread Michael Corbridge
Thane, I can get the fields to sum correctly by ensuring that the initial value of: window.document.ExpenseForm.GrandTotalAmount.value = 0; outside the while loop; SCRIPT language=Javascript function addTotals() { i = 0

RE: TSQL

2002-10-03 Thread Mark A. Kruger - CFG
Mario, If you know the field is a cerain length you can cast it as a char: CAST(myNumField, Char(6)), then use substring( ) to concatenate it: DECLARE @myString char(6) DECLARE @myTime char(8) SELECT @myString = (SELECT CAST(myNumField, Char(6)) FROM table where . ) SELECT @myTime =

RE: CFC debug bug...

2002-10-03 Thread Michael Corbridge
sorry, try again 0 ms 0 ms 1 CFC[ C:\CFusionMX\wwwroot\research\cfBugs\cftalk-03.cfc | feedTheBeaver( grapes, 1) ] from C:\CFusionMX\wwwroot\research\cfBugs\cftalk-03.cfm 0 ms 0 ms 1 CFC[ C:\CFusionMX\wwwroot\research\cfBugs\cftalk-03.cfc | feedTheBeaver( pears, 1) ] from

Report: CF Fatal Errors

2002-10-03 Thread Randell B Adkins
Has anyone seen this error in the server.log file from the CF Administrator? Caught a fatal signal (4) - Aborting OR Caught a fatal signal (11) - Aborting After receiving this error, CF Executive (I imagine) initiates a call for restarting the CF Application Server Services. If so, any

RE: QofQ weirdness when using QueryNew (SOLVED)

2002-10-03 Thread Ryan Kime
Thank you Zac and Mark! The int() did the trick...you're right Mark, the cfscript way does look cleaner. Thanks again -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 03, 2002 9:52 AM To: CF-Talk Subject: RE: QofQ weirdness when using

RE: CFC debug bug...

2002-10-03 Thread Adrian Lynch
More importantly, is the beaver still getting fed? Ade -Original Message- From: Michael Corbridge [mailto:[EMAIL PROTECTED]] Sent: 03 October 2002 14:40 To: CF-Talk Subject: RE: CFC debug bug... sorry, try again 0 ms 0 ms 1 CFC[ C:\CFusionMX\wwwroot\research\cfBugs\cftalk-03.cfc |

Repost: CF Fatal Errors

2002-10-03 Thread Randell B Adkins
Has anyone seen this error in the server.log file from the CF Administrator? Caught a fatal signal (4) - Aborting OR Caught a fatal signal (11) - Aborting After receiving this error, CF Executive (I imagine) initiates a call for restarting the CF Application Server Services. If so, any

Re: TSQL

2002-10-03 Thread Jochem van Dieten
Quoting Mario Martinez [EMAIL PROTECTED]: My problem is Transact-SQL related. I want to convert a numeric value (it 's the amount of seconds a user has spend in one of my sites) to this format hh:mm:ss .Is there any function in SQL transact that I could use ??. Why not use plain old SQL?

RE: Printing Crystal Report from web page?

2002-10-03 Thread Shawn Grover
Thanks to both Kevan and Frank. We ARE using the ActiveX control (well, the viewrpt.cwr file), but we can't use a native Crystal report because it includes the option to change the query parameters. In our case that would be a huge security hole. So, the reports are dumped to HTML (for now),

Installed CFMX Updater - Administrator has disappeared!!

2002-10-03 Thread Dave Wilson
Hi, Further to my last email about discovering COM problems and installing the updater, I've just discovered the CF Administration tool has become inaccessible. I'm getting a 404 not found returned when I browse to http://servername/cfide/administrator/index.cfm which is the url I've always

SOLVED: Re: Header info displaying on site?

2002-10-03 Thread Ian Lurie
Just thought I'd post this - I found the solution. Turns out the ampersand in the title tag was causing the browser/server to dump the header info. Interesting feature... On 10/3/02 7:54 AM, Ian Lurie [EMAIL PROTECTED] wrote: No - it's definitely my code... On 10/3/02 7:41 AM, Adrian

Re: CFC debug bug...

2002-10-03 Thread Jon Hall
Curious...I am able to replicate it with ease. Have you applied the patch yet? -- jon mailto:[EMAIL PROTECTED] Thursday, October 3, 2002, 9:39:57 AM, you wrote: MC sorry, MC try again MC 0 ms 0 ms 1 CFC[ C:\CFusionMX\wwwroot\research\cfBugs\cftalk-03.cfc | feedTheBeaver( grapes, 1) ] from

RE: CFC debug bug...

2002-10-03 Thread Robertson-Ravo, Neil (REC)
Jon, can you zip the stuff up and send to me offline so I can test against my CFMX install? -Original Message- From: Jon Hall [mailto:[EMAIL PROTECTED]] Sent: 03 October 2002 16:56 To: CF-Talk Subject: Re: CFC debug bug... Curious...I am able to replicate it with ease. Have you applied

OT: CF_TwoSelectsRelated beg

2002-10-03 Thread Jeff Beer
Could someone send me a copy of Nate Weiss' TwoSelectsRelated or point me to a site where I can grab it? devex.macromedia appears to be down, and Nate's site is mostly offline. TIA, Jeff ([EMAIL PROTECTED], [EMAIL PROTECTED])

RE: TSQL

2002-10-03 Thread Mark A. Kruger - CFG
cool - never seen that syntax before. -mk -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 03, 2002 9:55 AM To: CF-Talk Subject: Re: TSQL Quoting Mario Martinez [EMAIL PROTECTED]: My problem is Transact-SQL related. I want to convert a

Re: CF_TwoSelectsRelated beg

2002-10-03 Thread Stephen Moretti
Oldish version coming to you off line - Original Message - From: Jeff Beer [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, October 03, 2002 5:06 PM Subject: OT: CF_TwoSelectsRelated beg Could someone send me a copy of Nate Weiss' TwoSelectsRelated or point me to a

RE: Websphere version

2002-10-03 Thread Vernon Viehe
The info reported back to me on the question is that 4.03 is the supported version. It may work with other versions, but it's not been tested on them. I hope this info helps! -Vern -Original Message- From: Robert Shaw [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 02, 2002

CFC Browser in DWMX

2002-10-03 Thread Stacy Young
Anyone have this just stop working? I'm running CFMX on win2k on the local machine. I can access CFC's in the explorer via the URL in a browser but not through DWMX. I haven't changed any of my settings for the defined site...but re-verified them just to make sure and everything looks as it

RE: CFC Browser in DWMX

2002-10-03 Thread Stacy Young
Now this is odd... http://localhost:8500/CFIDE/componentutils/cfcexplorer.cfc?method=getcfcs Which I believe is the method used by DWMX returns this in a browser: Error Occurred While Processing Request Variable FILENAMES is undefined. The error occurred in

RE: CFC Browser in DWMX

2002-10-03 Thread Stacy Young
Appears to be a bug. It turned out to be a custom tag path that I added in the CFAdmin. The dir contains one tag called forward...whenever I enable this tag path the CFC explorer in DWMX breaks...and also via the web as per my last email... *shrugs* -Original Message- From: Stacy Young

RE: CFC Browser in DWMX

2002-10-03 Thread Collin Tobin
I will attempt to reproduce and log a bug if necessary. Thanks Stacy. Collin Tobin QA Engineer 617 219 2000 [EMAIL PROTECTED] Macromedia® What the web can be.(tm) -Original Message- From: Stacy Young [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 03, 2002 12:50 PM To: CF-Talk

Where can I find a free source of news content?

2002-10-03 Thread David Adams
I am looking for a source of inexpensive news-based content that can be either consumed as a web service or harvested from conventional web pages. I don't want to have to link or be redirected to the actual source but include it in my site and make it look as if it is mine. The reason why I

RE: Converting new lines to br

2002-10-03 Thread Luis Lebron
Thanks for the info. That did the trick. I ended up writing it a function cffunction name=nl2br returnType=string cfargument name=string type=string cfreturn replace(string, #chr(10)#, br#chr(10)#, all) /cffunction Luis -Original Message- From: Ben Doom [mailto:[EMAIL

RE: CFC Browser in DWMX

2002-10-03 Thread Stacy Young
Thanks Collin...here's the details: Aside from the default custom tag mapping I had two others. Both mapped to directories somewhere under c:\CFusionMX\wwwroot C:\CFusionMX\wwwroot\ino\src\customTags forward2.cfm secure.cfm C:\CFusionMX\wwwroot\zeus\customTags Forward.cfm I'm

RE: Where can I find a free source of news content?

2002-10-03 Thread Russ
Tons of them out there. http://www.syndic8.com is a decent one. Webservices, I think, has a different meaning for most of the web than what you're searching for. Try XML Newsfeeds or RSS Newsfeeds and the like. HTH, Russ -Original Message- From: David Adams [mailto:[EMAIL

Client Variables

2002-10-03 Thread Rob Rohan
Is anyone experiencing odd database issues with MX? We are migrating to MX, have MS SQL 7 database, and are experiencing things such as: * client variables not being saved - cfide:token are but the data is not * some select statements that used to work in 5 are now returning 0 records in MX, but

RE: Header info displaying on site?

2002-10-03 Thread Benjamin S. Rogers
I've run into this problem before. I believe, in my case, it occurred when using the cfhtmlhead tag and the cflocation tag in tandem. If I looked at the source of the page that was the target of the redirection, I'd see the content set by the cfhtmlhead tag above the HTTP headers of the page. If

Re: Client Variables

2002-10-03 Thread Paul Giesenhagen
It seems that CFMX has us tighting up our code. We had an issue where a db column conflicted with a session structure setting, we had to rename the structure (or the table column name). There are other things, but we found that it was usually something sloppy on our end ... I am not sure if

RE: Client Variables

2002-10-03 Thread Rob Rohan
Thank you, that is a possibility - I am rather sure there is some code that does what you are suggesting. Thanks again I'll check that. -Original Message- From: Paul Giesenhagen [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 03, 2002 10:25 AM To: CF-Talk Subject: Re: Client

  1   2   3   >