Any changes in neo-cron.xml from ColdFusion MX 6.1 to ColdFusion 8?

2008-10-29 Thread Markus Wollny
Hi! We're currently upgrading our CFMX 6.1 servers to ColdFusion 8; one of those servers is more or less exclusively running scheduled tasks - quite a lot of these in fact. As I wish to keep the downtime as short as possible, I wondered if the format of the neo-cron.xml has changed in any signi

link on a cfchart

2008-10-29 Thread Julien fan
Hi, I have several cfchart in my page and i would like, when a user clicks on a graph, another page open with the graph and the first page with all graph always always display. This is my code: The graph on the new page is correct but the main page lose data and an error message appear : #objec

Re: link on a cfchart

2008-10-29 Thread Raymond Camden
Your JS for the link is very odd. Setting location to chr(35)? Is that a trick of some kind? If your intent is to simply open a new window with the same chart + extra stuff on the page, then your link should include the chart name, or some other identifier. So if I had two charts on the page, one f

RE: RSS Issue

2008-10-29 Thread Steve LaBadie
Dominic, If I remove the cfhttp the page errors out saying "An error occured while reading an XML document" Steve LaBadie, Web Manager East Stroudsburg University 200 Prospect St. East Stroudsburg, Pa 18301 570-422-3999 http://www.esu.edu [EMAIL PROTECTED] -Original Message- From: Domini

RE: RSS Issue

2008-10-29 Thread Adrian Lynch
Your original code works for me. Is there anything else going on in the page that might be causing the problem? Adrian Building a database of ColdFusion errors at http://cferror.org/ -Original Message- From: Steve LaBadie Sent: 29 October 2008 12:25 To: cf-talk Subject: RE: RSS Issue Do

RE: RSS Issue

2008-10-29 Thread Steve LaBadie
Adrian, Honestly I don't know. I have cfincludes on the page for the header, footer and left navigation. The RSS is being generated from the CMS. The code as written does work but it takes entirely too long to load the page with just text on it. Steve LaBadie, Web Manager East Stroudsburg Univers

RE: RSS Issue

2008-10-29 Thread Adrian Lynch
Comment out everything but the RSS code. Does it still run slowly? Adrian -Original Message- From: Steve LaBadie Sent: 29 October 2008 12:41 To: cf-talk Subject: RE: RSS Issue Adrian, Honestly I don't know. I have cfincludes on the page for the header, footer and left navigation. The RS

RE: RSS Issue

2008-10-29 Thread Steve LaBadie
Yes, still very slow Steve LaBadie, Web Manager East Stroudsburg University 200 Prospect St. East Stroudsburg, Pa 18301 570-422-3999 http://www.esu.edu [EMAIL PROTECTED] -Original Message- From: Adrian Lynch [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 29, 2008 8:54 AM To: cf-talk

RE: RSS Issue

2008-10-29 Thread Adrian Lynch
Does it eventually return something? Network issues maybe? Remember the cfhttp call is coming from the CF server, not your machine. It returns straight away for me. Adrian Building a database of ColdFusion errors at http://cferror.org/ -Original Message- From: Steve LaBadie Sent: 29 Oc

RE: RSS Issue

2008-10-29 Thread Steve LaBadie
The RSS feeds do appear on the page with no error messages, just slow in loading. Steve LaBadie, Web Manager East Stroudsburg University 200 Prospect St. East Stroudsburg, Pa 18301 570-422-3999 http://www.esu.edu [EMAIL PROTECTED] -Original Message- From: Adrian Lynch [mailto:[EMAIL PROTE

Looping over form structs into an array or query

2008-10-29 Thread Tom King
Hi All, I've got a form where I've got a potentially unknown number of form fields as they're being added by Javascript; i.e form.linkText_1 form.linkUrl_1 form.linkText_2 form.linkUrl_2 form.linkText_3 form.linkUrl_3 form.linkText_4 form.linkUrl_4 How can I deal with this at the other end? I c

