Re: Anyone from Orlando not in the CFUG?

2002-03-28 Thread Stephen Moretti
I feel compelled to correct you on this. The first ColdFusion User Group was (and is) the DC CFUG, founded by Steve Drucker and me in 1996. As for the largest, I have no idea. You may have meant the largest in the UK, but as a point of pride, I couldn't let the statement stand as it is.

UDF Recursion Problems

2002-03-28 Thread Scott Van Vliet
Hey All: I have created a UDF that will recurse over a query containing Categories that are related to each other based on a column reference to a parent. I got the necessary logic down to do this, however, my UDF is not working. Once the UDF calls itself, the first call is lost. Here is

Re: Strange QueryString

2002-03-28 Thread Stephen Moretti
Costas, Anyone ever seen this before: Template: G:\Inetpub\wwwroot\worp\AddNote.cfm Query String: name=notes¬etypeid=¬eclassid=doctypeid=4doctypevalue=9385refresh=0.857234 4947703243 This is directly from the error code. I can't even type a ¬! I've never seen anything like this. And

Re: UDF Recursion Problems

2002-03-28 Thread Jochem van Dieten
Scott Van Vliet wrote: Hey All: I have created a UDF that will recurse over a query containing Categories that are related to each other based on a column reference to a parent. I got the necessary logic down to do this, however, my UDF is not working. Once the UDF calls itself, the

Re: UDF Recursion Problems

2002-03-28 Thread Stephen Moretti
Scott, I created the following UDF to do this, however, it drops the original call once the recurse beings, and only returns Nissan -- 2000, then stops: The reason why the code works in a custom tag and not in a UDF is that as a custom tag the variables are by default local to each call to

Re: CF and Input Type=file

2002-03-28 Thread Stephen Moretti
Mike, I have a layout issue here. Is there a way when you use input type=file that you can get the browse button to appear below the form element as apposed to the right hand side? Kind of an odd question, but it would save me a ton of layout work. I'm afraid you can't change the word on

Re: MySQL error with myODBC drivers

2002-03-28 Thread Stephen Moretti
Neil, update productsettings set vchvalue = '#Evaluate(FLD_ FTVAR_SETTINGSTRINGTMP)#' where vchsettingname = '#vchsettingname#' and iforumid = #FORUMID# What's the error you're getting? Regards Stephen __ Structure

Anyone for a spot of VXML

2002-03-28 Thread Jerry Staple
Hi, I have started top dabble in voice driven apps integrated with Cf.This is not a problem the problem is I am currently using voicegenie (usa) to process the vxml through their vxml gateway (great service). The app runs on our own servers but I dial up a number to access the app, because

RE: Anyone for a spot of VXML

2002-03-28 Thread Rich Wild
Jerry, BeVocal have a UK gateway (actually dials up over the pond but you get charged UK rates) check it: http://cafe.bevocal.com/ I used them for some trial apps and it worked quite well. -Original Message- From: Jerry Staple [mailto:[EMAIL PROTECTED]] Sent: 28 March 2002 09:32

Re: CF and Input Type=file

2002-03-28 Thread Gyrus
I have a layout issue here. Is there a way when you use input type=file that you can get the browse button to appear below the form element as apposed to the right hand side? The best you can do is assign a class to the tag, so that it at least looks pretty. ;o) I'm not sure you can even

RE: Anyone for a spot of VXML

2002-03-28 Thread Jerry Staple
Cheers Rich -Original Message- From: Rich Wild [mailto:[EMAIL PROTECTED]] Sent: 28 March 2002 10:20 To: CF-Talk Subject: RE: Anyone for a spot of VXML Jerry, BeVocal have a UK gateway (actually dials up over the pond but you get charged UK rates) check it: http://cafe.bevocal.com/

RE: MySQL error with myODBC drivers

2002-03-28 Thread Neil Clark =TMM=
Hi Stephen. Turns out that mySQL was freaking with \ in a fieldname : I have to enter a path i.e. c:\blah\blah I had to escape the \ to get it work. I think it is a problem with the ODBC drivers as it is a pretty straightforward SQL action. Very strange indeed. Neil

