Re: When does onSessionEnd get called?

2006-03-31 Thread S . Isaac Dealey
I wouldn't expect it to mean that... I'd have to get a closer look at your application, but it sounds like you'd have had the onSessionEnd() method being called manually somewhere in your application.cfc like in the onRequestEnd() (which would explain why you get the error on every request), but

Re: When does onSessionEnd get called?

2006-03-31 Thread James Holmes
It was probably a compilation error. Since Application.cfc runs on every request, the bad method would have failed to compile on every request, triggering an error. On 3/31/06, S. Isaac Dealey [EMAIL PROTECTED] wrote: I wouldn't expect it to mean that... I'd have to get a closer look at your

Re: get directory size

2006-03-31 Thread Raymond Camden
Don't forget cfdirectory now has a resurse option. You can do a recusrive get on the folder, then use query of query to get the total. No need to loop over the entire result set. On 3/30/06, Srinivasa Teja Palla [EMAIL PROTECTED] wrote: is there no other easy way to get the directory size than

RE: CFWDDX and Component Objects

2006-03-31 Thread Snake
OK well that much I know, but that fact seems kinda moot and pedantic, cozz if someone can do that, then obviously must have complete access to your code anyway to be able to call your CFC directly and access it's public member vars in the first place. I thought he was trying to imply that I

RE: LAMP package

2006-03-31 Thread Andy Matthews
Not even gonna go there Jacob. :) !//-- andy matthews web developer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Munson, Jacob [mailto:[EMAIL PROTECTED] Sent: Thursday, March 30, 2006 4:46 PM To: CF-Talk

Re: LAMP package

2006-03-31 Thread Ken Ferguson
I may be missing something here, but why do you need a package??? What's wrong with just installing the A, M, and P? I've got several machines set up with all of the above and I didn't use any package to get it that way. I guess what I'm asking is, other than the little bit of convenience of a

RE: CFLOOP: Select Form in Edit Mode with Multiple Selections (selected help)

2006-03-31 Thread Andy Matthews
What about just using the ListFind function. ListFind(yourlist,currentid) !//-- andy matthews web developer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent:

Re: LAMP package

2006-03-31 Thread Rob Wilkerson
I think the convenience was really the point. Certainly, installing each necessary package would work just fine. I think Andy was just looking for options/opinions/etc. On 3/31/06, Ken Ferguson [EMAIL PROTECTED] wrote: I may be missing something here, but why do you need a package??? What's

RE: LAMP package

2006-03-31 Thread Andy Matthews
So you're saying that you think it would be better to go download, install and configure each individual package than spending a few extra minutes finding a package that will do it all for me? No thank you. Not to mention that these packages are already pre-set up to work seamlessly with each

Re: When does onSessionEnd get called?

2006-03-31 Thread S . Isaac Dealey
That might be true if the error handler was specified in the CF Administrator. If the error handler is specified with cferror then I don't believe that's possible. Reading over his post again I realize he didn't say where the error handler was specified, and my tendancy is to assume cferror (I

Re: LAMP package

2006-03-31 Thread Rob Wilkerson
While I agree that easy is (almost always) better, doing this manually isn't all that difficult. If you're looking for an all-in-one solution, though, the XAMPP package I mentioned in an earlier post is the only one I've ever heard of. On 3/31/06, Andy Matthews [EMAIL PROTECTED] wrote: So

Re: LAMP package

2006-03-31 Thread Ken Ferguson
I never really thought of it as that big of a hassle. And yeah, I do tend to think that it's better to install each and get each set up exactly like I want them set up. I'm not knockin' you for it though; maybe I'll try one of the packages next time I've got a machine to set up and see how it

Re: HTML 101-its friday

2006-03-31 Thread Rob Wilkerson
#anchorName Or, in a CF page, ##anchorName should do it. On 3/31/06, Eric J. Hoffman [EMAIL PROTECTED] wrote: Have some dynamic links: a href=index_lab.cfm?ppid=#lpid#id=#url.id#gr=#url.gr#la=#url.la# class=lablinkblue Want it to go to the section of the page by using the old a