Re: Looping over form structs into an array or query

2008-10-29 Thread Scott Stroz
Tom, When I have situations like that, where form fields can be added to the form via JS, I will have a form field that tells me how many form fields ther are. Then each time I add a form field, I increment that by 1. In my 'action page' I will use that fomr field as the basis for my loop Text

Re: Looping over form structs into an array or query

2008-10-29 Thread Tom Chiverton
On Wednesday 29 Oct 2008, Tom King wrote: > > > > Key: #key#, Value: #form[key]# pos=listLast(key,'_') array[pos]=form[key] -- Tom Chiverton Helping to assertively restore revolutionary global paradigms This email is sent for an

RE: Looping over form structs into an array or query

2008-10-29 Thread Adrian Lynch
If they're sequential then this'll help: #FORM["linkText_" & i]# #FORM["linkURL_" & i]# Adrian Building a database of ColdFusion errors at http://cferror.org/ -Original Message- From: Tom King Sent: 29 October 2008 13:37 To: cf-talk Subject: Loopi

Re: Looping over form structs into an array or query

2008-10-29 Thread Jake Churchill
You are close. Try this: -Jake Churchill Tom King wrote: > Hi All, > > I've got a form where I've got a potentially unknown number of form fields > as they're being added by Javascript; > > i.e > form.linkText_1 > form.linkUrl_1 > form.linkText_2 > form.linkUrl_2

Re: Looping over form structs into an array or query

2008-10-29 Thread Tom King
I get this cryptic error when running that: Element 1 is undefined in a CFML structure referenced as part of an expression. even though my stuff is getting passed: Link Name 1 URL 1 200

Re: Apache/CF8 problems

2008-10-29 Thread Will Tomlinson
Thanks guys! We'll see if we can get it straightened out. Will ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172674;29440083;f Archiv

Re: Looping over form structs into an array or query

2008-10-29 Thread Tom Chiverton
On Wednesday 29 Oct 2008, Jake Churchill wrote: > This will loop over each Url and Text, where as you really want one to be both url and text. Use one of the condition based loops instead. -- Tom Chiverton Helping to quickly repurpose user-centric synergies *

Re: RSS Issue

2008-10-29 Thread Dominic Watson
I just ran the following code without any problems (got a dump of your newsfeed): http://www4.esu.edu/news.xml";) /> As I said though, you need to be using CF7 or above for this to work. Dominic 2008/10/29 Steve LaBadie <[EMAIL PROTECTED]>: > Dominic, > > If I remove the cfhttp the page errors

Best Open Source Message Board?

2008-10-29 Thread Mallory Woods
Hello All, I have a quick project to do and there is no time for re-inventing the wheel. What is the best open source message board? It will be installed on a system that is using CF7. Thanks in Advance! ~| Adobe® ColdFusion® 8

RE: RSS Issue

2008-10-29 Thread Steve LaBadie
I am using version 7,0,2,142559 Steve LaBadie, Web Manager East Stroudsburg University 200 Prospect St. East Stroudsburg, Pa 18301 570-422-3999 http://www.esu.edu [EMAIL PROTECTED] -Original Message- From: Dominic Watson [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 29, 2008 10:12 A

Re: Best Open Source Message Board?

2008-10-29 Thread Tom King
Have a look at Ray Camden's Galleon http://galleon.riaforge.org/ T 2008/10/29 Mallory Woods <[EMAIL PROTECTED]> > Hello All, > > I have a quick project to do and there is no time for re-inventing the > wheel. What is the best open source message board? It will be installed on > a > system that

RE: Best Open Source Message Board?

2008-10-29 Thread Steve LaBadie
We use phpbb Steve LaBadie, Web Manager East Stroudsburg University 200 Prospect St. East Stroudsburg, Pa 18301 570-422-3999 http://www.esu.edu [EMAIL PROTECTED] -Original Message- From: Mallory Woods [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 29, 2008 10:19 AM To: cf-talk Subjec