preventing two or more users editing a page?

2002-03-28 Thread Bimal Shah
We wish to prevent two or more users from editing a page (at the same time) - so for example, if person A is editing something, person B and C cannot edit it. This is for a admin backoffice - the page in question would be a form where users could modify content. When person A has finished

RE: CF-Talk-list V1 #222

2002-03-28 Thread ccolon
Thank you for the email. I am out of the office until Monday April 1st. I will receive your email when I return and respond to you at that time. If you have questions while I am out, please feel free to contact Janelle Schneider in our Client Services Department. She can be reached by

DB info on files in Verity search results

2002-03-28 Thread Gyrus
I imagine I'm not alone in having information (filesize, filetype, description, custom title, upload date, etc.) about files uploaded to a site stored in a DB table. I'm creating a search interface, and I'm just wondering if there's any simple way in CF of including information from the DB about

CFHTTP

2002-03-28 Thread romulogomes
I have to run a shell script in a Linux server(I have all the permissions) using a cold fusion page but my cold fusion is runing in a Windows NT. Can i use cfhttp type=POST (CGI).? If yes how can i get the output(text printed on the scream) into a variable?

Re: UDF Recursion Problems

2002-03-28 Thread Jeffry Houser
Looking at it... The loops look right, even though you are using different types of loops (A For vs collection). I bet the person who mentioned scopes is right on. Complex structures pass by reference. Simple structures pass by value. I wonder if it is seeing: query.AC_ID[i] as a simple

RE: UDF Recursion Problems

2002-03-28 Thread Raymond Camden
But as Jochem says, why reinvent the wheel Go looking the Devex on the MM site or there's Raymond Camden's library site at Just to make it clear, the site is run by Rob Brooks-Bilson _and_ me, not just myself. Everything that works - I did. Everything broken is his fault. ;)

Re: UDF Recursion Problems

2002-03-28 Thread Stephen Moretti
But as Jochem says, why reinvent the wheel Go looking the Devex on the MM site or there's Raymond Camden's library site at Just to make it clear, the site is run by Rob Brooks-Bilson _and_ me, not just myself. Everything that works - I did. Everything broken is his fault. ;)

RE: UDF Recursion Problems

2002-03-28 Thread Raymond Camden
Your UDF has one simple problem, and it's a problem I see _many_ users do. You MUST always remember to var scope your variables. In this case, you forgot to var the variable, I. So, when you call recurse the second time, i is no longer reset to 1. To fix this, simply add: var i = 1; When I did

RE: preventing two or more users editing a page?

2002-03-28 Thread Jeff Beer
Why not simply require manual check out and check in? -Original Message- From: Bimal Shah [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 28, 2002 6:08 AM To: CF-Talk Subject: preventing two or more users editing a page? We wish to prevent two or more users from editing a page (at the

Re: preventing two or more users editing a page?

2002-03-28 Thread David Schmidt
You can read descriptions of this below, but here it is... 1) create an application variable containing two elements. a) Page being edited (cgi.script_name) b) Person that is making the edit. 2) set the application variable to timeout at about 10 minutes. We want to prevent person A

UDF Recursion Problems

2002-03-28 Thread Rob Brooks-Bilson
Scott, You didn't VAR your variables - which is causing the value to be overwritten. In UDFs, you must always VAR temporary or variables that are local to the UDF. Add this as the first line to your UDF: var i=1; -Rob snip I created the following UDF to do this, however, it drops the

Verity Spider Weirdness -- Cannot Purge

2002-03-28 Thread jon
I'm trying to create and index a collection using the search spider in CF 5. In general, I've had pretty good luck with this in the past, but now it's giving me an error when I try to purge the collection. It says: (ind002006) VDK: Error E3-0326 (Vdk Info): Collection

Error 0x80040707 ISRT.GetPorts

2002-03-28 Thread Tony_Petruzzi
Ran into this error during the CF 5 install and thought that it might help someone. Fix: Stop the Print Spooler serive. Anthony Petruzzi Webmaster 954-321-4703 http://www.sheriff.org __ Get the mailserver that powers this list

RE: UDF Recursion Problems

