Recursive function and Hierarchical navigation

2004-06-02 Thread Paul Wilson
I'm trying to build a dynamic hierarchical navigation system using thew following table structure ID NAME PARENT_ID 1 category1 0 2 category1_1 1 3 category1_2 1 4 category1_1_1 2 5 category1_1_2 2 6 category2 0 7 category3 0 I would like to be able to do some sort of recursive

RE: css idiot question

2004-06-02 Thread Hugo Ahlenius
I don't use the onmouseover clause very often, but why are you using td1 and not this. Also -- there should be semicolons after you set the bg color on the actions. -- Hugo Ahlenius - Hugo AhleniusE-Mail: [EMAIL PROTECTED] Project

RE: nevermind again...RE: css idiot question

2004-06-02 Thread Hugo Ahlenius
Tony, you should check out using css for the whole shebang, using the :hover pseudo class. You need a little fix for IE though: http://www.htmldog.com/articles/suckerfish/hover/ -- Hugo Ahlenius - Hugo AhleniusE-Mail: [EMAIL PROTECTED]

RE: css idiot question

2004-06-02 Thread Pascal Peters
div style=background-color:#53; width:100%; height:100%; > this.style.color='#00'; > this.style.color='#ff'; id=td1 New Applicant /div -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: woensdag 2 juni 2004 6:22 To: CF-Talk Subject: css idiot question

RE: Difficult SQL Question

2004-06-02 Thread Pascal Peters
If your db supports it, you can use INTERSECT SELECT TicketID FROM fields WHERE FieldID = 1 AND Value = '5' INTERSECT SELECT TicketID FROM fields WHERE FieldID = 2 AND Value = 'Hello' Alternatively you could use group by (supposing (TicketID, FieldID) is unique) SELECT TicketID FROM fields

RE: Recursive function and Hierarchical navigation

2004-06-02 Thread Pascal Peters
I don't do it recursively, but use the fact that structs are passed by reference. I query the table and loop it twice: cfscript function makeStruct(id, name, parent_id){ var stNew = StructNew(); stNew.id = id; stNew.name = name; stNew.parent_id = parent_id; stNew.aChildren = ArrayNew();

RE: Recursive function and Hierarchical navigation

2004-06-02 Thread Pascal Peters
I didn't test the code, so there could be some errors in it. I've already spottet one. This should read ArrayNew(1) stNew.aChildren = ArrayNew(); stTree.aChildren = ArrayNew(); [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Coldfusion and MX

2004-06-02 Thread John Beynon
Hi Vishnu, how's the studying going ;) I used the Macromedia Dev centre Flash remoting demo to get me started, find it here http://www.macromedia.com/devnet/mx/coldfusion/articles/startremoting.html John. -Original Message- From: vishnu prasad [mailto:[EMAIL PROTECTED] Sent: 02 June

Re: Recursive function and Hierarchical navigation

2004-06-02 Thread Dick Applebaum
This is SQL-Server specific: http://vyaskn.tripod.com/hierarchies_in_sql_server_databases.htm If you want some general discussions on the topic google for celkoand trees or hierarchical or nested sets HTH Dick On Jun 1, 2004, at 11:22 PM, Paul Wilson wrote: I'm trying to build a dynamic

RE: deleting db entries..

2004-06-02 Thread techmike
yes id is my unique primary key.I tried adding a cfoutput to display it, and it is correct. I started without the LIMIT 1, but had the same exact results.So I stuck it in there in hopes it would take care of the problem. -Mike -Original Message- From: Dave Watts [EMAIL PROTECTED] To:

Re: Difficult SQL Question

2004-06-02 Thread Jochem van Dieten
Cedric Villat wrote: Ok, I have a bit of a problem with some SQL I'm trying to build. I have a table of Tickets, and then a table with a list of fields that are associated with tickets. Here are some values for the fields table: TicketIDFieldIDValue 11 Hello 12 5 21 Hello 23 Boo 32 5

Re: Blackstone - Toronto CFUG notes

2004-06-02 Thread Cutter (CF-Talk)
From the sound of the proposed changes/updates, I would imagine MM would definitely want us to put out some heavy word of mouth. Great free advertising targeting several other developer communities on a reason to switch. Of course there is still the issue of server licensing pricing to

Re: Recommendation for a book about writing documentation

2004-06-02 Thread Cutter (CF-Talk)
UML is only a small part of requirements specifications. A good book on UML is: Fundamentals of Object-Oriented Design in UML (Page-Jones) A good book on requirements specifications, as well as software process and documentation in general is: Software Engineering: A Practioner's Approach

Return value from function has extra space

2004-06-02 Thread Frost, Brian A, CTR, Force Transformation
I have a function that takes a string, manipulates (encrypts, etc.) it and returns it. For Example: #encode(value=Test string)# Result: blahblahblah When I output the result directly to the screen: CFOUTPUT#encode(value='Test String')#CFOUTPUT Result: blahblahblah The result has an

Re: Coldfusion and MX

2004-06-02 Thread Cutter (CF-Talk)
Vishnu, You might start with some of the tutorials on the MM site, as well as those at FlashCFM.com Cutter vishnu prasad wrote: Hi All i am new to Flash i like to develop and application using flash and coldfusion if anyone familar with that will u pls tell me how to develop simple

RE: Return value from function has extra space

2004-06-02 Thread Raymond Camden
Did you write your UDF w/ cffunction? Did you forget output=false in the cffunction tag? If you did forget, or set it to true, you will get extra white space. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Return value from function has extra space

2004-06-02 Thread Frost, Brian A, CTR, Force Transformation
Raymond- Looks like I was just dumb ;-)It works like a champ, thanks for the quick response! Brian -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 02, 2004 8:18 AM To: CF-Talk Subject: RE: Return value from function has extra space Did you