RE: HTML 101-its friday

2006-03-31 Thread Andy Matthews
a name=youranchorlink/a a href=#youranchorlinkyour anchor link/a !//-- andy matthews web developer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Eric J. Hoffman [mailto:[EMAIL PROTECTED] Sent: Friday, March 31,

Re: HTML 101-its friday

2006-03-31 Thread Ray Champagne
I think you just need to add an anchor to the end of your URL string: a href=index_lab.cfm?ppid=#lpid#id=#url.id#gr=#url.gr#la=#url.la###woohoo class=lablinkblue (assumed that you have the a tag surrounded by cfoutput) Is that what you're asking? Eric J. Hoffman wrote: Have some dynamic

RE: HTML 101-its friday

2006-03-31 Thread Eric J. Hoffman
Aye, but I can't pass it from that link to make it refresh the page? I know how to do internally in a doc, but thought you could still direct to a page and provide the poundage. Eric J. Hoffman Managing Partner 2081 Industrial Blvd

RE: HTML 101-its friday

2006-03-31 Thread Eric J. Hoffman
Duh, thanks. Eric J. Hoffman Managing Partner 2081 Industrial Blvd StillwaterMN55082 mail: [EMAIL PROTECTED] www: http://www.ejhassociates.com tel: 651.717.4105 fax: 651.717.4115 mob: 651.245.2717

Re: HTML 101-its friday

2006-03-31 Thread Rob Wilkerson
Oh, and I believe you need to add the anchor at the end of the path, not the query string. :-) a href=index_lab.cfm##woohoo?ppid=#lpid#id=#url.id#gr=#url.gr#la=#url.la###woohoo class=lablinkblue On 3/31/06, Ray Champagne [EMAIL PROTECTED] wrote: I think you just need to add an anchor to the

Re: When does onSessionEnd get called?

2006-03-31 Thread Mike Kear
no it's not the site-wide error handler - its in a shared environment so i dont have access to the administrator I have an onError() method in the CFAdministrator, that has this (in part) : cfmail to=[EMAIL PROTECTED] from=[EMAIL PROTECTED] subject=[ #this.sitename# ] Error on the site

CFUNITED-06 Timely bird ends TODAY Friday 3/31/06

2006-03-31 Thread Michael Smith
The Timely Bird price on the CFUNITED ColdFusion conference ends today Friday 3/31/06 at midnight EST. Also if you register for a pre-conference class http://www.cfunited.com/classes06.cfm by end of today you will be entered to win a free 8 GB memory stick! (Some classes are already 35% full!)

Re: HTML 101-its friday

2006-03-31 Thread Ray Champagne
Actually, I have this working the way that I said on one of my sites. Not sure about your method, but I know mine works. Rob Wilkerson wrote: Oh, and I believe you need to add the anchor at the end of the path, not the query string. :-) a

Re: When does onSessionEnd get called?

2006-03-31 Thread S . Isaac Dealey
no it's not the site-wide error handler - its in a shared environment so i dont have access to the administrator I have an onError() method in the CFAdministrator, that has this (in part) : So that rules out the possibility of a compile error, since it would occur while compiling the CFC.

RE: Eolas CFForm Fix: Beta

2006-03-31 Thread Munson, Jacob
I finished up the initial version and need a few people who have the IE7 Beta installed to test it out on their Flash forms. Why IE7? Isn't the problem patch for IE6? Or did I miss something? -- This transmission may contain information that is privileged, confidential and/or

RE: get directory size

2006-03-31 Thread Artur Kordowski
If you are using a Windows Server you can use the FileSystemObject COM API to get informations about the file system. For this I've created a CFC which you can download here: http://download.newsight.de/FileSystemObject.zip Artur -Original Message- From: Srinivasa Teja Palla

RE: Eolas CFForm Fix: Beta