2002-03-28 Thread Scott Van Vliet
I have a lot more code to run that just writeOutput(). Also, this is my first time building an app on CF 5 (I was trying to wait for NEO's release, but just couldn't last), and I wanted to get some first hand experience with UDFs. What's wrong with that? -Original Message- From:

RE: UDF Recursion Problems

2002-03-28 Thread Scott Van Vliet
It works perfectly :) Thanks to all who helped. -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 28, 2002 5:18 AM To: CF-Talk Subject: RE: UDF Recursion Problems But as Jochem says, why reinvent the wheel Go looking the Devex on the MM

Re: Verity Spider Weirdness -- Cannot Purge

2002-03-28 Thread Jamie Jackson
You might try stopping the server, deleting the that collection's folder in \CFUSION\Verity\Collections, restart the server, and recreate the collection from your template or the cf admin. Jamie On Thu, 28 Mar 2002 09:28:10 -0500, in cf-talk you wrote: I'm trying to create and index a

RE: CF and EBAY

2002-03-28 Thread LANCASTER, STEVEN M. (JSC-OL) (BAR)
Me too!! Me too!! Steven Lancaster Barrios Technology NASA/JSC 281-244-2444 (voice) [EMAIL PROTECTED] -Original Message- From: Eric J Hoffman [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 28, 2002 9:40 AM To: CF-Talk Subject: RE: CF and EBAY I'd be interested as well. Thanks.

RE: Office on Solaris?

2002-03-28 Thread Robert Everland
I would say no on this one. Office is just barely starting to be able to run on Linux, which would be Solaris's redheaded stepson cousin. Maybe if they can get it to run on Linux it could work on Solaris one day. Then to be able to use com objects, I don't know about that. That may be some

Office on Solaris?

2002-03-28 Thread Dave Carabetta
I'm wondering if it's possible to do exports to Excel, Word, etc. on Solaris? I know that Office has to be installed on the server to do this kind of stuff, but do COM objects, etc. work on Solaris? Is there an Office for Solaris to begin with? I don't know much about Solaris, and I've

RE: Office on Solaris?

2002-03-28 Thread Neil Clark =TMM=
Isn't StarOffice - www.staroffice.com a Solaris application suite much like MS Office? Neil Team Macromedia __ Get the mailserver that powers this list at http://www.coolfusion.com FAQ:

RE: Office on Solaris?

2002-03-28 Thread LANCASTER, STEVEN M. (JSC-OL) (BAR)
You can do exports to Excel and Word on Solaris. We do it and we do not have Office setup on the server. You can create or I know there are some custom tags out there. Once you export it opens Excel or Word on there desktop. That is one way of doing it. Steven Lancaster Barrios Technology

Hypothetical SQL question

2002-03-28 Thread Cantrell, Adam
Hypothetical SQL question: I have a table called PEOPLE and a table called GRADES. I'd like to return a list of people and all of their grades and then output the results in a cfoutput, grouping by peopleID. Ok, that's easy enough, but what if I only want to return people that have an A as one

Announcement: New Flash MX component

2002-03-28 Thread Dave Watts
This is a little OT, but I'm very excited to be able to announce the introduction of a new Flash MX component. Everyone's been hearing from MM about how Flash MX will save the world; here's a little demonstration. DaVinci is a component that can be used by itself, or within a larger Flash

RE: Hypothetical SQL question

2002-03-28 Thread LANCASTER, STEVEN M. (JSC-OL) (BAR)
Hope this helps :) cfset goodgrade = A CFQUERY name=getgradeA datasource=datasource Select Distinct people.people, grades.grades FROMgrades, people Where people.people_id = grades.people_id AND grades.grades = '#goodgrade#'

Re: Office on Solaris?

2002-03-28 Thread Jon Hall
You beat me to it...I love Star Office/Open Office. Just to add a little info, Star Office is no longer going to be free, but the open source version, Open Office will remain free. http://www.openoffice.org jon - Original Message - From: Neil Clark =TMM= [EMAIL PROTECTED] To: CF-Talk

Re: Announcement: New Flash MX component