Re: Best Open Source Message Board?

2008-10-29 Thread Rob Parkhill
or on riaforge http://cf4em.riaforge.org/ Rob On Wed, Oct 29, 2008 at 10:17 AM, Steve LaBadie <[EMAIL PROTECTED]>wrote: > We use phpbb > > Steve LaBadie, Web Manager > East Stroudsburg University > 200 Prospect St. > East Stroudsburg, Pa 18301 > 570-422-3999 > http://www.esu.edu > [EMAIL PROTEC

Re: Best Open Source Message Board?

2008-10-29 Thread Phillip M. Vector
PHPBB has several security flaws that can be exploited. I would steer clear of it personally. Steve LaBadie wrote: > We use phpbb > > Steve LaBadie, Web Manager > East Stroudsburg University > 200 Prospect St. > East Stroudsburg, Pa 18301 > 570-422-3999 > http://www.esu.edu > [EMAIL PROTECTED] >

SQL help..

2008-10-29 Thread cf coder
Hello there, I do appreciate this isn't the right forum for posting this question but I have posted my question in the SQL forum but I haven't heard anything back. It's a very straightforward query... at least I hope it is for someone with good sql skills. I was hoping someone could help here.

Re: SQL help..

2008-10-29 Thread Peter Boughton
Just answered this on the SQL list: http://www.houseoffusion.com/groups/sql/thread.cfm/threadid:855 ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick

Re: Looping over form structs into an array or query

2008-10-29 Thread Ian Skinner
Well, a structure is probably easiest. Key: #key#, Value: #form[key]# ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172674;29440083;f

Re: Best Open Source Message Board?

2008-10-29 Thread Tom Chiverton
On Wednesday 29 Oct 2008, Mallory Woods wrote: > wheel. What is the best open source message board? It will be installed on > a system that is using CF7. Best is very subjective. What features are important to you ? -- Tom Chiverton Helping to professionally benchmark internet IPOs **

Re: Best Open Source Message Board?

2008-10-29 Thread Peter Boughton
> What is the best open source message board? Beehive Forum is best, but that's in PHP rather than CFML. > It will be installed on a system that is using CF7. Go here: http://www.riaforge.org/index.cfm?event=page.search Type "forum" and you will get several options... ~~~

Re: SQL help..

2008-10-29 Thread cf coder
I'm really greatful to you for the post. >Just answered this on the SQL list: >http://www.houseoffusion.com/groups/sql/thread.cfm/threadid:855 ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date

Re: Best Open Source Message Board?

2008-10-29 Thread Mallory Woods
Thanks for the replys First it has to be a CF based board. Open source is good just in case we need to tweak it. Features: Image uploading, link posting, a good simple admin, subscription to posts etc. I am working on getting cf4em setup but its throwing lots of errors for some reason. On Wed,

Re: Best Open Source Message Board? / re-inventing the wheel

2008-10-29 Thread Peter Boughton
Hmm, just saw this and wanted to highlight it... > there is no time for re-inventing the wheel. What do you mean there is no time? If you had more time you would deliberately duplicate work? :/ One of the points of Free Software (Open Source) is that even if something doesn't do what you want

Re: Best Open Source Message Board? / re-inventing the wheel

2008-10-29 Thread Tom Chiverton
On Wednesday 29 Oct 2008, Peter Boughton wrote: > learning how to make wheels - for everything else you should pick an > existing wheel and update as necessary, rather than rolling your own. There is another way: http://www.joelonsoftware.com/articles/fog07.html -- Tom Chiverton Helping

Re: CFCHART & Developer Edition Watermark