2006-03-31 Thread Kevin Aebig
Either / Or... my bad. The new version of IE has it as well. !k -Original Message- From: Kevin Aebig [mailto:[EMAIL PROTECTED] Sent: March 31, 2006 9:48 AM To: CF-Talk Subject: Eolas CFForm Fix: Beta Hey guys, I finished up the initial version and need a few people who have the IE7

Re: get directory size

2006-03-31 Thread Andy Neale
You can use a query-of-queries once you've done the initial directory listing to sum the file sizes without looping: !--- Retrieve directory listing --- cfdirectory action=list directory=C:\Windows name=directoryList / !--- Sum all file sizes --- cfquery name=directoryInfo dbtype=query SELECT

Connecting to .obj file

2006-03-31 Thread Mehdi, Agha
Hi guys, I need to execute a .obj file from ColdFusion when users submit a form. .obj file does accept POST and GET operations. Has anyone ever run into this sort of situation before? Thanks Agha Mehdi IDT - eBusiness Program Manager Work: 408.284.8239 Cell : 209.275.0482 Fax : 408.284.2766

RE: Eolas CFForm Fix: Beta

2006-03-31 Thread S . Isaac Dealey
I finished up the initial version and need a few people who have the IE7 Beta installed to test it out on their Flash forms. Why IE7? Isn't the problem patch for IE6? Or did I miss something? Yes, but it will also be included in IE7 and other changes in IE7 may cause the method being

ResourceBundles

2006-03-31 Thread Matthew Blatchley
I'm trying to create a student enrollment form in French, Spanish, and English. I've been reading Paul Hastings articles and chapters in the CFMX adv manual on I18N and G11N but things are still not sinking in... The example I played with was the simple login using the english and Thi

RE: Eolas CFForm Fix: Beta

2006-03-31 Thread Munson, Jacob
Yes, but it will also be included in IE7 and other changes in IE7 may cause the method being used by the tag to not work properly for any random and probably obscure reason. True. But, aren't they only going to release it with Windows Vista? If so, IE7 won't be available until next year, and

RE: Eolas CFForm Fix: Beta

2006-03-31 Thread Eric J. Hoffman
It is in my copy of IE 7 Beta 2 Preview. Eric J. Hoffman Managing Partner 2081 Industrial Blvd StillwaterMN55082 mail: [EMAIL PROTECTED] www: http://www.ejhassociates.com tel: 651.717.4105 fax: 651.717.4115 mob: 651.245.2717

RE: Eolas CFForm Fix: Beta

2006-03-31 Thread DURETTE, STEVEN J \(ASI-AIT\)
Just tried it. Working the same as if I didn't use the tag around the flash form. Steve -Original Message- From: Kevin Aebig [mailto:[EMAIL PROTECTED] Sent: Friday, March 31, 2006 10:48 AM To: CF-Talk Subject: Eolas CFForm Fix: Beta Hey guys, I finished up the initial version

Anything inherently wrong with this query?

2006-03-31 Thread Rick Faircloth
Hi, all... I've been wrestling with what should be a simple problem for too many hours...I've got to break things down and re-evaluate. Thought some more eyes might help. Anything inherently wrong with this? Rick CFQUERY Name=Get_Client Datasource=#DSN#

Re: Anything inherently wrong with this query?

2006-03-31 Thread Bryan Stevenson
Yeah...use better aliases than ABCDEF ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web: www.electricedgesystems.com

Retaining form data in flash forms

2006-03-31 Thread Smith, Daron [PA]
Is there a setting for flash forms that will allow them to retain form data on a refresh the way HTML forms do? Thanks, Daron Smith PSEA E-mail Firewall made the following annotations on Fri Mar 31 2006 13:16:11- NOTICE: Only

RE: Eolas CFForm Fix: Beta

2006-03-31 Thread Kevin Aebig
Really? Could you send me the html source output from the page? Thanks, !k -Original Message- From: DURETTE, STEVEN J (ASI-AIT) [mailto:[EMAIL PROTECTED] Sent: March 31, 2006 11:59 AM To: CF-Talk Subject: RE: Eolas CFForm Fix: Beta Just tried it. Working the same as if I didn't use

Re: Anything inherently wrong with this query?

2006-03-31 Thread Matt Williams
What error are you getting? Or is it just bad data? If your Client_ID fields are numeric, then you shouldn't have quote marks around them. I usually do inner joins as follows... Select C.*, FG.*, E.* from clients C inner join family_groups FG on C.Family_ID = FG.Family_ID inner join

Re: Anything inherently wrong with this query?

2006-03-31 Thread Greg Morphis
An error that you're getting would also help.. On 3/31/06, Bryan Stevenson [EMAIL PROTECTED] wrote: Yeah...use better aliases than ABCDEF ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell:

RE: Anything inherently wrong with this query?

2006-03-31 Thread Rick Faircloth
Ok, any *other* really helpful input? ;o) Rick -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Friday, March 31, 2006 1:13 PM To: CF-Talk Subject: Re: Anything inherently wrong with this query? Yeah...use better aliases than ABCDEF ;-) Bryan Stevenson B.Comm.

