RE: A Verity SQL Combo Question - Can this be sped up?

2002-03-13 Thread Kevan . Windle
Could try using MS indexing instead of Verity, I've found it better anyway. -Original Message- From: Mallory Woods [mailto:[EMAIL PROTECTED]] Sent: 08 March 2002 16:13 To: CF-Talk Subject: A Verity SQL Combo Question - Can this be sped up? Greetings all.. We have an interesting

RE: What's the difference between a coder and a programmer??

2002-03-13 Thread James Maltby
LOL! Fair point there! But what's in a name? A coder by any other name would code just a neat! :) J -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 12, 2002 17:58 To: CF-Talk Subject: RE: What's the difference between a coder and a programmer??

Re: Fusebox pros and cons

2002-03-13 Thread Jochem van Dieten
Roger B. wrote: On Tue, 12 Mar 2002 12:48:48 -0500, in cf-talk you wrote: My complaint with this technique is the same, essentially, as my complaint with using the Request scope to share data between custom tags and their calling pages. It breaks the model of defined inputs and outputs. I

Select Boxes Populating another select box

2002-03-13 Thread Graham Pearson
CF-Talk, I am looking for code that for an application that I am working on that when a user selects a Department from an DropDown Menu, that it automatically populates another dropdown menu based on what was selected in the first select box. Is their a way to handle this. Currently I am

RE: Stored Procedure Help

2002-03-13 Thread Bill Grover
The only thing that jumped out at me was the line: CFSET ImportCount = CFSTOREDPROC.STATUSCODE Shouldn't it read? CFSET ImportCount = YestPayments.STATUSCODE Just my $.02 __ Bill Grover Supervisor MIS Phone:

RE: CFTransactions and SQL Transactions?

2002-03-13 Thread Bill Grover
I agree. I try to avoid putting any data logic within the CF page wherever possible. In the case of my application I was being unsuccessful in calling my insert procedure with a variable number of parameters from CF. We had a page where our customers would answer some questions and then we

RE: Select Boxes Populating another select box

2002-03-13 Thread Declan Maher
This is a really good site for what you need and other good stuff: http://www.webtricks.com/SourceCode/relatedselects.cfm Regards, Declan -Original Message- From: Graham Pearson [mailto:[EMAIL PROTECTED]] Sent: 13 March 2002 12:29 To: CF-Talk Subject: Select Boxes Populating another

CFFILE and network shares

2002-03-13 Thread Bosky, Dave
Is there anyway to use cffile to upload files to a network share instead of a destination directory on the webserver? If not are there any custom tags built to accomplish this? Thanks. Dave __ Dedicated Windows 2000

Re: Fusebox pros and cons

2002-03-13 Thread Roger B .
On Wed, 13 Mar 2002 12:22:10 +0100, in cf-talk you wrote: I don't see the problem with a custom tag reaching out to a server level variable to determine the OS and thereby the directory delimiter. Jochem, Why wouldn't you simply pass that server level variable into the tag as an attribute?

Re: Fusebox pros and cons

2002-03-13 Thread Roger B .
On Tue, 12 Mar 2002 15:40:19 -0500, in cf-talk you wrote: I prefer using stored procedures for that. Once you place your database access logic in the database itself, there's little to be gained from saving a three-line CF file in a separate location. Dave, You *have* seen the worst of FB,

Fw: BTAUXDIR Virtual Mapping Macromedia HELP :)

2002-03-13 Thread Neil H.
This is a repost. I am hoping someone can answer my question. I don't want to open a ticket and pay just to find out how allaire / macromedia performs an operation. Neil - Original Message - From: Neil H. [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, March 11, 2002

Re: Fusebox pros and cons

2002-03-13 Thread Jochem van Dieten
Roger B. wrote: On Wed, 13 Mar 2002 12:22:10 +0100, in cf-talk you wrote: I don't see the problem with a custom tag reaching out to a server level variable to determine the OS and thereby the directory delimiter. Why wouldn't you simply pass that server level variable into the tag as an

Dynamic Images