2008-10-29 Thread [EMAIL PROTECTED] [EMAIL PROTECTED]
Here's more info: On that PC that I did the fresh install of CF8, I was able to run my script with "standard" CFCHARTs in it just fine. As soon as I ran the FIRST script that did calls to the java objects to create undocumented Webcharts charts, the watermark began showing up not only on those

Re: Looping over form structs into an array or query

2008-10-29 Thread Tom King
Thanks for the help all; finally settled on: It's the "#testStruct["UrlText_" & counter]#" syntax which was the key for me! Ta T 2008/10/29 Tom Chiverton <[EMAIL PROTECTED]> > On Wednesday 29 Oct 2008, Jake Ch

Re: Best Open Source Message Board?

2008-10-29 Thread Raymond Camden
On Wed, Oct 29, 2008 at 9:39 AM, Mallory Woods <[EMAIL PROTECTED]> wrote: > I am working on getting cf4em setup but its throwing lots of errors for some > reason. > Then try Galleon. It never has errors. Seriously. (Ahem) -Raymond Camden

Re: Best Open Source Message Board?

2008-10-29 Thread Rob Parkhill
is that ahem ray, or Amen? Rob On Wed, Oct 29, 2008 at 11:12 AM, Raymond Camden <[EMAIL PROTECTED]> wrote: > On Wed, Oct 29, 2008 at 9:39 AM, Mallory Woods <[EMAIL PROTECTED]> > wrote: > > > I am working on getting cf4em setup but its throwing lots of errors for > some > > reason. > > > > Then tr

Re: Best Open Source Message Board?

2008-10-29 Thread Will Tomlinson
>I am working on getting cf4em setup but its throwing lots of errors for some >reason. What errors are you getting? Will ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: Best Open Source Message Board?

2008-10-29 Thread Mallory Woods
--- Error Text --- Error Executing Database Query. [Macromedia][SQLServer JDBC Driver][SQLServer]Invalid object name 'cf4em_bannedips'. The error occurred in C:\websites\cf4em\cfcs\cf4em.cfc: line 61 Called from C:\websites\cf4em\cf4em.cfm: line 21 Called from C:\websites\cf4em\cf4em.cfm: line 1

Re: Adding & Updating empty values

2008-10-29 Thread Claude Schneegans
>>I agree, but I still have to enter all the form field names in the anyways so I'm not really gaining anything. I have solved this problem once for all this way : 1. in your form page, add this JS function call onsubmit, ie: var defaultList = ""; function checkInput(formul) { if(!formul

Re: Adding & Updating empty values

2008-10-29 Thread Claude Schneegans
>>here is a good method Well, actually not so good: if a checkbox is not checked, its name will not appear in form.fieldnames, so the loop on fieldnames will work only on defined fileds and the http://ad.doubleclick.net/clk;207172674;29440083;f Archive: http://www.houseoffusion.com/groups/cf-

Re: Prototype problems with cfgrid

2008-10-29 Thread Charles Lewis
Solution! After tearing the Javascript apart for both libraries, I found the problem. Both libraries use a function called "defer", which basically just delays performing that action until the interpreter's callstack is empty. My solution then was to change the name of this function in Prototype an

odd sql question

