To Sean: Thank You (was Re: MM Exchange lack of proper nav Suggested Design)

2003-10-26 Thread Rafael Bleiweiss
Sean, I dont know if anyone has expressed this here yet, (I can only occasionally read the posts here lately due to work volume), however I was up at the CF Exchange at MM's site today. The changes implemented since we had our huge discussion here a couple months ago are TRULY and GRATEFULLY app

RE: soEditor as cfmodule

2003-10-26 Thread Samuel R. Neff
That's one of the drawbacks of cfmodule, if you close one you have to close all of them in the same page. I'd suggest taking the closed cfmodule call and separate that into a different file. So if you have    Change it to be:    that way you are moving the second non-closed cfmodule ca

Re:OT: CF WYSIWYG Editor updated

2003-10-26 Thread Mauricio Giraldo
>Do you have links to sample pages and is this solution, in your Sure. There is a demo page linked from SourceForge. The link is: http://www.elefectoaxe.com.co/spaw/test.cfm >opinion, better than the siteObject solution, soEditor Pro 2.5? Hm... I am not a soEditor user so I cannot make an obje

Re: textarea problem

2003-10-26 Thread Stephen Hait
> IS there some secret to displaying a form variable in a HTML form - > textarea box: > > I don't get any errors, but nothing shows when I pass the > description variable to this text area: > > > scroll="yes"> The value displayed in the textarea form element is specified diferently. Try changi

RE: Add or Multiply as a Variable - Question Repharased

2003-10-26 Thread Dave Watts
> I tend to overcomplicated things. Let's rephrase the question: > > For: > > #DollarFormat(ST_100.DIST_COST * ADJUST.ADJUST100)# > > How would I make the Arithmetic _expression_ "*"  a variable from > the database, so it could be addition, subtraction, division - > whatever was in the cell at

RE: soEditor as cfmodule

2003-10-26 Thread Michael T. Tangorre
have you confirmed this other cfmodule call? -Original Message- From: Dwayne Cole [mailto:[EMAIL PROTECTED] Sent: Sunday, October 26, 2003 8:39 PM To: CF-Talk Subject: soEditor as cfmodule I would like to call the soEditor as a cfmodule instead of a custom tag. The editing window is dis

Re: Re:cfquery performance suggestions

2003-10-26 Thread admin
thanks for all the great info guys. The table only gets rebuilt once a week (I "think") and is running of sql 2000. The table contains about 2.5 mil rows   - Original Message -   From: alexander sicular   To: CF-Talk   Sent: Sunday, October 26, 2003 3:10 PM   Subject: Re:cfquery performa

re: RECURSIVE DELETE **UPDATE**

2003-10-26 Thread Bushy
I all, After thinking about this more what I really require is the need to select directories/files by checking an box and having that selection submitted and those direcotires/files FTP'd to the server and visa-versa. Deleting won't be a requirement. How can I go about this. Anybody have any

Re: OT: CF WYSIWYG Editor updated

2003-10-26 Thread Dwayne Cole
Do you have links to sample pages and is this solution, in your opinion, better than the siteObject solution, soEditor Pro 2.5? >Hi > >A few weeks ago I made a post announcing a GPL CF-based WYSIWYG web html >editor SPAW-CF. We have now released an updated version that includes fixes >and perfor

soEditor as cfmodule

2003-10-26 Thread Dwayne Cole
I would like to call the soEditor as a cfmodule instead of a custom tag.  The editing window is displaying twice.  I presume that it's because there is another cfmodule call on the page that happens to have a closing tag. The structure looks like this:    How can I keep the inner cfmodule fr

OT: CF WYSIWYG Editor updated

2003-10-26 Thread Mauricio Giraldo
Hi A few weeks ago I made a post announcing a GPL CF-based WYSIWYG web html editor SPAW-CF. We have now released an updated version that includes fixes and performance benefits. The project is hosted in SourceForge at: http://sourceforge.net/projects/spaw-cf/ If you have downloaded previous ve

RE: Web Reports

2003-10-26 Thread Emmet McGovern
This is one of the problems I'm having.  Although my main goal is to provide stats reporting to all my hosting clients, one in particular receives nearly 9 million page views per month.   I just tried the Funnel Web Analyzer http://www.funnelwebcentral.com and it crunched 20 log files with 9,255,5

RE: textarea problem

2003-10-26 Thread Dave Watts
> IS there some secret to displaying a form variable in a HTML > form - textarea box: > > I don't get any errors, but nothing shows when I pass the > description variable to this text area: > > > VALUE="#description#" scroll="yes"> The TEXTAREA field doesn't have a VALUE attribute: #descript

textarea problem

2003-10-26 Thread Tim Laureska
IS there some secret to displaying a form variable in a HTML form - textarea box: I don't get any errors, but nothing shows when I pass the description variable to this text area: scroll="yes"> Tim [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re:cfquery performance suggestions

2003-10-26 Thread alexander sicular
maybe you could use category=left(category, 'p', 1) instead of like. depending on your database syntax may vary. i find that like is the slowest operation you can do. gl, alex >I'm using the following query to find all the catagories in a table >that start with a certain letter :- > >SELECT dist

RE: cfquery performance suggestions

2003-10-26 Thread Jim Davis
Off the top of my head I would say run the query for each letter and cache it then use the cached copy.  This depends, of course, on: 1) How much data will be retrieved?  To much to cache?  If so perhaps you could construct temp tables on the DB with the letter queries. Lacking that you might al