Re: Recursive function and Hierarchical navigation

2004-06-02 Thread Nicholas Watson
How do you return a record set like this back to ColdFusion? Do you just use a cfquery tag? I tried the example, and it's much faster than what we are currently doing, but how do I handle it on the ColdFusion side? This is SQL-Server specific:

RE: mssql NULL

2004-06-02 Thread Philip Arnold
From: Tony Weeg this errors. cfif NOT (isDefined(form.notqualifiedId) and IsMSSQLGUID(form.notqualifiedId)) cfset form.notqualifiedId = NULL /cfif I want to send null to the database as the value. can this be done, so that I can then, in turn, do this. update accounts

Re: Recursive function and Hierarchical navigation

2004-06-02 Thread Dick Applebaum
Yeah! Play with it in a SQL GUI until you get it the way you want it, then enclose it within cfquery.../cfquery tags. Most of these (Celko's) techniques are quite fast -- seems a little odd at first, but it compensates for RDBMS's inherent weakness when handling hierarchical data. I suggest

RE: mssql NULL

2004-06-02 Thread Pascal Peters
Or even better cfparam name=form.notqualifiedId default= update accounts set NOTQUALIFIEDID = cfqueryparam cfsqltype=CF_SQL_VARCHAR value=#form.notqualifiedId# null=#YesNoFormat(NOT IsMSSQLGUID(form.notqualifiedId))# where accountNumber = 1 -Original Message- From: Tony Weeg

ArrayLen

2004-06-02 Thread Frank Dewey
Hello all, I've got an easy one (for yall anyway).I'm trying to loop through an array and check a value...but I'm doing somnething syntactically incorect...I've looked and output the value but I still don't understand what's going on.Here's what I've got: cfloop From=1 to=ArrayLen(S1Array)

Re: ArrayLen

2004-06-02 Thread tony weeg
need #'s around functions when they are part of that looping mechanism. tw -- Original Message -- From: Frank Dewey [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date:Wed, 2 Jun 2004 07:47:50 -0500 Hello all, I've got an easy one (for yall anyway).I'm

RE: ArrayLen

2004-06-02 Thread Philip Arnold
From: Frank Dewey I've got an easy one (for yall anyway).I'm trying to loop through an array and check a value...but I'm doing somnething syntactically incorect...I've looked and output the value but I still don't understand what's going on.Here's what I've got: cfloop From=1

RE: ArrayLen

2004-06-02 Thread Frank Dewey
Actually, I've just figured it out...I forgot that #s go in the quotes Regards - Frank From: Frank Dewey [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 02, 2004 7:48 AM To: CF-Talk Subject: ArrayLen Hello all, I've got an easy one (for yall anyway).I'm

RE: ArrayLen

2004-06-02 Thread Frank Dewey
tw, Thanx for the quick reply...I figured it out and sent an emai as soon as I did...but you had already replied!My email server is a little slow getting out From: tony weeg [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 02, 2004 7:50 AM To: CF-Talk Subject:

RE: ArrayLen

2004-06-02 Thread Frank Dewey
thanx for the quick responce Phillip...I'm a beggining CF programmer and I forgot about thos dang #s! From: Philip Arnold [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 02, 2004 7:57 AM To: CF-Talk Subject: RE: ArrayLen From: Frank Dewey I've got an easy

Array error

2004-06-02 Thread Robert Orlini
Why do I get this error?: An error occurred while evaluating the _expression_: session.item[variables.arrayLength+1][1]=form.qty Error resolving parameter VARIABLES.ARRAYLENGTH. The specified variable name cannot be found. for the bold line below. I'n new to arrays so any insight would be

RE: Array error

2004-06-02 Thread Raymond Camden
Well the obvious question is - are you sure variables.arrayLength exists? It must not. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: loginstorage

2004-06-02 Thread Coleman, Brian
Bah, that's it...checked version and its 6,0,0,48097 ... Do you know if 6.1 breaks anything from 6.0? -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 01, 2004 5:38 PM To: CF-Talk Subject: RE: loginstorage I think you must be using MC 6.0

RE: loginstorage

2004-06-02 Thread Ben Forta
6.0 - 6.1 is an incredibly painless upgrade. Make a backup, of course, but you should find the process wonderfully uneventful. --- Ben _ From: Coleman, Brian [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 02, 2004 9:31 AM To: CF-Talk Subject: RE: loginstorage Bah, that's it...checked

rualivecftalk

2004-06-02 Thread Tony Weeg
speak to me cftalk, are you alive today tony r e v o l u t i o n w e b d e s i g n [EMAIL PROTECTED] www.revolutionwebdesign.com its only looks good to those who can see bad as well -anonymous [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: rualivecftalk

2004-06-02 Thread Douglas.Knudsen
7 -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 02, 2004 9:45 AM To: CF-Talk Subject: rualivecftalk speak to me cftalk, are you alive today tony r e v o l u t i o n w e b d e s i g n [EMAIL PROTECTED] www.revolutionwebdesign.com its only

Re: rualivecftalk

2004-06-02 Thread Damien McKenna
On Jun 2, 2004, at 9:45 AM, Tony Weeg wrote: speak to me cftalk, are you alive today No. -- Damien McKenna - Web Developer - [EMAIL PROTECTED] The Limu Company - http://www.thelimucompany.com/ - 407-804-1014 [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User

Re: Adding a timestamp to images

2004-06-02 Thread Marlon Moyer
As a follow-up.The DRK 4 has a cf wrapper to the Java Advanced Image api in it that does exactly what I was wanting and more.Oh well, at least I learned something in the process. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: rualivecftalk

2004-06-02 Thread Philip Arnold
From: Tony Weeg speak to me cftalk, are you alive today You've already asked one question (and had answers) and answered a question yourself... What makes you think that the list is dead? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: rualivecftalk

2004-06-02 Thread Tony Weeg
because i havent gotten your reply, and had to go the hof site to get it :) and mike tangorre isnt getting emails from the list. and its cloudy out. any more reasons necessary? me [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: Adding a timestamp to images

2004-06-02 Thread Daniel Farmer
And that is more valuable than money - Original Message - From: Marlon Moyer To: CF-Talk Sent: Wednesday, June 02, 2004 10:08 AM Subject: Re: Adding a timestamp to images As a follow-up.The DRK 4 has a cf wrapper to the Java Advanced Image api in it that does exactly what I was wanting

Re: rualivecftalk

2004-06-02 Thread Howard Fore
All your list are belong to us. -- Howard Fore, [EMAIL PROTECTED] On Jun 2, 2004, at 9:45 AM, Tony Weeg wrote: speak to me cftalk, are you alive today [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Returning XML via webservice, cont

2004-06-02 Thread Chris Dempsey
Dear List, I saw this thread a few days ago, about returning an XML document as a string from a CFC.I tried using returntype=any and the toString() function - neither worked.What ends up happening is that the XML document gets returned as a WDDX packet.Is it possible to just return it as a

DataLabelFormat and CFX_GraphicsServer

2004-06-02 Thread Scott Brady
We have an internal CF5 application that uses the CFX_GraphicsServer (version 1, I believe) that I'm using on a new page. I'm having some issues with a bar graph and labeling the data. Here's the code for the tag I'm using: CFX_GraphicsServer graphType=3 gridStyle=3 graphBackStyle=0

Re: rualivecftalk

2004-06-02 Thread Alexander Sherwood
At 10:15 AM 6/2/2004, you wrote: All your list are belong to us. Yes CF-Talk is alive because it runs on the best CFML framework: FuseBox .dsp files. -- Howard Fore, [EMAIL PROTECTED] On Jun 2, 2004, at 9:45 AM, Tony Weeg wrote: speak to me cftalk, are you alive today --

RE: rualivecftalk

2004-06-02 Thread Tony Weeg
dude. are you nuts. that's like throwing gas on a fire. debate war.down.no fusebox is best war please. tony Tony Weeg sr. web applications architect navtrak, inc. [EMAIL PROTECTED] 410.548.2337 www.navtrak.net -Original Message- From: Alexander Sherwood [mailto:[EMAIL

Re: rualivecftalk

2004-06-02 Thread Claude Schneegans
any more reasons necessary? Yes, some too zeleous spam filter. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address: [EMAIL PROTECTED]) Thanks. [Todays Threads] [This Message]

RE: Returning XML via webservice, cont

2004-06-02 Thread Tom Kitta
Why is your function return type void it should be string if you want to return a string[Tom Kitta] . Change it to string and give it a go. TK -Original Message- From: Chris Dempsey [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 02, 2004 10:24 AM To: CF-Talk Subject: Returning XML via

(DONE) RE: rualivecftalk

2004-06-02 Thread Tony Weeg
im getting some now, but its sporadic, seems good tho, for past 10 min. we shall see. anyway, thanks. tony Tony Weeg sr. web applications architect navtrak, inc. [EMAIL PROTECTED] 410.548.2337 www.navtrak.net -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED]

RE: rualivecftalk

2004-06-02 Thread Alexander Sherwood
At 10:30 AM 6/2/2004, you wrote: dude. are you nuts. that's like throwing gas on a fire. debate war.down.no fusebox is best war please. But it's true. CFMX works best with FuseDoc'ed FuseBox 4.0 .qry and .dsp files. tony Tony Weeg sr. web applications architect navtrak, inc. [EMAIL

RE: rualivecftalk

2004-06-02 Thread Philip Arnold
From: Alexander Sherwood Yes CF-Talk is alive because it runs on the best CFML framework: FuseBox .dsp files. I thought most of it was handled by the IMS mail server [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: Tiny urls from HoF site

2004-06-02 Thread Tony Weeg
funny. i built the same kinda thing, and am about to launch @ www.antiwrap.com coming soon :) see ya. tw Maybe I'm just the last guy to find out about this and everyone knows already, but I found this today hiding at the bottom of Michael's web site.

Re: rualivecftalk

2004-06-02 Thread Damien McKenna
On Jun 2, 2004, at 10:30 AM, Tony Weeg wrote: debate war.down.no fusebox is best war please. But it is! :^) -- Damien McKenna - Web Developer - [EMAIL PROTECTED] The Limu Company - http://www.thelimucompany.com/ - 407-804-1014 [Todays Threads] [This Message] [Subscription] [Fast

Re: rualivecftalk

2004-06-02 Thread Greg Landers
Yes CF-Talk is alive because it runs on the best CFML framework: FuseBox .dsp files. more like most cumbersome framework ... :P hehehe (bring it on!) - Greg [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: rualivecftalk

2004-06-02 Thread Alexander Sherwood
At 10:40 AM 6/2/2004, you wrote: From: Alexander Sherwood Yes CF-Talk is alive because it runs on the best CFML framework: FuseBox .dsp files. I thought most of it was handled by the IMS mail server Yes, but the IMS Mail Server is built on a OOP-based inherited has a (not is a)

Error on Array

2004-06-02 Thread Robert Orlini
Why am I getting this error? What does it mean please? An error occurred while evaluating the _expression_: session.item=#ArrayDeleteAt(session.item,1)# Parameter 1 of function ArrayDeleteAt which is now YES must be an array. The error occurred while processing an element with a general

Re: Error on Array

2004-06-02 Thread Alexander Sherwood
At 10:51 AM 6/2/2004, you wrote: Why am I getting this error? What does it mean please? An error occurred while evaluating the _expression_: session.item=#ArrayDeleteAt(session.item,1)# Parameter 1 of function ArrayDeleteAt which is now YES must be an array. The error occurred while processing an

RE: Returning XML via webservice, cont

2004-06-02 Thread Christopher Dempsey
Oops, wrong version of the function.Here is the right code: cffunction name=getNavigation2 access=remote returntype=any output=false cffile action="" file=D:\inetpub\wwwroot\ssoNavigation.xml variable=myString / cfreturn toString(myString) / /cffunction On Wed, 2 Jun 2004, Tom Kitta wrote:

caching..

2004-06-02 Thread techmike
Shouldnt setting the template cache size in administraor to 0 prevent caching? This server is just for my testing, and I don't want anything cached. I deleted a file, but coldfusion seems to of cached it because it still displays even though the file doesnt exist! -Mike [Todays Threads]

RE: caching..

2004-06-02 Thread Tony Weeg
you want to worry about trusted cache. template cache, I don't think, produces the problem ur seeing, or maybe it does and just not in my experimentation. tony Tony Weeg sr. web applications architect navtrak, inc. [EMAIL PROTECTED] 410.548.2337 www.navtrak.net -Original Message-

re: Error on Array

2004-06-02 Thread Scott Brady
Original Message: From: Robert Orlini Why am I getting this error? What does it mean please? An error occurred while evaluating the _expression_: session.item=#ArrayDeleteAt(session.item,1)# Parameter 1 of function ArrayDeleteAt which is now YES must be an array. The error occurred while

RE: CFQUERY - MySQL Chicken and Egg

2004-06-02 Thread Mark A. Kruger - CFG
Ah... so the truth comes out - as the Gestapo said to the grandfather clock ... ve haf vays to make you tock... -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 01, 2004 7:52 AM To: CF-Talk Subject: RE: CFQUERY - MySQL Chicken and Egg I'm a liar, I

Redirect to page based on URL...

2004-06-02 Thread Les Mizzell
I have a client the currently has two domain names pointing to the same site.They've now asked me to redirect one of the names to a specific file down inside the site. I'm pretty sure this is something that I can do with cfhttp or one of the related tags, but I'm not exactly sure how to pull

RE: Error on Array

2004-06-02 Thread Pascal Peters
Because ArrayDeleteAt doesn't return an array but a boolean! If you run the code twice, the array has disappeared. Just do cfset tmp = ArrayDeleteAt(session.item,1) -Original Message- From: Robert Orlini [mailto:[EMAIL PROTECTED] Sent: woensdag 2 juni 2004 16:52 To: CF-Talk

RE: Redirect to page based on URL...

2004-06-02 Thread Katz, Dov B (IT)
If you need to use CF, you can probably utilize CGI.SERVER_NAME which should have the host name.Otherwise, you can set something up in IIS. CFHTTP isn't needed for this, and probably wouldn't be much help, especially if you are utilizing state for anything. Cfif

RE: Redirect to page based on URL...

2004-06-02 Thread Dobris, Eric
You can do it simply: cfif (#cgi.server_name# EQ www.name1.com) cflocation url=""> cfelseif (#cgi.server_name# EQ www.name2.com) cflocation url=""> /cfif Eric _ From: Les Mizzell [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 02, 2004 11:08 AM To: CF-Talk Subject: Redirect to page

RE: Redirect to page based on URL...

2004-06-02 Thread John Beynon
So in your top level default file you'd have something like: cfswitch _expression_=#cgi.server_name# cfcase value=www.name1.com cflocation url=""> /cfcase cfcase value=www.name2.com cflocation url=""> /cfcase /cfswitch You'll need to make sure that you name1 relocates to a different file

Re: Redirect to page based on URL...

2004-06-02 Thread Damien McKenna
#cgi.HTTP_HOST# is probably what you're looking for. Do something simple like: cfif #cgi.http_host# EQ name2.com OR #cgi.http_host EQ www.name2.com cflocation url="" / /cfif I'm not 100% certain on it though, I don't have anything like that set up on our server. Note that I don't think

Re: Difficult SQL Question

2004-06-02 Thread Cedric Villat
Thanks Pascal, I'll give these a shot. Cedric Subject: Difficult SQL Question From: Pascal Peters [EMAIL PROTECTED] Date: Wed, 2 Jun 2004 10:31:02 +0200 Thread: http://www.houseoffusion.com/cf_lists/index.cfm/method=messagesthreadid=32925forumid=4#165218 If your db supports it, you can use

CFX_ConsoleCommand and CFX_Execute

2004-06-02 Thread Jamie Jackson
I'm trying to find an alternative to cfexecute (which doesn't work well with some commands, I've found), and I'm now looking at CFX_ConsoleCommand and CFX_Execute (both at http://www.intrafoundation.com/coldfusion.html). Two questions: How do these tags differ, and what do I do with the

Output formatting question

2004-06-02 Thread Eric Creese
I have the following code. Everything works fine but when I output to the web page the first line appears to be right justified. I tried putting an align left in the td tag on the first line but that was even worse. I simply want to have a Image field with a caption text that is all data driven.

RE: css idiot question

2004-06-02 Thread Micha Schopman
Dear Tony, This should be the correct syntax (although I personally do not like parts of code here an there on elements) . div style=background:#53;width:100%;height:100%; > > id=td1 New Applicant /div this refers to the DIV element directly :-) _ From: Tony Weeg [mailto:[EMAIL

RE: CFX_ConsoleCommand and CFX_Execute

2004-06-02 Thread Kev McCabe
Your install them as CFX custom tags. They do come with the DLL. you need. If you mail me off list I can send you an Updated DLL what will allow you to get Output 1 2 out in the return. Cheers _ Mr Kev McCabe Senior ETV Developer, British Sky Broadcasting First

RE: CFX_ConsoleCommand and CFX_Execute

2004-06-02 Thread John Beynon
Based on your signature Kev, is Sky Active etc running on CF? -Original Message- From: Kev McCabe [mailto:[EMAIL PROTECTED] Sent: 02 June 2004 17:07 To: CF-Talk Subject: RE: CFX_ConsoleCommand and CFX_Execute Your install them as CFX custom tags. They do come with the DLL. you need.

RE: Recursive function and Hierarchical navigation

2004-06-02 Thread Micha Schopman
If you have the option of using SQL Server, try to create a stored procedure and return all records at once as raw data. Use ColdFusion to regain hierarchy, for ex. using structures and arrays, and you will have the highest performance available. It is all about minimizing database calls :-)

RE: Array error

2004-06-02 Thread Micha Schopman
Dear Robert, What does this code return to you? cfif IsDefined(‘variables.arrayLength’) Variable exists cfelse Variable does not exist /cfif _ From: Robert Orlini [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 02, 2004 3:11 PM To: CF-Talk Subject: Array error Why do I get this

RE: Output formatting question

2004-06-02 Thread Tangorre, Michael
The float:right is the culprit. An easier way to accomplish what you are trying is to use a master container with two containers within it: 1 for the image, 1 for the caption. div class=image-caption-container div class=imagesome image/div div class=caption span class=captionsome caption

Re: Coldfusion and MX

2004-06-02 Thread Rick Root
vishnu prasad wrote: i am new to Flash i like to develop and application using flash and coldfusion if anyone familar with that will u pls tell me how to develop simple I highly recommend Jeanette Stallons book.. http://www.amazon.com/exec/obidos/ASIN/0321238346/arboinc It mirrors the

RE: Returning XML via webservice, cont

2004-06-02 Thread Tom Kitta
I have tryed your function, with code: cffunction name=getNavigation access=remote returntype=any output=false cffile action="" file=c:\inetpub\wwwroot\tk\gb\data\data1.xml variable=myString cfreturn xmlFormat(toString(myString)) /cffunction Works fine. Try to copy above exactly, maybe it is

RE: Output formatting question

2004-06-02 Thread Micha Schopman
This would do style type=text/css #wrap{ position:relative; width:600; height:375; background:#fff; } #subwrap{ position:absolute; right:0; top:0; } #subwrap img{ margin:0 0 0 5px; border:0; } /style div id=wrap h3my subject/h3 div id=subwrap img src="" / /div /div _ From: Tangorre,

RE: caching..

2004-06-02 Thread Micha Schopman
Mike, What are the caching settings in your browser? If you do not load very much images dynamically(because of a MSIE bug) you should consider changing it to every visit to the page :) If you have trusted cache off, then ColdFusion is not the one who is giving you troubles. Also try to call the

[Stats] CF-Talk: May 2004

2004-06-02 Thread Bill Doerrfeld
Searchable archives for this list are available at http://www.listsearch.com/cf-talk.lasso CF-Talk Stats May, 2004 Note: Up/Down % as compared with April, 2004 Posts:3236 (Up0%) Authors:388 (Down 8%) Threads:646 (Up1%) Top 20 Contributors by Number of Posts --

Re: CFX_ConsoleCommand and CFX_Execute

2004-06-02 Thread Jamie Jackson
On Wed, 2 Jun 2004 17:07:04 +0100, in cf-talk you wrote: Your install them as CFX custom tags. They do come with the DLL. you need. Ack, you're right. I was looking in subdirectories that I thought were the root. :-/ If you mail me off list I can send you an Updated DLL what will allow you

Re: CFX_ConsoleCommand and CFX_Execute

2004-06-02 Thread Nick de Voil
Based on your signature Kev, is Sky Active etc running on CF? If Kev won't comment, then I'd better not either. But this is what Jeremy Allaire says: http://www.meetthemakers.com/conversations/allaire/2/ (second-last paragraph) Nick [Todays Threads] [This Message] [Subscription] [Fast

RE: Error on Array

2004-06-02 Thread Robert Orlini
Thanks Peter and others. How do I delete the entire ID? Here is my Array which I should have sent also sorry: cfset session.item[variables.arrayLength+1][1]=form.qty cfset session.item[variables.arrayLength+1][2]=form.item cfset session.item[variables.arrayLength+1][3]=form.priceeach I

Re: rualivecftalk

2004-06-02 Thread Michael Dinowitz
Yes CF-Talk is alive because it runs on the best CFML framework: FuseBox .dsp files. 1. I don't use fusebox and havn't since we created it in 98. No knock against it but I don't have a personal need for it. 2. This thread is ended. If anyone needs to see if the list is live, please just go to the

OT: cffun tickets

2004-06-02 Thread cf
i have 2 cffun tickets, anyone want to go at a discount? make me an offer please reply to [EMAIL PROTECTED] [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Structs Question

2004-06-02 Thread Bruce Sorge
I was wondering if someone would be willing to point me to a good reference for building structs from queries. I have a product catalog that I am working on, and I think that I need to use a struct to get this to display correctly. The out put will look like this: First row will contain an empty

RE: caching..

2004-06-02 Thread techmike
I'm using one of the nightly builds of Mozilla Firefox but it does the same in IE 6 also. Works with whatever varibles, in fact the template accesses a database and I've even queried the database thru the template..but the template doesnt exist..:) -Mike -Original Message- From:

Re: rualivecftalk

2004-06-02 Thread Alexander Sherwood
At 01:02 PM 6/2/2004, you wrote: Yes CF-Talk is alive because it runs on the best CFML framework: FuseBox .dsp files. 1. I don't use fusebox and havn't since we created it in 98. No knock against it but I don't have a personal need for it. Sorry Mike. I couldn't resist. When someone asks R U

RE: CFX_ConsoleCommand and CFX_Execute

2004-06-02 Thread Kev McCabe
MMM, One feels there could be an NDA here from my end . So I all I can say mm CF Coming to a Screen near you.(UK and EIRE) Sorry but Corporate stuff stops me from responding on a List ;-) _ Mr Kev McCabe Senior ETV Developer,

upload a file explanation

2004-06-02 Thread Daniel Kessler
I was given a piece of code that works, but I don't understand why it works, so I'm looking for an explanation. This code uploads a file and if it's too large, it directly the user to an error page.I know that the file has to be uploaded into memory before it can check file size but I don't

RE: Structs Question

2004-06-02 Thread Douglas.Knudsen
use the SQL Luke!LOL!Yeah, try building SQL to do this, you can then use the GROUP attribute of cfoutput to display it correctly. a result set like this blk,sm,10 blk,med,15 blk,lg,20 wht,sm,10 wht,med,15 wht,lg,20 can be displayed as blk,10,15,20 wht,10,15,20 Doug -Original

RE: css idiot question

2004-06-02 Thread Douglas.Knudsen
actually, object.style.backgroundColor use the humback or camelback or whatever the term is for CSS properties in DHTML.So, for a style element named foo-goo-zoo, this becomes fooGooZoo in DHTML

RE: Returning XML via webservice, cont

2004-06-02 Thread Christopher Dempsey
Tom, I tried what you recommended, I have tried your method below, and it didn't work quite right.It still returns a WDDX packet, but now all of the XML is escaped.The XML file is at http://www.graddiv.ucsb.edu/ssoNavigation.xml and I am calling the below code with

RE: Array error

2004-06-02 Thread Robert Orlini
I get: 1 Variable does not exist Robert O. -Original Message- From: Micha Schopman [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 02, 2004 12:18 PM To: CF-Talk Subject: RE: Array error Dear Robert, What does this code return to you? cfif IsDefined('variables.arrayLength')

RE: css idiot question

2004-06-02 Thread Tony Weeg
twas exactly what I did...and fixed. thanks! tony Tony Weeg sr. web applications architect navtrak, inc. [EMAIL PROTECTED] 410.548.2337 www.navtrak.net -Original Message- From: Ewok [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 02, 2004 1:26 PM To: CF-Talk Subject: Re: css idiot

RE: Error on Array

2004-06-02 Thread Pascal Peters
No, it deletes the entire first row. Pascal -Original Message- From: Robert Orlini [mailto:[EMAIL PROTECTED] Sent: woensdag 2 juni 2004 18:56 To: CF-Talk Subject: RE: Error on Array Thanks Peter and others. How do I delete the entire ID? Here is my Array which I should

RE: Array error

2004-06-02 Thread Pascal Peters
So, where do you set the var arrayLength? Probably never Set it and your code will work. -Original Message- From: Robert Orlini [mailto:[EMAIL PROTECTED] Sent: woensdag 2 juni 2004 19:31 To: CF-Talk Subject: RE: Array error I get: 1 Variable does not exist Robert O.

RE: loginstorage

2004-06-02 Thread Dave Watts
6.0 - 6.1 is an incredibly painless upgrade. Make a backup, of course, but you should find the process wonderfully uneventful. I happen to know a lot of people that would disagree with this - there were lots of problems with the database drivers shipped with 6.1. You'll want to test, just

Re: upload a file explanation

2004-06-02 Thread Ben Doom
cffile action=""> filefield=NewFile destination=/#CurrentDir#/CrsMat/ accept=application/vnd.ms-powerpoint nameconflict=MakeUnique This bit stores the file. CFIF Val(CGI.CONTENT_LENGTH) GT 10485760 cflocation url=""> addtoken=No CFABORT /CFIF This bit redirects to another fuseaction if the

RE: Returning XML via webservice, cont

2004-06-02 Thread Tom Kitta
I tryed the links you supplied and I got what I expected. Can you send me what you get as your browser response? Maybe you need to clear browser cache or something. I looked at the XML raw and one returned by your CFC call and they are the same minus the formatting of the actual XML (mine doesn't

Re: OT: cffun tickets REVISION

2004-06-02 Thread cf
sorry but there is only 1 cffun ticket available if still interested reply to [EMAIL PROTECTED] will answer back after i take kids too pool thanks sorry bout that i have 2 cffun tickets, anyone want to go at a discount? make me an offer please reply to [EMAIL PROTECTED] [Todays

  1   2   >