2008-10-29 Thread Scott Stewart
i have a table with a field (study_category.category_date) that is a comma delimited list (2004,2005,2006,2007) stored as a NVARCHAR I need to see if a passed value is in the list: WHERE (#arguments.cat_date# in (study_category.category_date)) arguments.cat_date is a four digit number represen

Re: odd sql question

2008-10-29 Thread Jason Fisher
Pretty sure that's not going to work for you ... believe the argument on the left of the IN has to be a column, not a variable. In any case, your best bet is to have the category_date properly normalized out into a separate table: FROM study_category INNER JOIN study_category_date ON study_cate

Re: odd sql question

2008-10-29 Thread Ian Skinner
Scott Stewart wrote: > i have a table with a field (study_category.category_date) that is a > comma delimited list (2004,2005,2006,2007) stored as a NVARCHAR > > I need to see if a passed value is in the list: > > WHERE (#arguments.cat_date# in (study_category.category_date)) > > arguments.cat_da

RE: odd sql question

2008-10-29 Thread Adrian Lynch
Ideally you'd want those years in a different table so your SQL would be better but if you can't or don't want to change things: SELECT * FROM yourTable WHERE yourDateColumn LIKE '%#yourDate#%' Which isn't gonna be fast but it might be exceptable. Adrian Building a database of ColdFusion errors

RTF <=> HTML

2008-10-29 Thread Stephens, Larry V
When working on certain data locally I use a rich text control to format memo-type fields of data. On some of my CF websites I use a javascript-based control for rich text style editing. This control inserts proper HTML code. There are times when I need to change a given field from HTML coding

How to know the "real" SO language

2008-10-29 Thread Web Specialist
Hi all. Our server is a Windows 2003 with English installation. In CF Administrator(under Java & JVM) we set the parameters -Duser.language=pt -Duser.country=BR (Brazilian Portuguese). I'm using this code to know the language in that server(in future the server language could be changed):

How can you have a variable "topmargin" height on CF8 CFDOCUMENT so that you can have 2 differently sized headers?

2008-10-29 Thread Chris Johnson
Another CF8 CFDocument problem here... With CF7, you could specify a value that was shorter than the height of the value going in the . The cfdocitem header would just continue past and overlap the content below. This was fixed by adding a "padding-top:XXX" to the content so that on the firs

Re: How to know the "real" SO language

2008-10-29 Thread Paul Hastings
Web Specialist wrote: > Administrator(under Java & JVM) we set the parameters -Duser.language=pt > But, with that JVM parameters, always returns 'pt'. what else should it return? it's portuguese & you set the JVM. what does getLocale() return? > Do you know how to obtain the "real" language for

Re: How to know the "real" SO language

2008-10-29 Thread Web Specialist
Thanks Paul. "Real" language is the OS language. For me, "english", because our server runs in Windows 2003 English language. I need to know the "real" language because our application runs language-specific command in DOS mode. I found a "trick" to resolve this: Cheers Marco Antonio On We

passing from form to form

2008-10-29 Thread Scott Spurlock
I have a cfdiv with a cfform inside of it. I can submit from the first cfform to a second cfform no problem. But when I submit from the second cfform to a third cfform, I break out of the cfdiv. Why? ~| Adobe® ColdFu

Re: passing from form to form

2008-10-29 Thread Azadi Saryev
hmm... is your second form a CFFORM as well or a regular FORM tag? Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ Scott Spurlock wrote: > I have a cfdiv with a cfform inside of it. I can submit from the first > cfform to a second cfform no problem. But when I submit from the second >

Re: passing from form to form

2008-10-29 Thread Scott Spurlock
Second form is a cfform as well. With all cfforms, I have the form submit back to itself, do some processing, and then cflocation to the next cfform. The first cfform submits just fine to the second cfform. The second cfform processes just fine and submits to the third cfform, but it breaks i

Looking for Adam Lehman's CF8 Demos

2008-10-29 Thread Steve Moore
Prior to his accident, Adam Lehman from Adobe had posted version 2 of his CF 8 demos to his website at adrocknaphobia.com. This site is now unavailable and I was wondering if anybody had his zip file? I'm specifically looking for his samples for the CF/Blaze DS chat application. Steve Moore [EM

RE: Looking for Adam Lehman's CF8 Demos

2008-10-29 Thread Loathe
What accident? Tim Heald > -Original Message- > From: Steve Moore [mailto:[EMAIL PROTECTED] > Sent: Wednesday, October 29, 2008 4:02 PM > To: cf-talk > Subject: Looking for Adam Lehman's CF8 Demos > > Prior to his accident, Adam Lehman from Adobe had posted > version 2 of his CF 8 dem

Re: passing from form to form

2008-10-29 Thread Azadi Saryev
use ColdFusion.navigate() instead of cflocation? Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ Scott Spurlock wrote: > Second form is a cfform as well. With all cfforms, I have the form submit > back to itself, do some processing, and then cflocation to the next cfform. > The first c

Re: Looking for Adam Lehman's CF8 Demos

2008-10-29 Thread Jason Fisher
http://carehart.org/blog/client/index.cfm/2008/9/29/adam_lehman_accident :-( ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172674;29440

Re: Looking for Adam Lehman's CF8 Demos

2008-10-29 Thread Wil Genovese
Some wild car in London tried to kill him. Banged him up pretty good here's some posts on what happened and how he's doing. http://carehart.org/blog/client/index.cfm/2008/9/29/adam_lehman_accident http://kay.smoljak.com/index.php/wishing-adam-lehman-a-speedy-recovery/ http://www.pbell.com/inde

Re: Looking for Adam Lehman's CF8 Demos

2008-10-29 Thread Rick Mason
Adam Lehman was hit by a car in London: http://carehart.org/blog/client/index.cfm/2008/9/29/adam_lehman_accident Rick On Wed, Oct 29, 2008 at 4:22 PM, Loathe <[EMAIL PROTECTED]> wrote: > What accident? > > Tim Heald > > > -Original Message- > > From: Steve Moore [mailto:[EMAIL PROTECTE

RE: Looking for Adam Lehman's CF8 Demos

2008-10-29 Thread Loathe
Thanks. > -Original Message- > From: Jason Fisher [mailto:[EMAIL PROTECTED] > Sent: Wednesday, October 29, 2008 4:30 PM > To: cf-talk > Subject: Re: Looking for Adam Lehman's CF8 Demos > > http://carehart.org/blog/client/index.cfm/2008/9/29/adam_lehma > n_accident > > :-( > > ~

Re: Looking for Adam Lehman's CF8 Demos

2008-10-29 Thread Gerald Guido
I got em. http://www.myinternetisbroken.com/apps/cf8demos-v2.zip On Wed, Oct 29, 2008 at 4:01 PM, Steve Moore <[EMAIL PROTECTED]> wrote: > Prior to his accident, Adam Lehman from Adobe had posted version 2 of his > CF 8 demos to his website at adrocknaphobia.com. This site is now > unavailable

Re: Best Open Source Message Board? / re-inventing the wheel

2008-10-29 Thread s. isaac dealey
> On Wednesday 29 Oct 2008, Peter Boughton wrote: > > learning how to make wheels - for everything else you should pick an > > existing wheel and update as necessary, rather than rolling your own. > > There is another way: > http://www.joelonsoftware.com/articles/fog07.html Thanks for pos

Re: Best Open Source Message Board? / re-inventing the wheel

2008-10-29 Thread Phillip M. Vector
On a side note... Does anyone know of a fusebox based forum that doesn't use MVC layout? I.e. It's all in one circuit and it's basically plug and play? I'm looking to upgrade the forum I have, but honestly, MVC and OO programing confuse me to no end (Yes, I know I should learn it. I've tried a

Re: Best Open Source Message Board? / re-inventing the wheel

2008-10-29 Thread s. isaac dealey
> By comparison DataFaucet and the onTap framework encourages the reuse > of an entire controller layer and an entire database schema from one > application to the next. (And really you could easily swap out Steve > Bryant's DataMgr which is much more compact instead of DataFaucet and > get the sam

Re: Best Open Source Message Board? / re-inventing the wheel

2008-10-29 Thread s. isaac dealey
> On a side note... > > Does anyone know of a fusebox based forum that doesn't use MVC layout? > I.e. It's all in one circuit and it's basically plug and play? > Anyone out there have a forum that is self contained in one circuit? I > might as well also cross post this to the fusebox group ju

Re: Best Open Source Message Board? / re-inventing the wheel

2008-10-29 Thread Phillip M. Vector
Thanks.. :) I was actually looking at all 3 to see which I can edit best (I have some custom code I would need to put in), but if I had to choose 1, I would probably pick FuseForum to run as it seems the most fusebox accessible. :) Thank you again. :) s. isaac dealey wrote: >> On a side note..

CF and SharePoint

2008-10-29 Thread Victor Moore
Hi, I have a customer who wants to move to SharePoint from Verity. The question I have is this: Can I access the documents index by SharePoint from CF? Basically I'm looking for anything that will help me integrate the two. And yes their decision to go with SharePoint is final. Apparently one of

Re: Best Open Source Message Board? / re-inventing the wheel

2008-10-29 Thread s. isaac dealey
> Thanks.. :) I was actually looking at all 3 to see which I can edit best > (I have some custom code I would need to put in), but if I had to choose > 1, I would probably pick FuseForum to run as it seems the most fusebox > accessible. :) > > Thank you again. :) Welcome... :) You do know this