Re: Anything inherently wrong with this query?

2006-03-31 Thread Ken Ferguson
What's wrong with family_group being aliased as FG, or clients being aliased as C, or employee being aliased as E? Seems to make perfect sense to me. --Ferg Bryan Stevenson wrote: Yeah...use better aliases than ABCDEF ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development

RE: Anything inherently wrong with this query?

2006-03-31 Thread Dave Watts
Anything inherently wrong with this? CFQUERY Name=Get_Client Datasource=#DSN# Select C.*, FG.*, E.* from clients C inner join family_groups FG, employers E on C.Family_ID = FG.Family_ID

RE: Anything inherently wrong with this query?

2006-03-31 Thread Rick Faircloth
Thanks for the reply, Matt... Nope, removing the single quotes didn't help... Haven't tried rewording the query...I'll save that for later... I was trying to avoid getting deeply into the problem because all the queries, etc., involved would take too long to show and work through. The basic

Re: Anything inherently wrong with this query?

2006-03-31 Thread Greg Morphis
Make sure you use distinct or in() for those subqueries. If you're returning more than 1 employer_id or family_id then that'll cause an error too. On 3/31/06, Matt Williams [EMAIL PROTECTED] wrote: What error are you getting? Or is it just bad data? If your Client_ID fields are numeric, then

RE: Anything inherently wrong with this query?

2006-03-31 Thread Rick Faircloth
No errors, just information on a page that seems disconnected from the URL variables being fed back to the page... On a page...click a link with URL.Client_ID that refreshes the same page, but which should show different data besed on the URL.Client_ID variable. The queries seem to ignore the

RE: Eolas CFForm Fix: Beta

2006-03-31 Thread S . Isaac Dealey
Yes, but it will also be included in IE7 and other changes in IE7 may cause the method being used by the tag to not work properly for any random and probably obscure reason. True. But, aren't they only going to release it with Windows Vista? If so, IE7 won't be available until next

Re: Anything inherently wrong with this query?

2006-03-31 Thread Bryan Stevenson
What's wrong with family_group being aliased as FG, or clients being aliased as C, or employee being aliased as E? Seems to make perfect sense to me. --Ferg Readability famGrp is obvious FG is not clnt is obvious C is not emp is obvious E is not OK...I'm done There is nothing technically

RE: Anything inherently wrong with this query?

2006-03-31 Thread Rick Faircloth
Ok...exactly what Matt said...two votes for bad query syntax. I'll change that and see what happens... Rick -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Friday, March 31, 2006 1:31 PM To: CF-Talk Subject: RE: Anything inherently wrong with this query? Anything

Query of Queries

2006-03-31 Thread Paul Giesenhagen
I don't use QofQ much and am having some troubles that maybe someone can help with. I am building a query called getShipping that populates code, description, rate. I am then running a query of queries checking on the selected rate. cfquery name=shipping dbtype=query SELECT

RE: Anything inherently wrong with this query?

2006-03-31 Thread Rick Faircloth
Nope...no errors, but data doesn't change...it's like it's stuck on the first record in the database... -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Friday, March 31, 2006 1:31 PM To: CF-Talk Subject: RE: Anything inherently wrong with this query? Anything

Re: ResourceBundles