2002-03-28 Thread Douglas Brown
Dave, I checked out the drawing tool demo, and have just one question. Would it be possible to keep the focus on the drawing tool selected after you have release the mouse button? It would be better dont you think, if you wanted to continue to draw other elements with that tool. Right now once

Re: Hypothetical SQL question

2002-03-28 Thread BEN MORRIS
I have done a similar query for reporting purposes that took a very long time to run, but worked. Something like: SELECT a.*, b.* FROM People a, Grades b WHERE a.PeopleID = b.PeopleID AND a.PeopleID IN (SELECT c.PeopleID FROM People c, Grades d WHERE c.PeopleID = d.PeopleID AND d.Grade

Re: Hypothetical SQL question

2002-03-28 Thread Jamie Jackson
select * from people, grades where people.id = grades.peopleID and people.id in ( select people.id from people, grades where people.id = grades.peopleID and grades.grade = 'a' ) Something like that? May have screwed up something in there, but that's how

RE: Hypothetical SQL question

2002-03-28 Thread Matthew R. Small
Select people.peopleid, grades.grade From people, grades Where grades.peopleid = people.peopleid and People.peopleid in (select grades.peopleid from grades where grades.grade= 'A') How about something like that? - Matt Small -Original Message- From: Cantrell, Adam

RE: Hypothetical SQL question

2002-03-28 Thread Cantrell, Adam
That's what I have right now, but that won't return the other grades. It will show the people that have A's, but it won't return their B's C's and D's. I think it's an outer join of some sort, but I haven't been able to get it to work with my conditions. Adam. -Original Message-

RE: Announcement: New Flash MX component

2002-03-28 Thread Dave Watts
I checked out the drawing tool demo, and have just one question. Would it be possible to keep the focus on the drawing tool selected after you have release the mouse button? It would be better dont you think, if you wanted to continue to draw other elements with that tool. Right now

RE: Hypothetical SQL question

2002-03-28 Thread Shawn Kernes
You can do a post filter on a group by clause by adding a having clause to your select. BUT it doesn't seem like you would wand to group results by peopleID since you would not be returning each grade associated with a user, you would (at best) only be able to return the ave grade for that

RE: Hypothetical SQL question

2002-03-28 Thread Andy Ewings
Almosttry select p.*, g.* from people p INNER JOIN grades g ON (p.id = g.peopleid) where p.id IN (select p.id from people p INNER JOIN grades g ON (p.id = g.peopleid) where g.grade = 'a') -Original Message- From: Jamie

RE: Hypothetical SQL question

2002-03-28 Thread Cantrell, Adam
That was awesome... Jamie, Anthony, Matthew, Shawn, Andy, Steven, anyone else - you guys rule. I got that sucker working like pie! Thanks again. Adam. -Original Message- From: Jamie Jackson [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 28, 2002 10:48 AM To: CF-Talk Subject: Re:

Complex List Delimiter

2002-03-28 Thread Wallick, Mike
Quick question for you gurus out there I want to use a text delimiter for my content that's in a database. I want to use [pagebreak] as the delimiter. In php, I would use: // Split the text into an array of pages $textarray = split(\[pagebreak], $content); However, in ColdFusion,

RE: Announcement: New Flash MX component

2002-03-28 Thread Shawn Grover
Cool Tool Dave! Showed it to a coworker, and his comment was be nice if you could do something like this for an MPEG file. But, I can see lots of places this can come in handy. Shawn Grover -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 28, 2002

Re: Announcement: New Flash MX component

2002-03-28 Thread Bryan Stevenson
Hey Dave, Pretty cool stuff. I can already see the project management and collaboration tool possibilities. I did have trouble trying to cut or delete a filled box. I made a filled box...clicked on it to select itselected either cut or delete from the edit menuno worky :-( (but

RE: Announcement: New Flash MX component

2002-03-28 Thread VAN VLIET, SCOTT E (SBCSI)
I can't get to the site :( Our firewall is blocking the domain because, if I recall correctly, there was a virus called DaVinci, and anything related to that is being blocked! Errr.. -- SCOTT VAN VLIET SENIOR ANALYST SBC SERVICES, INC Tel: 858.886.3878 Fax: 858.653.6763 Email: [EMAIL

Session variables dropping

2002-03-28 Thread Lon Lentz
I have an intermittent problem with the session scoped variables being dropped going from the frame definition template to the template within the frame. This is occurring on IE 6. I remember hearing at one point that IE 6 handles each separate frame as a separate window. Are there any known

Forcing Query Refresh (Sometimes)

2002-03-28 Thread Smith, Daron [PA]
I want to cache a query for 99% of the time. However, when users update the data, I want to allow them an option to refresh the query and set that query as the newly cached one. I can't use the cachedwithin attribute, or at least not as I know of it, but I really could benefit from caching,

RE: Announcement: New Flash MX component

2002-03-28 Thread Tony_Petruzzi
site is not coming up. Anthony Petruzzi Webmaster 954-321-4703 http://www.sheriff.org -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 28, 2002 11:44 AM To: CF-Talk Subject: Announcement: New Flash MX component This is a little OT, but I'm very

Re: Announcement: New Flash MX component

2002-03-28 Thread Dick Applebaum
Dave I want to sign up for the beta... but can't find out where from the link you gave. Dick __ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

RE: Announcement: New Flash MX component

2002-03-28 Thread David DiPietro
Dave You should be excited about this. Great work. I hope this is just the tip of the Figleaf Flash MX component Iceberg. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 28, 2002 11:44 AM To: CF-Talk Subject: Announcement: New Flash MX component

Re: Complex List Delimiter

2002-03-28 Thread Marlon Moyer
try ListToArray(content,chr(12)) - Original Message - From: Wallick, Mike [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, March 28, 2002 10:54 AM Subject: Complex List Delimiter Quick question for you gurus out there I want to use a text delimiter for my content

Removing Characters

2002-03-28 Thread Paul Giesenhagen
I have a problem with WDDX and odd characters. If I have a form field that submits a title and has an appostrophe, such as Paul's example and then I am trying to stick it into a WDDX packet, I am getting an error. Is there anything you can do that will find all kinds of characters such as ',

CDONTS and ReplyTo

2002-03-28 Thread Dave Jones
Can someone tell me how to set the Reply-To header when using CDONTS in ColdFusion? These assignments do NOT work: cfset objNewMail.ReplyTo = [EMAIL PROTECTED] cfset objNewMail.Reply_To = [EMAIL PROTECTED] cfset objNewMail.Value(Reply-To) = [EMAIL PROTECTED] Thanks, Dave Jones NetEffect

CFUG in the Midwest?

2002-03-28 Thread Kurtenbach, Steve
Does anyone know of a CFUG in the Midwest? Steve Kurtenbach Bay Technology Group, Inc. [EMAIL PROTECTED] (main) 605 331 5058 (ext) 605 335 4434 (fax) 605 338 2768 Enhancing Productivity in the Workplace Through.. E-Business, Consulting, Outsourcing, and Training http://www.bay-tech-group.com

Re: Forcing Query Refresh (Sometimes)

2002-03-28 Thread Marlon Moyer
Use the cachedwithin attribute, then whenever the user updates the query, call the query without the cachedwithin attribute. Something like this: --somequery.cfm cfparam name=attributes.querytimeout default=#createtimespan(0,1,0,0)# cfquery .. cachedwithin=#attributes.querytimeout# ..

RE: Forcing Query Refresh (Sometimes)

2002-03-28 Thread VAN VLIET, SCOTT E (SBCSI)
You could have an Application variable that would flag your page whether or not updates to the database had been made. If changes were made, you could set the cachedwithin to zero. EXAMPLE: cfset cacheTime = CreateTimeSpan(1,0,0,0) cfif Application.DataHasBeenUpdated EQ 1 cfset

RE: CF and EBAY

2002-03-28 Thread Eric J Hoffman
I'd be interested as well. Thanks. Regards, Eric J. Hoffman Director of Internet Development DataStream Connexion, LLC (formerly Small Dog Design) -Original Message- From: Yager, Brian T Contractor/NCCIM [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 27, 2002 2:35 PM To: CF-Talk

RE: Announcement: New Flash MX component

2002-03-28 Thread Dave Watts
I want to sign up for the beta... but can't find out where from the link you gave. That's because it's a secret beta! Well, not really - just obtuse. Click on the Order link image at the top right of the page. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496

RE: Announcement: New Flash MX component

2002-03-28 Thread Dave Watts
site is not coming up. Could you provide more information? It's fine on our end. It is using host-header name support, which requires a browser that supports host-header naming. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444

RE: Complex List Delimiter

2002-03-28 Thread Shawn Grover
Don't know for sure but it appears the delimiter is acting as a regular expression. Square brakets in a regular expression indicate optional components. So, as a shot in the dark you could try \[pagebreak\] HTH Shawn Grover -Original Message- From: Wallick, Mike [mailto:[EMAIL

Re: CFUG in the Midwest?

2002-03-28 Thread Dave Hannum
Go to http://www.macromedia.com/v1/usergroups/ You'll find one there. Regards, Dave - Original Message - From: Kurtenbach, Steve [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, March 28, 2002 12:37 PM Subject: CFUG in the Midwest? Does anyone know of a CFUG in the

RE: Announcement: New Flash MX component

2002-03-28 Thread Brunt, Michael
Comes up fine for me, just FYI and looks really bloody exciting. Mike Brunt Sempra Energy 213.244.5226 Daddy, why doesn't this magnet pick up this floppy disk that says Emergency Repair Disk ? -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 28,

RE: Announcement: New Flash MX component

2002-03-28 Thread Dave Watts
I can't get to the site :( Our firewall is blocking the domain because, if I recall correctly, there was a virus called DaVinci, and anything related to that is being blocked! Here's a workaround URL: http://www.cfugorama.com/d%u0061vinci/ The %u0061 is the Unicode representation for a,

RE: CFUG in the Midwest?

2002-03-28 Thread Mark A. Kruger - CFG
I manage the Nebrask CFUG. There is also one in Chicago, Kansas City, Minneapolis, and Des Moines - how much do you want to travel? g -Original Message- From: Kurtenbach, Steve [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 28, 2002 11:38 AM To: CF-Talk Subject: CFUG in the Midwest?

RE: Removing Characters

2002-03-28 Thread Dave Watts
I have a problem with WDDX and odd characters. If I have a form field that submits a title and has an appostrophe, such as Paul's example and then I am trying to stick it into a WDDX packet, I am getting an error. Is there anything you can do that will find all kinds of characters

RE: MySQL error with myODBC drivers

2002-03-28 Thread Matt Robertson
That's a feature, not a bug ;D. mySQL uses the backslash character as its beginner for native escape sequences, which you can pretty much ignore on balance. http://www.mysql.com/doc/S/t/String_syntax.html So, as you've probably already figured out, you need to use \\ for a \ in your input. I

RE: Announcement: New Flash MX component

2002-03-28 Thread Duane Boudreau
Wow! Kudos to Fig! I could really have used this a couple of years ago on a project where dentists collaborated on dental xrays and needed to make notes. Would have been much nicer if they could have made notes directly on the image. At save time is it possible to pull the text out and store it

RE: CFHTTP

2002-03-28 Thread Dave Watts
I have to run a shell script in a Linux server(I have all the permissions) using a cold fusion page but my cold fusion is runing in a Windows NT. Can i use cfhttp type=POST (CGI).? If yes how can i get the output(text printed on the scream) into a variable? Probably not, since you said

Problems with MySql

2002-03-28 Thread CFTalk
Hello All, I have a question that I hope someone here can help me out with. The problem is that I have a stats program running in the background of every page. So when someone hits my website it insert a record in the mysql database. The problem start when the database is bigger then 1

RE: Announcement: New Flash MX component

2002-03-28 Thread Steve Drucker
Yes. -S -Original Message- From: Duane Boudreau [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 28, 2002 12:53 PM To: CF-Talk Subject: RE: Announcement: New Flash MX component Wow! Kudos to Fig! I could really have used this a couple of years ago on a project where

RE: Announcement: New Flash MX component

2002-03-28 Thread Dave Watts
At save time is it possible to pull the text out and store it in a db or xml packet and reload it next time the image is viewed? Yes, anything is possible! Seriously, though, it's a component, so you could certainly wrap it in a container that provides the behavior that you want. At this

RE: Announcement: New Flash MX component

2002-03-28 Thread Dave Watts
At save time is it possible to pull the text out and store it in a db or xml packet and reload it next time the image is viewed? Yes, anything is possible! Seriously, though, it's a component, so you could certainly wrap it in a container that provides the behavior that you

RE: preventing two or more users editing a page?

2002-03-28 Thread Robert Everland
You could always set up each section in the database with an allowed number of users. Then have your users log in. Once they are logged in they go to each section they want to edit. If someone who is logged in has already checked out that page then they can't edit it. There are tons of things you

RE: Problems with MySql

2002-03-28 Thread Mark A. Kruger - CFG
I know that the windows version of MySQL has a connection limit that the Linux version is not subject to. Perhaps there are other limitations as well. Have you considered moving your MySQL off to a linux box? -mk * you wrote ** .. I am using a

RE: CF and EBAY (code posted)

2002-03-28 Thread Tony Schreiber
Ok, here it is: http://galaga.technocraft.com/ebay/ Enjoy. I wrote it for internal use, so there is no UI to speak of... Sure. Let me put it up somewhere and y'all can wreak havoc with it. Can the rest of us see? Robert Everland III Dixon Ticonderoga Web Developer Extraordinaire

RE: date massaging

2002-03-28 Thread Jerry Johnson
Even if CF supported dates without separators, you are setting numdate wrong anyway. CFSET numdate=03042002 You really mean to set CFSET numdate=03042002 it is the string you want, not a number representing 3 million and change. Of course you really want something like CFSET

cfset/cfstoredproc

2002-03-28 Thread Janine Jakim
This is somewhat of a repost from the other day but haven't gotten any feedback- since I don't think I worded my problem very well. I am moving some of my work from cfquery to storedprocedures- the problem is the formatting when I use cfset with a stored procedures- they don't react the same way

OT: IIS 5 WWW-Server and writing of logfiles

2002-03-28 Thread cf-talk
Hi list, is there a way to write under MS-IIS 5 (Win2000) with two virtual domains (One IP, via host-deader) in one (the same) log-file ? I haven't figured out, how to do it, since IIS is installing a new logfile when installing a new virtual domain. Thanks for your ideas. Uwe

RE: IIS 5 WWW-Server and writing of logfiles

2002-03-28 Thread Mark A. Kruger - CFG
Nope - I think not. No matter where you point your log file directory, IIS will create a subdirectory indexed to the order your domains have been created in (w3svc1-2-3 etc.). I doubt you are going to be able to change this - you could try hacking up the registry I suppose g. -Original

RE: cfset/cfstoredproc

2002-03-28 Thread Mark A. Kruger - CFG
Janine, I don't think I'm following your example. What's wrong with the second example? also, why do you need 2 queries? Why not a join? a join would give you columns of name , answer name, answer, name, answer name, answer ORder by name and make sure there is a PK ... then do this: cfoutput

RE: Announcement: New Flash MX component

2002-03-28 Thread Paul Wille
Stellar work, Fig Leaf. I'm looking forward to seeing this product develop! I will be signing up for the beta testing here shortly. :) --Paul Paul W. Wille [EMAIL PROTECTED] --- Certified Advanced Coldfusion 5 Developer

RE: Complex List Delimiter

2002-03-28 Thread Tony_Petruzzi
when you say pagebreak, are you talking about a new line? if so it would ce defined as #chr(13)##chr(10)#. Anthony Petruzzi Webmaster 954-321-4703 http://www.sheriff.org -Original Message- From: Wallick, Mike [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 28, 2002 11:54 AM To:

RE: Complex List Delimiter

2002-03-28 Thread Raymond Camden
Except bare in mind that when you pass multiple chars as a list delim, CF will treat _each_ as a list delim. So, if your text contains a stray chr(13) or chr(10), it will also split there. === Raymond Camden, Principal Spectra

Re: CFCOOKIE

2002-03-28 Thread phumes1
Hi, I'm using a custom tag the displays the groups assigned to a specific user which works fine. The code below is in my application.cfm file in my wwwroot. I can't seem to figure out when I set a cookie it only displays the last group of that user? When I run the code for the first time the

RE: IIS 5 WWW-Server and writing of logfiles

2002-03-28 Thread Christopher Olive
well, you can change the location of the logs when creating the virtual domains. point them at the same file. of course, you may run into some SERIOUS concurrency issues with two ISAPI processes writing to the file at the same time. as far as i've seen (YMMV, of course), the process holds

RE: Complex List Delimiter

2002-03-28 Thread Kevin Langevin
Actually, I think you have to use #chr(13)##chr(10)#, don't you? Kevin Langevin Flying Chimp Media 954-585-0999 [EMAIL PROTECTED] http://www.FlyingChimp.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 28, 2002 1:48 PM To: CF-Talk

OT: Oracle version of TOP

2002-03-28 Thread VAN VLIET, SCOTT E (SBCSI)
Sorry for the OT, but do any of you know the Oracle function for selecting the top n records. (ie. SELECT TOP 10 * FROM TABLE - in SQL). Thanks! Scott -- SCOTT VAN VLIET SENIOR ANALYST SBC SERVICES, INC Tel: 858.886.3878 Fax: 858.653.6763 Email: mailto:[EMAIL PROTECTED] [EMAIL

RE: Problems with IE Browsers on Mac OS

2002-03-28 Thread Neil Giarratana
We are having serious problems with Mac IE browsers as well. We're in the process of narrowing but it seems to follow the form variable problems. I'll keep you posted as we identify them. We are not having problems with ANY other browsers/platforms at this point. Regards, Neil -Original

RE: Complex List Delimiter

2002-03-28 Thread Wallick, Mike
No, actually I mean the text string [pagebreak]. I'm not talking ASCII characters. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 28, 2002 12:48 PM To: CF-Talk Subject: RE: Complex List Delimiter when you say pagebreak, are you talking about

RE: Problems with MySql

2002-03-28 Thread Matt Robertson
If you're trying to produce a results page by crunching thru a million records, then I expect that's the problem. I have a CF/mysql stats system on several sites - all on the same win2k server - and they run fine. The key for me was to archive old results for Week 1, 2, 3 etc. so the routine

RE: Problems with IE Browsers on Mac OS

2002-03-28 Thread BEN MORRIS
I think that some Mac browsers insert a line break in form fields, if I remember right it is only when enctype=multipart/form-data. The solution is just to trim every form field when you use it in your CF code. Neil Giarratana [EMAIL PROTECTED] 03/28/02 02:12PM We are having serious

Re: OT: Oracle version of TOP

2002-03-28 Thread Zac Spitzer
VAN VLIET, SCOTT E (SBCSI) wrote: Sorry for the OT, but do any of you know the Oracle function for selecting the top n records. (ie. SELECT TOP 10 * FROM TABLE - in SQL). Thanks! Scott rowcount is similar but my oracle skills have bit rotted :-( i think :-) z

RE: CFCOOKIE

2002-03-28 Thread Bryan Love
You are displaying the GROUP variable from inside a loop, but you are also setting the cookie inside the loop. So you are really doing this... contract [set cookie to contract] hrls [set cookie to hrls] supprt [set cookie to support] tax [set cookie to tax] Administrators [set cookie to

RE: CFWDDX example needed

2002-03-28 Thread Owens, Howard
Here's the code I've written so far in my attempt to use WDDX to pass around an array on a clustered server ... where I'm stuck is with getting the array out of the packet and appending to it. (more comments after the code): cfif NOT IsDefined('client.CartItems') !--- if no cart, create it and

RE: CFCOOKIE... more...

2002-03-28 Thread Bryan Love
try this: cfcookie name=SetGroups value=#valuelist(users.group)# expires=NEVER +---+ Bryan Love Macromedia Certified Professional Internet Application Developer Database Analyst Telecommunication Systems [EMAIL PROTECTED]

  1   2   >