cfreturn "2" query values from CFC?

2008-10-29 Thread Rick Faircloth
Hi, all... If I'm running two queries inside a function, how do I return both query values? Query 1: get_properties Query 2: get_all_photos Can there be two cfreturn's? or, perhaps, ??? Rick ~| Adobe® ColdFusion® 8 s

Re: Best Open Source Message Board? / re-inventing the wheel

2008-10-29 Thread s. isaac dealey
> Thanks.. :) I was actually looking at all 3 to see which I can edit best > (I have some custom code I would need to put in), but if I had to choose > 1, I would probably pick FuseForum to run as it seems the most fusebox > accessible. :) > > Thank you again. :) Actually it says in the readme

Re: cfreturn "2" query values from CFC?

2008-10-29 Thread Charlie Griefer
put 'em in a struct and return the struct. On Wed, Oct 29, 2008 at 6:29 PM, Rick Faircloth <[EMAIL PROTECTED]>wrote: > Hi, all... > > If I'm running two queries inside a function, > how do I return both query values? > > Query 1: get_properties > Query 2: get_all_photos > > > >

Re: cfreturn "2" query values from CFC?

2008-10-29 Thread Rick Faircloth
Thanks, Charlie... makes sense. I guess I could also just run two functions within each cfcase, as well... Rick Charlie Griefer wrote: > put 'em in a struct and return the struct. > > > > > > > > > > > > > > > On Wed, Oct 29, 2008 at 6:29 PM, Rick Faircloth <[EMAIL PROTECTED]>wrote: >