2006-03-31 Thread S . Isaac Dealey
The example I played with was the simple login using the english and Thi language, but when I try to create the same resource bundle files for en_MX or fr_FR nothing happens because I'm not understanding how the Thi language ANSI chars were generated. It's hard to understand what you mean by

RE: Anything inherently wrong with this query?

2006-03-31 Thread Rick Faircloth
Tried this: CFQUERY Name=Get_Client Datasource=#DSN# Select C.*, FG.*, E.* from clients C inner join family_groups FG on C.Family_ID = FG.Family_ID inner join employers E on C.Employer_ID =

RE: Anything inherently wrong with this query?

2006-03-31 Thread Rick Faircloth
I understand what you're saying, Bryan, but I'm the only one reading the code and the FG, C, and E are perfectly clear to me, so that won't matter...however, yours would be a better practice in a group setting...better yet, if you're going to use 6 characters as an alias, is to go ahead and use

CFEclipse and code colour

2006-03-31 Thread Bryan Stevenson
Hey All, Is it possible to bold/italicize as well as colour code your code like you can in HomeSite+? TIA Cheers Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED]

Re: Anything inherently wrong with this query?

2006-03-31 Thread S . Isaac Dealey
What's wrong with family_group being aliased as FG, or clients being aliased as C, or employee being aliased as E? Seems to make perfect sense to me. --Ferg Readability famGrp is obvious FG is not clnt is obvious C is not emp is obvious E is not OK...I'm done There is nothing

Re: Anything inherently wrong with this query?

2006-03-31 Thread Bryan Stevenson
I understand what you're saying, Bryan, but I'm the only one reading the code and the FG, C, and E are perfectly clear to me, so that won't matter...however, yours would be a better practice in a group setting...better yet, if you're going to use 6 characters as an alias, is to go ahead and

RE: Query of Queries

2006-03-31 Thread Mike Klostermeyer
By chance is one or more of the possible values of code a number? Mike -Original Message- From: Paul Giesenhagen [mailto:[EMAIL PROTECTED] Sent: Friday, March 31, 2006 12:44 PM To: CF-Talk Subject: Query of Queries I don't use QofQ much and am having some troubles that maybe someone

Re: CFEclipse and code colour

2006-03-31 Thread Robert Everland III
You can't change the color to the degree you can in Homesite and you can't bold the code that I know of. Bob ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:236725 Archives:

Re: Anything inherently wrong with this query?

2006-03-31 Thread Bryan Stevenson
I hear ya Isaac, but I just wrote a very complex 110 line Oracle queryI sure didn't want to have to scroll back to the FROM clause everytime I needed to know what the heck A refered to ;-) I look at it like variable naming...you don't name a variable A you name it something meaningful

Re: ResourceBundles

2006-03-31 Thread Matthew Blatchley
I figured the file was used as storage and then the two were merging, but how does the resource file data get from ok=ok cancel=cancel to Go=\u0E44\u0E1B Cancel=\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01 Where is \u0E44\u0E1B coming from? I guess this is where I get screwed up. The examples work

Re: CFEclipse and code colour

2006-03-31 Thread Bryan Stevenson
Thanks Bobbummer :-( Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web: www.electricedgesystems.com

RE: Eolas CFForm Fix: Beta

2006-03-31 Thread Sandra Clark
Its due to be released in a patch through the Windows Update on April 11th for IE6 Sandra Clark == http://www.shayna.com Training in Cascading Style Sheets and Accessibility -Original Message- From: Munson, Jacob [mailto:[EMAIL PROTECTED] Sent: Friday,

RE: ResourceBundles

2006-03-31 Thread Dave Watts
I figured the file was used as storage and then the two were merging, but how does the resource file data get from ok=ok cancel=cancel to Go=\u0E44\u0E1B Cancel=\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01 Where is \u0E44\u0E1B coming from? Those are Unicode character escape sequences.

Re: ResourceBundles

2006-03-31 Thread Matthew Blatchley
Thanks, the light bulb just blinked on... http://www.unicode.org/ - Original Message - From: Dave Watts [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Friday, March 31, 2006 1:43 PM Subject: RE: ResourceBundles I figured the file was used as storage and then the two

Clustering SQL Server

2006-03-31 Thread Barthle, Robert \(Contractor\)
Need some pointers on something. I have just been tasked to lead a project that will involve moving our single SQL Server 2000 database into a cluster. I'll state up front I have no experience in a clustered environment, so a lot of these questions are definitely newbie. My understanding is

Re: ResourceBundles

2006-03-31 Thread S . Isaac Dealey
I figured the file was used as storage and then the two were merging, but how does the resource file data get from ok=ok cancel=cancel to Go=\u0E44\u0E1B Cancel=\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01 Where is \u0E44\u0E1B coming from? On ColdFusion, never... :) it should never have

RE: Eolas CFForm Fix: Beta

2006-03-31 Thread S . Isaac Dealey
He was asking why they wanted to test the solution on IE7, not why they needed the solution right away. Its due to be released in a patch through the Windows Update on April 11th for IE6 Sandra Clark == http://www.shayna.com Training in Cascading Style Sheets

Re: CFEclipse and code colour

2006-03-31 Thread Matt Williams
You can change the font that is used for all code to whatever you like, including bold, etc. (if that font has that style). -Window -Preferences -General -Appearance -Colors and Fonts Expand the Basic Folder, select the Text Font option. Then click Change.. and have at it. Personally, I like

Re: CFEclipse and code colour

2006-03-31 Thread Bryan Stevenson
Thanks Matt, but I ONLY want to change CF comments to bold/italics. I am well aware I can change ALL code to whatever font I want ;-) Cheers Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830