2002-03-13 Thread Kevin McCabe
Hi All, I know Generator could do it by as the usual story goes no Budget. Any How What I require is the ability to have a base image for example the out line of a Football Pitch Then the ability to track lets say 4 Round Images around the pitch. When Happy save the image off as a Bitmap and

RE: CF_ThreeSelectsRelated

2002-03-13 Thread James Taavon
Can you be more specific? Are you saying that sometimes have blanks in your select boxes? You need a value for each one so the next box can realte to the previous one. Does that make sense? Ex. (is your data ike this?) BOX 1 BOX 2 BOX 3 aaa bbb ccc

CFSEARCH results: HTML vs. Plain Text

2002-03-13 Thread Louis Klepner
Hello, I've got lightly formatted HTML in a database (bold / italic / lists). I'm using the CFINDEX Query function to fill a CFCOLLECTION. My problem is the HTML. I'd prefer to display my search results as plain text. Is there a way to strip HTML formatting? I've tried the string functions, but

RE: Select Boxes Populating another select box

2002-03-13 Thread John McCosker
Hi Graham, put your relating values in javascript arrays SCRIPT LANGAUGE=JAVASCRIPT var newValueList1 = new array() var newValueList1 = new array() var newValueList1 = new array() and so on... cfoutput populate your arrays /cfoutput function newPopulate(){ var selectOneObj =

RE: CFFILE and network shares

2002-03-13 Thread Albrechtas, Adam
Is the share static? Why not map a drive to it and then use the copy action of CFFILE? Adam -Original Message- From: Bosky, Dave [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 13, 2002 8:29 AM To: CF-Talk Subject: CFFILE and network shares Is there anyway to use cffile to upload

RE: A Verity SQL Combo Question - Can this be sped up?

2002-03-13 Thread Mark A. Kruger - CFG
Kevan, Could you give a short summary of how one uses MS indexing? I'd be very interested. Thanks! Mark -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 13, 2002 3:29 AM To: CF-Talk Subject: RE: A Verity SQL Combo Question - Can this be sped

RE: A Verity SQL Combo Question - Can this be sped up?

2002-03-13 Thread Dave Watts
Could you give a short summary of how one uses MS indexing? I'd be very interested. Thanks! Our own Robert Everland wrote this up on CFCOMET: http://www.cfcomet.com/cfcomet/index_server/ Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444

RE: CFSEARCH results: HTML vs. Plain Text

2002-03-13 Thread Peter Dray
Hurahh, at last something I can help with I am duty bound to point out that I grabbed this code from a custom tag on the dev exchange, their are plenty there. cfset source=#yourTextString# cfscript EndLoop = 0; StartPosition = 1; while (StartPosition gt 0){

RE: Database and Query issues.......YIKES!

2002-03-13 Thread CF_JONNY
STEVE You Are Awesome! Could I group with in a group? or can I ORDER BY something such as AM or PM? THANKS -Original Message- From: Steve Oliver [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 12, 2002 9:07 PM To: CF-Talk Subject: RE: Database and Query issues...YIKES! If you

RE: CFFILE and network shares

2002-03-13 Thread Bosky, Dave
Actually I just used the \\server\share and it worked fine without a mapped drive. Thanks, Dave Bosky -Original Message- From: Albrechtas, Adam [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 13, 2002 9:24 AM To: CF-Talk Subject: RE: CFFILE and network shares Is the share static?

RE: Database and Query issues.......YIKES!

2002-03-13 Thread Steve Oliver
You can group within a group by grouping again, like this. cfoutput query=myQuery group=DayOfWeek Day: #DayOfWeek# cfoutput group=HourOfDay Hour: #HourOfDay# cfoutput #any other variables# /cfoutput /cfoutput /cfoutput Just make sure that you order by what your grouping,

CGI Variables - CGI.Auth_User and CGI.Remote_User

2002-03-13 Thread Bosky, Dave
What is the difference between CGI.Auth_User and CGI.Remote_User? They both contain the same information - 'domain\username'. Are there any situations where you would reference one over another? Thanks, Dave __ Get Your

RE: Deleting CFID - CFTOKEN

2002-03-13 Thread Lewis Steven
Can you not delete the reference in the database? Because if you don't the CFID and CFTOKEN still exist and there is a reference to the data in the database. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 12, 2002 11:23 AM To: CF-Talk Subject: RE:

Re: Dynamic Images

2002-03-13 Thread Eric Dawson
CFX_DynamicGIF I think there is a couple of others with similar capabilities. Eric From: Kevin McCabe [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: Dynamic Images Date: Wed, 13 Mar 2002 14:15:54 - Hi All, I know Generator could do it by as the

RE: A Verity SQL Combo Question - Can this be sped up?

2002-03-13 Thread Jackson Moore
I've run into this issue on several occassions and this is the algorithm I use... For example, I have a document library where users can search by company, division, department, dates and keywords. The company, division, departement and dates are all stored in the database record for a

Text area-odd thing

2002-03-13 Thread Janine Jakim
Ok I have a textarea. Once the user types in the info they have 2 choices- 1. save info or 2.check spelling which will save the work when spell check complete. They both work fine on their own individually. But when a user uses I replace them with ' while the spell check runs then I set it back

Date Differences in SQL..

2002-03-13 Thread Angel Stewart
Hi all, I know this is really simple and I am just missing something obvious..but what's the syntax for subtracting two dates in SQL? I tried creating the Query in MS Access and just copying and pasting the code into CF...but the code that works in Access throws an error in CF. Here it is:

RE: Date Differences in SQL..

2002-03-13 Thread Star Interactive (John Ceci)
Try DateDiff(,minfo.DOB,GetDate()) -Original Message- From: Angel Stewart [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 13, 2002 11:16 AM To: CF-Talk Subject: Date Differences in SQL.. Hi all, I know this is really simple and I am just missing something obvious..but what's

CustomTags?

2002-03-13 Thread Randy Adkins
Does anyone have a copy of the ThreeSelectsRelated Customtag? It is no longer in the Macromedia site. TIA! __ Why Share? Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER Instant Activation ·

simple test on text field for numeric only ?

2002-03-13 Thread Ed Gordon
I think I know there is no way but to write my own routine, but if I do, maybe someone has done it before... How can I check to see if a text form field contains anything other than numbers? CFINPUT/VALIDATE won't do, here's why: This system deals with a lot of big dollar amounts -

OT: Storyboarding software?

2002-03-13 Thread Matt Kornguth
Any suggestions on software to use for storyboarding? If not specific software for that purpose, what are you using that makes your life easier? Thanks in advance, Matt Kornguth Web App Developer BLR.com __ Dedicated Windows

RE: CFSEARCH results: HTML vs. Plain Text

2002-03-13 Thread Louis Klepner
Ahhh! Very good, work like a charm- Thanks! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Peter Dray Sent: Wednesday, March 13, 2002 10:13 AM To: CF-Talk Subject: RE: CFSEARCH results: HTML vs. Plain Text Hurahh, at last something I can help

Re: simple test on text field for numeric only ?

2002-03-13 Thread Jochem van Dieten
Ed Gordon wrote: Is there a simple test to see if a text field will go into the database in a numeric field, so I can loop back with a message to the user (as I already do for other purposes)? IsNumeric() Jochem __

RE: simple test on text field for numeric only ?

2002-03-13 Thread Pascal Peters
ISNumeric(var) -Original Message- From: Ed Gordon [mailto:[EMAIL PROTECTED]] Sent: woensdag 13 maart 2002 17:04 To: CF-Talk Subject: simple test on text field for numeric only ? I think I know there is no way but to write my own routine, but if I do, maybe someone has done it before...

RE: simple test on text field for numeric only ?

2002-03-13 Thread Ramin Surya
After you strip out the $ and/or commas, use IsNumeric() to make sure users enter nothing but numeric. I think that should do it. -Original Message- From: Ed Gordon [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 13, 2002 10:04 AM To: CF-Talk Subject: simple test on text field for

SQL Statement question

2002-03-13 Thread Joel Blanchette
Hello all, I have a question about a sql statement I am trying to do. I am using the select distinct column1, column2 from table This is working correctly. The problem is when I want to output the results I need the ID column. How would I do this? I do not want to distinct that column

RE: CFSEARCH results: HTML vs. Plain Text

2002-03-13 Thread Rich Wild
a much quicker way involves only one line: cfset strippedOfHTML = REReplaceNoCase(textWithHTML, [^]*, , ALL) this removes ALL HTML from a string. -Original Message- From: Louis Klepner [mailto:[EMAIL PROTECTED]] Sent: 13 March 2002 16:38 To: CF-Talk Subject: RE: CFSEARCH results:

RE: Storyboarding software?

2002-03-13 Thread Declan Maher
We use Visio. -Original Message- From: Matt Kornguth [mailto:[EMAIL PROTECTED]] Sent: 13 March 2002 16:36 To: CF-Talk Subject: OT: Storyboarding software? Any suggestions on software to use for storyboarding? If not specific software for that purpose, what are you using that makes your

Re: OT: Storyboarding software?

2002-03-13 Thread Jerry Johnson
Ah, storyboarding. Do your clients let you do this anymore? :) It depends for me on the media types covered, the output medium, and for what the stoyboards are used. I've used everything from IVD Toolkit on the Mac (c. 1987), to Filemaker Pro, to Foxpro, to Word, and even a live prototype

Re: Storyboarding software?

2002-03-13 Thread Luca Unti
mindmapping software like mindmapper can be useful too hth luca - Original Message - From: Matt Kornguth [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, March 13, 2002 5:36 PM Subject: OT: Storyboarding software? Any suggestions on software to use for storyboarding? If

OT XML

2002-03-13 Thread Tyler Clendenin
I have an XML file. one of the elements has data in it. It is for e-mail. her is an example: totyler [EMAIL PROTECTED]/to current dtd: !ELEMENT to (#PCDATA) the parser has a problem with this since the and signs are not tag signifiers. can anyone tell me how i can change my dtd so that it

KILL THE BROADVIEW!

2002-03-13 Thread ksuh
Arrg!! Someone please rewrite the Macromedia site in something besides Broadview!! It is so stinking slow! I can't even view the darn CF upgrade pricing list without waiting for 2 minutes __ Dedicated Windows 2000

RE: A Verity SQL Combo Question - Can this be sped up?

2002-03-13 Thread Kevan . Windle
You need have MS Index Server installed. For NT it comes with the option pack, not sure about 2000. Once installed you have the standard MMC interface to specify which directories to index, and that's it. Don't have to reindex like you do with Verity it's handled for you. You need to set up

RE: Storyboarding software?

2002-03-13 Thread John Beynon
Adalon from Synthis.com is pretty good too for eBusiness process flow. Jb. -Original Message- From: Luca Unti [mailto:[EMAIL PROTECTED]] Sent: 13 March 2002 16:55 To: CF-Talk Subject: Re: Storyboarding software? mindmapping software like mindmapper can be useful too hth

RE: Date Differences in SQL..

2002-03-13 Thread Angel Stewart
No..nothing that simple. The statement still does not work.. I hate errors like these. Without the AS AGE thing, the statement works fine, so I know the error lies with that bit of code. Any other ideas anyone? -Gel -Original Message- From: Angel Stewart [mailto:[EMAIL PROTECTED]]

RE: KILL THE BROADVIEW!

2002-03-13 Thread Brunt, Michael
Yes perhaps they should try Spectra. Mike Brunt Sempra Energy 213.244.5226 A complex system that does not work is invariably found to have evolved from a simpler system that worked just fine. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday,

file/mime types

2002-03-13 Thread Paul Giesenhagen
Does anyone have a good link to a listing of valid file mime types that I could use? I need it for cffile .. need to find the right syntax to include audio and video Thanks Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector - Commerce Builder v2.0

Re: ReplaceList() with a different delimiter?

2002-03-13 Thread Tony Schreiber
Use ListChangeDelims() first... I never really noticed this until now, but ReplaceList() doesn't accept an optional delimiters argument, as do the list functions. (Alright, so technically it's not a list function since it doesn't operate on a list). In my lists I need to have strings that

RE: Sprectra (WAS: KILL THE BROADVIEW!)

2002-03-13 Thread Kevin Miller
Isn't Spectra dead? [EMAIL PROTECTED] 03/13/02 09:11AM Yes perhaps they should try Spectra. Mike Brunt Sempra Energy 213.244.5226 A complex system that does not work is invariably found to have evolved from a simpler system that worked just fine. -Original Message- From: [EMAIL

Re: file/mime types

2002-03-13 Thread savan . thongvanh
if you're using windows the best place to look for file types is the registry. particularly since the types in the registry are ones that are supported on your computer :) Paul Giesenhagen [EMAIL PROTECTED] on 03/13/2002 11:13:58 AM Please respond to [EMAIL PROTECTED] To: CF-Talk [EMAIL

Re: String replace...

2002-03-13 Thread phumes1
Hi, The URL.filename below outputs d:\books\deleteme\test cfset URL.filename = ListDeleteAt(URL.filename, ListLen(URL.filename, \),\) I would like to replace the above so my output result is d:\books\deleteme I need to strip out anything after the last \

RE: Sprectra (WAS: KILL THE BROADVIEW!)

2002-03-13 Thread Jeffry Houser
Sort of. There aren't any new versions of it coming out; but it is still available. I think it was said that it was left to the 'community source' model of support? I guess that means that it's not dead, they just stopped feeding it. At 11:15 AM 3/13/2002 -0600, you wrote: Isn't Spectra

RE: Sprectra (WAS: KILL THE BROADVIEW!)

2002-03-13 Thread John Wilker
I don't think so much dead as just no longer being added to. I'm sure MACR supports it still but 1.51 or something was the last feature release. I think that's it, right? :) J. John Wilker Web Applications Consultant, and Author Macromedia Certified ColdFusion Developer President/Founder,

Re: RE: KILL THE BROADVIEW!

2002-03-13 Thread ksuh
Hey, we want an improvement in speed :) - Original Message - From: Brunt, Michael [EMAIL PROTECTED] Date: Wednesday, March 13, 2002 10:11 am Subject: RE: KILL THE BROADVIEW! Yes perhaps they should try Spectra. Mike Brunt Sempra Energy 213.244.5226 A complex system that does

RE: Fusebox pros and cons

2002-03-13 Thread Cary Gordon
Based on his contributions to this list, I'd guess that there are about a dozen... At 09:11 AM 3/12/2002 -0800, you wrote: --- snip --- it is true that any well written CF Application should be logical and structured but there aren't that many Dave Watt's et al in the real CF World, My

Re: Storyboarding software? - CLARIFICATION

2002-03-13 Thread Matt Kornguth
Should have mentioned We use Visio for navigation, site overview type of storyboarding. Was thinking more along the lines of page layout/mockup (guess I'm thinking of more specific page level storyboarding, i.e., left nav has these items, ad copy here, articles here, that type of thing).

RE: SQL Statement question

2002-03-13 Thread Chip Harlan
you can't really, since adding the ID field will un-distinct two rows. I'd add a field to the query just as a flag, and then cfloop through the query, and if two entries are the same, set the flag to 1. Then you can do a query of a query to get the unflagged entries, something like: cfquery

CFPOP unknown exception condition

2002-03-13 Thread Owen Leonard
I know I've asked this before, but I'm desperate for a solution and need any help I can get. Folks are frequently getting this error when they use our web-based email: Error Diagnostic Information unknown exception condition unknown error while executing a tag. The log of the error in the

RE: Sprectra (WAS: KILL THE BROADVIEW!)

2002-03-13 Thread Brunt, Michael
You're right, here is the URL. http://spectrasource.macromedia.com Mike Brunt Sempra Energy 213.244.5226 A complex system that does not work is invariably found to have evolved from a simpler system that worked just fine. -Original Message- From: Jeffry Houser [mailto:[EMAIL

RE: KILL THE BROADVIEW!

2002-03-13 Thread VAN VLIET, SCOTT E (SBCSI)
BroadVision Feedback: http://www.broadvision.com/OneToOne/SessionMgr/company/contact_us.jsp?BV_Ses sionID=0976102180.1016042337BV_EngineID=cccdadcehhfiikkcefecefedghh dfjl.0channelRuleset=Company+ChannelschannelName=Contact+UsprogramName=Br

RE: Sprectra (WAS: KILL THE BROADVIEW!)

2002-03-13 Thread Robert Everland
Too bad they won't give it out for free. If you have a product that you won't support and you don't sell it anymore, why not give it away? I would love a free copy of Spectra, heck that would let me give some support to the spectra source site. Robert Everland III Dixon Ticonderoga Web Developer

Re: A Verity SQL Combo Question - Can this be sped up?

2002-03-13 Thread Al Musella, DPM
Not sure if this would apply to your case, but what I do in a situation like that is to create a custom field with the information that you want displayed.. and add that to the verity index ..for example, cfoutput query=listAll cfset title2 = title ' - ' dateformat(pubdate,

RE: CFPOP unknown exception condition

2002-03-13 Thread Plane, Nathaniel
CFPOP has been flakey since its conception. For some people it seems to work perfectly where as others have nothing but problems with it. Attachments and funky MIME types in a message can do this, if attachments aren't a huge concern in your application I would sudgest turning them off. You may

Re: Storyboarding software? - CLARIFICATION

2002-03-13 Thread Tony Schreiber
Someone posted an app recently that might do what you need, it's like a site/outline skeleton thing... aha, it's called wireframe. I have it downloaded but I can't remember where I got it from. Should have mentioned We use Visio for navigation, site overview type of storyboarding. Was

RE: Storyboarding software? - CLARIFICATION

2002-03-13 Thread John Beynon
http://sourceforge.net/projects/wireframetool/ It's inbuilt into Adalon (www.synthis.com) for a trial download. Jb. -Original Message- From: Tony Schreiber [mailto:[EMAIL PROTECTED]] Sent: 13 March 2002 18:22 To: CF-Talk Subject: Re: Storyboarding software? - CLARIFICATION

CFGRID problem driving me nuts

2002-03-13 Thread David Green
Hello List Having problem with all my cfgrids. They worked before under cf 4.5, I think they broke under cf5 but not sure exactly when the quit working. It appears that am not getting a form fields from the grids but I do get the value from the input box text. on the action page I get

Re: String replace...

2002-03-13 Thread Mike Bruce
How about cfset filename = d:\books\deleteme\test cfset filename = #reverse(listdeleteat(reverse(filename),1,\))# cfoutput#filename#/cfoutput Michael Bruce - Original Message - From: phumes1 [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, March 13, 2002 12:26 PM

RE: Fusebox pros and cons

2002-03-13 Thread Jeffry Houser
ROTFL! Not everyone can know everything. Just because someone doesn't know everything doesn't mean that are creating bad or malformed applications. I bet even Dave doesn't know everything. ( That's why he hired Simon, right? ) At 09:30 AM 3/13/2002 -0800, you wrote: Based on his

CFTREE becomes invisible in IE 6.0

2002-03-13 Thread laszlo
I have a CFTREE (CF 4.51), works fine (kind of). When I load the page in IE 6.0, it looks OK, but as soon as I move the mouse over it, it beomes invisible. I can still click on the nodes, and the scrollbars, the they become visible again. Any ideas??? TIA, laszlo

Re: SCRIPT

2002-03-13 Thread phumes1
I have the below code in one of my templates. Once the code below executes and takes me back to the previous page how can I do a refresh? window.history.back(refresh); ? script language=JavaScript type=text/javascript !-- window.history.back(); //-- /script

Re: Sprectra (WAS: KILL THE BROADVIEW!)

2002-03-13 Thread Sharon Diorio
They don't give it away for free, because believe it or not, there are still some people willing to pay for it. Sharon - Original Message - From: Robert Everland [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, March 13, 2002 12:58 PM Subject: RE: Sprectra (WAS: KILL

RE: popUp Window trouble

2002-03-13 Thread Brian Scandale
Thanks Conrad, I'll see what this info might do to help. One thing you mention I don't want to do. I don't want the child window to close when the parent window access a different URL. The info in the child window can still be necessary to the user. As far as different definitions goes...

PHP equivalents of CF list functions

2002-03-13 Thread stas
I need to do a bit of PHP development, and I can't believe how much I'm spoiled by CF. I have to roll my own for every little thing. Could someone post PHP alternatives to functions such as: listcontains find valuelist Anything else that comes to mind. Thanks!

RE: PHP equivalents of CF list functions

2002-03-13 Thread Clint Tredway
just go to www.php.net and enter those in the function look up. -Original Message- From: stas [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 13, 2002 1:51 PM To: CF-Talk Subject: PHP equivalents of CF list functions I need to do a bit of PHP development, and I can't believe how much

Question About Query Caching

2002-03-13 Thread Owens, Howard
Let's say I have a query that is cached ... Let's say a user adds a new item to the table called in the query. Now we all know that so long as the query is cached, the new item won't show up in the output. But what if I want it to show up right away? Is there a way to dump the current cache

Re: Sprectra (WAS: KILL THE BROADVIEW!)

2002-03-13 Thread Neil Clark
Hi Guys and Gals., Contrary to popular belief, Macromedia Spectra will be having one more release in the future - 1.5.2. This will allow it to run on the next release of ColdFusion - ColdFusion MX(Neo).Neo will allow you to still use the core features of the Spectra model via ColdFusion

RE: Question About Query Caching

2002-03-13 Thread Chip Griffin
You can run the query with the cache set to 0 minutes: cachedwithin= #CreateTimeSpan(0,0,0,0)# -Original Message- But what if I want it to show up right away? Is there a way to dump the current cache as soon as a new item is inserted, so that the query is re-cached the next time it is

RE: Question About Query Caching

2002-03-13 Thread John Wilker
My idea would be to put a query with the same name on the page that updates the database. The new query will overwrite the cached one as long as the SQL is different, then the first time some one runs the real query it will re cache that one. J. John Wilker Web Applications Consultant, and

RE: popUp Window trouble

2002-03-13 Thread Conrad Classen
OK, then use 2 var's to hold ref's to both windows, each with their own Function call. -Original Message- From: Brian Scandale [mailto:[EMAIL PROTECTED]] Sent: 13 March 2002 09:17 PM To: CF-Talk Subject: RE: popUp Window trouble Thanks Conrad, I'll see what this info might do to

Re: KILL THE BROADVIEW!

2002-03-13 Thread John Dowdell
At 8:57 AM 3/13/2, [EMAIL PROTECTED] wrote: Arrg!! Someone please rewrite the Macromedia site in something besides Broadview!! It is so stinking slow! I can't even view the darn CF upgrade pricing list without waiting for 2 minutes Sorry for the current delay. If anything,

Re: PHP equivalents of CF list functions

2002-03-13 Thread Douglas Brown
For php, I believe that you will need to use the list function in conjunction with a sort function. Look up sort in the help file. there is a new help file on php.net that is done as a .chm Success is a journey, not a destination!! Doug Brown - Original Message - From: Clint

Re: Sprectra (WAS: KILL THE BROADVIEW!)

2002-03-13 Thread Rick Walters
I don't think anyone doubted there would be patch releases to Spectra. If I have been reading this thread correctly, those of us who do not already have Spectra don't plan to buy a copy anytime soon. However, if it were handed out to developers, we would certainly help support it. :) Good

Re: CFMAIL getting stuck in the SPOOL directory

2002-03-13 Thread one
Hi, I'm having problems with the top email in the SPOOL directory blocking all other emails in that directory. So if there are 100 emails, 99 are being blocked because the top one is not processing. Then I have to switch off the CF server, and delete the top file, restart the server only to find

RE: CFMAIL getting stuck in the SPOOL directory

2002-03-13 Thread John Wilker
The one file is probably 0k in size right? It's a common bug in ColdFusion. You could put a script in place that will look in the spool dir for 0k files, then stop the service and delete the file real quick, then restart the service. Not ideal but the service should only be off a second. J.

Re: Sprectra (WAS: KILL THE BROADVIEW!)

2002-03-13 Thread Neil Clark
You can get the free version on the disk as I said! - Original Message - From: Rick Walters [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, March 13, 2002 8:17 PM Subject: Re: Sprectra (WAS: KILL THE BROADVIEW!) I don't think anyone doubted there would be patch

Contracts

2002-03-13 Thread Brian Thornton
Question: I use a scope of work for starting contract work. What does everyone else use? Thanks, Brian __ Dedicated Windows 2000 Server PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER Instant Activation · $99/Month ·

Re: Contracts

2002-03-13 Thread Jeffry Houser
[EMAIL PROTECTED] At 04:01 PM 3/13/2002 -0500, you wrote: Question: I use a scope of work for starting contract work. What does everyone else use? Thanks, Brian __ Dedicated Windows 2000 Server PIII 800 / 256 MB RAM / 40

SQL: Truncating Logs

2002-03-13 Thread Duane Boudreau
Does anyone know the TSQL for truncating a transaction log? Mind sharing? TIA, Duane __ Dedicated Windows 2000 Server PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER Instant Activation · $99/Month · Free Setup

Re: CFMAIL getting stuck in the SPOOL directory

2002-03-13 Thread one
Actually its not 0KB in size, its 22KB and when I try to delete it, I get a msg that says Cannot delete 11F0: There has been a sharing violation. The source or destination file may be in use. Any idea what could be causing this? Thanks. - Original Message - From: John Wilker [EMAIL

RE: CFMAIL getting stuck in the SPOOL directory

2002-03-13 Thread Dan Phillips
You will have to stop the CF application service, then you can delete the file. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 13, 2002 4:19 PM To: CF-Talk Subject: Re: CFMAIL getting stuck in the SPOOL directory Actually its not 0KB in

RE: CFMAIL getting stuck in the SPOOL directory

2002-03-13 Thread John Wilker
That is weird. But Dan is right, you'll still need to stop the service to delete the file. Before you do though either copy it somewhere or open it, and see if you can see what is wrong with it? If it's 22k then it should be sent or moved to the error directory. J. John Wilker Web

Re: CFMAIL getting stuck in the SPOOL directory

2002-03-13 Thread one
:) This is what I've been doing. Unfortunately its not solving the root problem, and since I have no ideal why one email would get stuck, its tuff to find a solution. Any idea what might cause one email to block the whole list? Thanks. - Original Message - From: John Wilker [EMAIL

RE: Question About Query Caching

2002-03-13 Thread Bud
On 3/13/02, John Wilker penned: My idea would be to put a query with the same name on the page that updates the database. The new query will overwrite the cached one as long as the SQL is different, then the first time some one runs the real query it will re cache that one. You mean as long as

cached query

2002-03-13 Thread FARRAH NG
hi all, i have built a website for a client where the home page is totally dynamics ( the cfm file has almost 10 queries accessing 10 different tables in order to populate the page). Now the client is complaining about the slow load time. they told me they don't need to have the home page

RE: cached query

2002-03-13 Thread John Beynon
Immediately after you've updated the data, use a query with cachedwithin=#createtimespan(0,0,0,0)# to update the data...then it will be recached on the home page using the 2 days or whatever setting you want. John. -Original Message- From: FARRAH NG [mailto:[EMAIL PROTECTED]] Sent:

RE: Question About Query Caching

2002-03-13 Thread John Wilker
LOL. Oops, yeah I sure did. My bad. J. John Wilker Web Applications Consultant, and Author Macromedia Certified ColdFusion Developer President/Founder, Inland Empire CFUG. www.red-omega.com more people are killed by donkeys than by airplane crashes each year -Original Message-

Re: CFGRID problem driving me nuts

2002-03-13 Thread JamesEdmunds
Can you show me the action page? --James Edmunds David Green wrote: Hello List Having problem with all my cfgrids. They worked before under cf 4.5, I think they broke under cf5 but not sure exactly when the quit working. It appears that am not getting a form fields from the grids but

Slighlty OT: Exporting my Code Sweeper Settings

2002-03-13 Thread t nelson
Hi All, Sorry for the OT post but, I wanted to know if there is a way to export my Code Sweeper settings from CF Studio? I spent a while getting my settings just the way I wanted them on my Home PC but now I would like to take those with me to use at work. Sure I could sit at my PC at work

  1   2   >