Re: Best Open Source Message Board? / re-inventing the wheel

2008-10-29 Thread Gerald Guido
>>You do know this is a 0.002 release right? Ha! Kinda like life itself? On Wed, Oct 29, 2008 at 9:24 PM, s. isaac dealey <[EMAIL PROTECTED]> wrote: > > Thanks.. :) I was actually looking at all 3 to see which I can edit best > > (I have some custom code I would need to put in), but if I had to

conditional cfchartseries

2008-10-29 Thread Sebastian Powell
Hi, I am trying to conditionally color a single bar chart series in , depending on a value returned from a source query. As an example of logically what i am trying to achieve : seriesColor = "red" seriesColor="blue" Thanks Bas ~

Re: CF and SharePoint

2008-10-29 Thread Mike Chabot
Victor, By "Verity" do you mean the search engine technology that comes bundled with ColdFusion? If that is what you mean then I think your question is confusing because SharePoint has an entirely different purpose so it doesn't make sense to convert from one technology to the other. Are you lookin

Re: conditional cfchartseries

2008-10-29 Thread Azadi Saryev
look up iif() cf function. the syntax will be something like: seriesColor = "#iif(myquery.count gt 5, de('red'), de(blue'))#" hth Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ Sebastian Powell wrote: > Hi, > > I am trying to conditionally color a single bar chart series in , > dependi