Coldfusion and Modems

2006-03-31 Thread Brian Polackoff
Has anyone successfully used Coldfusion to connect to a modem and retrieve a data stream that the remote modem sends? I have been assigned a new project of creating a scheduling application and my company uses ADP time clocks. (Currently being read by a program called E-TIME) The ideal

RE: Eolas CFForm Fix: Beta

2006-03-31 Thread Sandra Clark
Thats not how I read it Isaac. cfquote True. But, aren't they only going to release it with Windows Vista? If so, IE7 won't be available until next year, and may not be in widespread use until 2008 or 9. /cfquote The only release it with Windows Vista is not true, the fix will be included in

RE: Eolas CFForm Fix: Beta

2006-03-31 Thread Munson, Jacob
The reason I said that was because he wanted people with IE7 beta to test his fix. I was asking why IE7, because the patch is for IE6 as well. And IE7 won't be out for a while. -Original Message- From: Sandra Clark [mailto:[EMAIL PROTECTED] Sent: Friday, March 31, 2006 2:48 PM To:

Change dynamic dropdown into radio buttons

2006-03-31 Thread John Oast
I want to change a dynamically driven dropdown, with a pre-selected choice, to a dynamically driven radio button group, also with a pre-selected choice. Dropdown: select name=status_id cfloop query=qStatus option value=#qStatus.status_id# #inputSelected(qStatus.status_id,

RE: Eolas CFForm Fix: Beta