re: RECURSIVE DELETE **UPDATE**

2003-10-26 Thread Bushy
I all, After thinking about this more what I really require is the need to select directories/files by checking an box and having that selection submitted and those direcotires/files FTP'd to the server and visa-versa. Deleting won't be a requirement. How can I go about this. Anybody have any

Re: cfquery performance suggestions

2003-10-26 Thread Tom Kitta
You can make it a stored procedure in SQL server or at least use tag. How often does the category data change and how recent results do you need? If it doesn't need to be the newest result set consider caching the query data (you may even run a process every so often to populate a special table in

cfquery performance suggestions

2003-10-26 Thread admin
I'm using the following query to find all the catagories in a table that start with a certain letter :- SELECT distinct CATEGORY FROM dbo.mainfile where CATEGORY like 'P%' order by CATEGORY ASC I have an index based on Category but it runs slow (it's a v. large table - and it't can't be redesigne

RE: textarea problem

2003-10-26 Thread Tim Laureska
Thanks Dave and Steven... thought I had tried that once with no success, but anyway... -Original Message- From: Stephen Hait [mailto:[EMAIL PROTECTED] Sent: Sunday, October 26, 2003 12:36 PM To: CF-Talk Subject: Re: textarea problem > IS there some secret to displaying a form variable in

RE: Web Reports

2003-10-26 Thread Ian Lurie
Have you tried Urchin? urchin.com. It scales beautifully and is very configurable. Lets you use regex to perform really precise dynamic page tracking, etc.   -Original Message-   From: Emmet McGovern [mailto:[EMAIL PROTECTED]   Sent: Sunday, October 26, 2003 7:16 AM   To: CF-Talk   Subject

ActiveX = death?

2003-10-26 Thread Dave Watts
> > > Does anyone in their right mind enable ActiveX controls > > > in Outlook? > > > > Sure! > > > > Lots of folks do: ... Rerun from TV's "What's Happing!". > > Well, I'm not sure Rerun is doing a whole lot of anything now > that he's dead. I knew ActiveX was dangerous, but I had no idea it w

[i18n] GNU gettext and CF MX

2003-10-26 Thread Jochem van Dieten
Does anybody have experience with or utilities for integrating GNU gettext with CF MX? http://www.gnu.org/manual/gettext/ Jochem [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re:I'm lost converting ASP to CF5

2003-10-26 Thread Josen Ruiseco
Give this a try... CFM2ASP is a programming tool that will convert most of CFM code to ASP. It will convert the most commonly used CFM tags into ASP along with variable and function syntax. The code editor is a full featured programmer-style editor with features such as auto-indent, line numbers,

re: RECURSIVE DELETE

2003-10-26 Thread Bushy
Hi, I'm creating a app that allows me to list directories/files on the server. I have this working great. I have checkboxes beside each directory and individual files. The user has the option of checking individual files to delete or by selecting a directory deletes that directory and all conten