2006-03-31 Thread Munson, Jacob
When I said only release it with Windows Vista, I meant IE7, not the patch. -Original Message- From: Munson, Jacob [mailto:[EMAIL PROTECTED] Sent: Friday, March 31, 2006 2:55 PM The reason I said that was because he wanted people with IE7 beta to test his fix. I was asking why

Re: Change dynamic dropdown into radio buttons

2006-03-31 Thread Rob Wilkerson
Two questions: 1. How is it not working? Error, unexpected results, etc.? 2. What value is returned by inputChecked()? On 3/31/06, John Oast [EMAIL PROTECTED] wrote: I want to change a dynamically driven dropdown, with a pre-selected choice, to a dynamically driven radio button group, also

Re: Change dynamic dropdown into radio buttons

2006-03-31 Thread Charlie Griefer
what does #inputChecked(status_id, qStatus.status_id)# return? for a select element it would be 'selected=selected' (or just 'selected' if you're not a standards kinda guy). for a radio it would be 'checked=checked' (or just 'checked' if...well, you know) :) On 3/31/06, John Oast [EMAIL

RE: Coldfusion and Modems

2006-03-31 Thread Ian Skinner
Any help would be greatly appreciated (even hypothetical's are welcome at this point) and if this cannot be done with native CF is there any other options such as Custom Tags, etc? I'm pretty sure this is not going to be done in native CF, it is a web application server. But it is quite

CF_FORWARD problem

2006-03-31 Thread Richard Colman
This is a really wonderful tag, and I use it all the time within a site. HOWEVER, attempting to use it for the first time with a fully-qualified URL, I get an error. For example, Here is what I am sending in the tag: CF_FORWARD

RE: CF_FORWARD problem

2006-03-31 Thread Snake
Well your original URL would be failing because of the # in it, but I can't see any reason why the others would fail. Russ -Original Message- From: Richard Colman [mailto:[EMAIL PROTECTED] Sent: 31 March 2006 23:37 To: CF-Talk Subject: CF_FORWARD problem This is a really wonderful

RE: CF_FORWARD problem

2006-03-31 Thread Richard Colman
Typo in the #. Cf_forward doc SEEMS to imply that it only works with relative URLs?? -Original Message- From: Snake [mailto:[EMAIL PROTECTED] Sent: Friday, March 31, 2006 2:49 PM To: CF-Talk Subject: RE: CF_FORWARD problem Well your original URL would be failing because of the # in

CF Code Crashing

2006-03-31 Thread Ali Awan
I am trying to fix a problem I am having with my code which runs a large report. By the way, I am running CF 5.0, on a Windows 2k Server, and SQL Server 2000. So, no CFC's or anything else MX specific The code works fine on my dev box. I don't think it's a problem with my queries,

RE: CF_FORWARD problem

2006-03-31 Thread Andy Tyrone
-Original Message- From: Richard Colman [mailto:[EMAIL PROTECTED] Sent: Friday, March 31, 2006 5:37 PM To: CF-Talk Subject: CF_FORWARD problem This is a really wonderful tag, and I use it all the time within a site. HOWEVER, attempting to use it for the first time with a

RE: Query of Queries

2006-03-31 Thread Ben Nadel
This usually happens when you don't use CFQUERYPARAM in a QofQ. I don't know why exactly, but if you put that in, the type comparison is generally fixed (in my experience). -ben ... Ben Nadel Web Developer Nylon Technology 350 7th Ave. Suite 1005 New York, NY 10001

Re: Change dynamic dropdown into radio buttons

2006-03-31 Thread Matt Williams
There is a leftover '/option' after your in the radio input version. May or may not cause issues, but messy nonetheless. On 3/31/06, Charlie Griefer [EMAIL PROTECTED] wrote: what does #inputChecked(status_id, qStatus.status_id)# return? for a select element it would be 'selected=selected'

Re: Change dynamic dropdown into radio buttons

2006-03-31 Thread Peter SF
Thank you for all your replies. Much appreciated. They made me look harder at what I'd written and figure out where I'd gone wrong. So I came up with the following, which works. And I hard-coded the pre-selection choice of 4. cfloop query=qStatus input type=radio name=status_id

RE: Anything inherently wrong with this query?

2006-03-31 Thread Dave Watts
Readability famGrp is obvious FG is not clnt is obvious C is not emp is obvious E is not OK...I'm done There is nothing technically wrong with using meaningless (or so short they are meaningless) aliases, but it sure makes life simpler ;-) The big difference here is that there's a

RE: Anything inherently wrong with this query?

2006-03-31 Thread Coldfusion
I totally agree. I use Aliases all the time. Faster, simpler, and just as easy. I have no problems in deciphering the query. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Friday, March 31, 2006 8:02 PM To: CF-Talk Subject: RE: Anything inherently wrong with this

Re: When does onSessionEnd get called?

2006-03-31 Thread Mike Kear
Thanks for your kind offer Isaac, I can't post the whole thing here - there is just too much 'not for publication' in there, but if you would look over it, I'd be most grateful. I'm always eager to hear informed opinions about my code. One of the difficult things about being a one-man-shop is

Re: ResourceBundles

2006-03-31 Thread Paul Hastings
S. Isaac Dealey wrote: It's hard to understand what you mean by nothing happens without more information... My understanding is that the unicode characters used by the resource bundles Paul recommends (for performance reasons, because it's silly to convert everything from ASCII when ColdFusion

Re: ResourceBundles

2006-03-31 Thread Paul Hastings
Matthew Blatchley wrote: I figured the file was used as storage and then the two were merging, but how does the resource file data get from ok=ok cancel=cancel that english. anything that uses latin-1 charset can simply be typed in. Go=\u0E44\u0E1B

Re: ResourceBundles

2006-03-31 Thread Paul Hastings
Matthew Blatchley wrote: Thanks, the light bulb just blinked on... http://www.unicode.org/ if you start w/utf-8 or whatever encoded rb files, you can use the core java tool native2ansi (command line) to run through your rb files convert them to the escaped unicode. should be in your JDKs bin

Re: ResourceBundles

2006-03-31 Thread Paul Hastings
S. Isaac Dealey wrote: On ColdFusion, never... :) it should never have \u in it if you're using ColdFusion. Java ResourceBundles work that way because the spec for Java says that the file has to be ASCII text, so the \u actually my rb CFCs do require that type of encoding. these thing

Re: When does onSessionEnd get called?

2006-03-31 Thread S . Isaac Dealey
One of the difficult things about being a one-man-shop is there's no one to look over your work and make suggestions. Unless you publish your work as open source, in which case you can get a wide range of responses from, for instance, everyone who wants to blog using BlogCFC and nearly nobody

Re: ResourceBundles

2006-03-31 Thread Paul Hastings
Matthew Blatchley wrote: ANSI chars were generated. Do you have to translate everything in the resource bundles prior to displaying them? Doesn't this mean you could yes. that's the whole point of rb. ~| Message:

Re: ResourceBundles

2006-03-31 Thread S . Isaac Dealey
S. Isaac Dealey wrote: It's hard to understand what you mean by nothing happens without more information... My understanding is that the unicode characters used by the resource bundles Paul recommends (for performance reasons, because it's silly to convert everything from ASCII when

Re: ResourceBundles

2006-03-31 Thread S . Isaac Dealey
S. Isaac Dealey wrote: On ColdFusion, never... :) it should never have \u in it if you're using ColdFusion. Java ResourceBundles work that way because the spec for Java says that the file has to be ASCII text, so the \u actually my rb CFCs do require that type of encoding. these

Re: ResourceBundles

2006-03-31 Thread Paul Hastings
S. Isaac Dealey wrote: I remembered reading an article you wrote Paul, which said rather specifically to use UTF-8 instead of ASCII files with ColdFusion, if you did, it was old (like cf4.5/5 old) i hadn't solved the issue of not having access to the classpath (or easily using java classes

Re: ResourceBundles

2006-03-31 Thread S . Isaac Dealey
Sorry Paul, I shouldn't be so abrasive... I guess my alergy problems are getting to me and I'm more frustrated this evening than I thought, although I really shouldn't be since it looks like things in my life are turning around for the better (finally!) after 5 years of living hell since my wife

RE: Coldfusion and Modems

2006-03-31 Thread Eric Roberts
Not sure if CF can do it, but I am sure Java can...and java classes are accessible via cf... Eric -Original Message- From: Brian Polackoff [mailto:[EMAIL PROTECTED] Sent: Friday, 31 March 2006 15:49 To: CF-Talk Subject: Coldfusion and Modems Has anyone successfully used Coldfusion to

Re: Coldfusion and Modems

2006-03-31 Thread Paul Hastings
Ian Skinner wrote: I'm pretty sure this is not going to be done in native CF, it is a web application server. But it is quite possible to use some kind of java and have that java talk to the CF, depending on why you want CF involve. If you just want if for its scheduled task feature. There

Re: recruiters with english as a second language

2006-03-31 Thread Aaron Rouse
Same here, was amazed the first few times it happened that recruiting had been outsourced like that. I tried to nicely tell the first couple I was not interested but after rewording that statement a few times without them understanding what I was saying I finally just gave up. Probably does not

  1   2   >