Clean MX install

2004-01-12 Thread Smith, Matthew P -CONT(CSC)
Clean MX install I currently have CF 5.0 tied into IIS and MX using the standalone server on my development box at home.I would like to do a clean install of MX using IIS, removing both of the two previous installs.Besides the uninstall in Add/Remove programs, is there anything I need to do to

RE: CFHeader/CFContent woes.

2004-01-12 Thread Hugo Ahlenius
Shawn, You shouldn't see the filename in the URL bar, you are still making a request to that .cfm template. The filename comes into place when you open the file in word or when you click 'save', then that filename will be used (instead of the .cfm template). /Hugo

Re: What are ColdFusion developers doing with Web Services?

2004-01-12 Thread Thomas Chiverton
On Sunday 11 Jan 2004 22:34 pm, Ralph Ogden wrote: Hi all, Web Service protocols, I'd especially like to know if anyone in the ColdFusion development community is even doing much with Web Services. The next version of our asset tracking site will use a web service to ask an asset to report

RE: CFHeader/CFContent woes.

2004-01-12 Thread A.Little
Hi, Not sure if this will help but I noticed in my cfheader/cfcontent code that I had double quotes around the filename in the value attribute of the cfheader tageg value=inline; filename=myfilename.doc HTH Alex | -Original Message- | From: Shawn Grover [mailto:[EMAIL PROTECTED]

Re: OT Automated FTP Account Creation

2004-01-12 Thread Thomas Chiverton
On Friday 09 Jan 2004 16:30 pm, Greg Luce wrote: Well, I'm not sure what version of Redhat exactly we're running. Perhaps we can just talk theoretically. Is it something CF can call with a COM object? Are there FTP servers that have this functionality built-in? Not for Linux, as COM is a

Re: iText (was Re: CFDJ isn't exactly kicking bootay)

2004-01-12 Thread Thomas Chiverton
On Friday 09 Jan 2004 16:16 pm, Dave Carabetta wrote: scp usage: WinSCP provides a very nice GUI (either local/remote two pane, or single 'remote') to SCP / SFTP for Windows. -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749 834997 email: [EMAIL PROTECTED] BlueFinger Limited

Nested Tree SQL Sorting

2004-01-12 Thread Mike Connolly
I have a simple table with the following kind of structure: TYPES + TypeID + ParentID + Title This table stores a nested tree of types. I would like to know if it is possible from a single SQL query to return my types in the following order: TYPE 1 -- sub-type 1 -- sub-type 2 TYPE 2 --

RE: Nested Tree SQL Sorting

2004-01-12 Thread Pascal Peters
What DB? -Original Message- From: Mike Connolly [mailto:[EMAIL PROTECTED] Sent: maandag 12 januari 2004 12:38 To: CF-Talk Subject: Nested Tree SQL Sorting I have a simple table with the following kind of structure: TYPES + TypeID + ParentID + Title This table stores a nested tree of

RE: Nested Tree SQL Sorting

2004-01-12 Thread Mike Connolly
Sorry forgot to add I am using MySQL. -Original Message- From: Pascal Peters [mailto:[EMAIL PROTECTED] Sent: 12 January 2004 11:58 To: CF-Talk Subject: RE: Nested Tree SQL Sorting What DB? -Original Message- From: Mike Connolly [mailto:[EMAIL PROTECTED] Sent: maandag 12 januari

Two Destinations for POST form?

2004-01-12 Thread rob.stokes
Afternoon all, I trust you had a good weekend? I've got a form that sends a textarea message to an SMS service. This is simple enough, but I want to record the very same message (and who sent it) on the local site's database, meaning the form would have to POST to two destinations. Is this

RE: Two Destinations for POST form?

2004-01-12 Thread Mike Townend
Do an initial post to a local page, then insert these details.Then you can do a CFHTTP post to the SMS provider HTH -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, January 12, 2004 12:47 To: CF-Talk Subject: Two Destinations for POST form? Afternoon

Re: What are ColdFusion developers doing with Web Services?

2004-01-12 Thread Rick Root
Ralph Ogden wrote: In addition to seeking recommendations for training in Web Service protocols, I'd especially like to know if anyone in the ColdFusion development community is even doing much with Web Services. Ralph, We only recently started using web services here in my department at

Re: CF Webservice Flash MX

2004-01-12 Thread Thomas Chiverton
On Saturday 15 Nov 2003 21:23 pm, Taco Fleur wrote: Is it possible to for example have a Flash client talk to a CF Webservice (yes) and have the CF Webservice talk back to multiple Flash MX clients (?) Web services are client-push, so no, not unless the client polls the server every so often

RE: Nested Tree SQL Sorting

2004-01-12 Thread Pascal Peters
AFAIK MySQL can't do that -Original Message- From: Mike Connolly [mailto:[EMAIL PROTECTED] Sent: maandag 12 januari 2004 13:09 To: CF-Talk Subject: RE: Nested Tree SQL Sorting Sorry forgot to add I am using MySQL. -Original Message- From: Pascal Peters [mailto:[EMAIL PROTECTED]

ID key in SQL table

2004-01-12 Thread Robert Orlini
How do I create an SQL table and assign an Identity key in the syntax? What I have so far worked well with Access but will not work for SQL: Create table MTM (ID COUNTER not NULL PRIMARY KEY, Orderdate Char (50) not null, Institution Char (50) not null, Customer Char (50) not null) THX.

RE: ID key in SQL table

2004-01-12 Thread Pascal Peters
datatype for SQL-server is identity (not counter) -Original Message- From: Robert Orlini [mailto:[EMAIL PROTECTED] Sent: maandag 12 januari 2004 15:05 To: CF-Talk Subject: ID key in SQL table How do I create an SQL table and assign an Identity key in the syntax? What I have so far

RE: ID key in SQL table

2004-01-12 Thread Philip Arnold
ID COUNTER not NULL PRIMARY KEY IDENTITY, -Original Message- From: Robert Orlini [mailto:[EMAIL PROTECTED] Sent: Monday, January 12, 2004 9:05 AM To: CF-Talk Subject: ID key in SQL table How do I create an SQL table and assign an Identity key in the syntax? What I have so far

RE: ID key in SQL table

2004-01-12 Thread Philip Arnold
datatype for SQL-server is identity (not counter) Actually, the datatype is Int, it just has an Identity property [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: ID key in SQL table

2004-01-12 Thread Philip Arnold
ID COUNTER not NULL PRIMARY KEY IDENTITY, Oops ID int not NULL PRIMARY KEY IDENTITY, [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: ID key in SQL table

2004-01-12 Thread Robert Orlini
That did it! Thanks everyone for the reliable and quick help as usual. Robert O. -Original Message- From: Philip Arnold [mailto:[EMAIL PROTECTED] Sent: Monday, January 12, 2004 9:26 AM To: CF-Talk Subject: RE: ID key in SQL table ID COUNTER not NULL PRIMARY KEY IDENTITY, Oops ID

cfx_image help?

2004-01-12 Thread Pete Ruckelshaus
I'm using cfx_image on a project I'm working on (CF5/Win2K).It does what I need it to, more or less, but documentation is pretty spotty. One thing I want to change is thumbnail generation; is there any way to make the auto-generated thumbnails NOT have the beveled edge effect, and also is

RE: cfx_image help?

2004-01-12 Thread Philip Arnold
I'm using cfx_image on a project I'm working on (CF5/Win2K).It does what I need it to, more or less, but documentation is pretty spotty. One thing I want to change is thumbnail generation; is there any way to make the auto-generated thumbnails NOT have the beveled edge effect, and also is

X separated values.

2004-01-12 Thread [EMAIL PROTECTED]
Just a quicky, I'm looping over a list and specifying a custom delimiter,I want to be able to allow the user to specify a delimiter of 1 characters however CF seems to take each of these characters as a separate delimiter. e.g. delimiters=ab looks separates the list at an a or a band not ab. Is

Re: X separated values.

2004-01-12 Thread Massimo Foti
I'm looping over a list and specifying a custom delimiter,I want to be able to allow the user to specify a delimiter of 1 characters however CF seems to take each of these characters as a separate delimiter. e.g. delimiters=ab looks separates the list at an a or a band not ab. Is there an

RE: X separated values.

2004-01-12 Thread Raymond Camden
No, there isn't. However, you could easily write your own code to loop as long as customwhatever is found in the string. In fact, it is probably safe to say there is a UDF for this at cflib.org. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: X separated values.

2004-01-12 Thread Raymond Camden
Yep, here is a UDF for it: http://www.cflib.org/udf.cfm/split [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: X separated values.

2004-01-12 Thread Raymond Camden
Is there an quick easy why to specify that the cfloop should match the entire value not each character individually ? http://www.cflib.org/udf.cfm?ID=695 Just an fyi, if yo uknow the name of a UDF, you can quickly find it by using this syntax: www.cflib.org/udf.cfm/NAME The above

RE: X separated values.

2004-01-12 Thread [EMAIL PROTECTED]
Cheers Guys ! -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: 12 January 2004 15:01 To: CF-Talk Subject: RE: X separated values. Is there an quick easy why to specify that the cfloop should match the entire value not each character individually ?

ColdfusionMX 6.1 where to download for a free version for development?

2004-01-12 Thread John Ho
I currently run 6.0 for my web product. And I like to see what the difference in 6.1. Can someone show me where to downloadfor a free version for development of ColdfusionMX 6.1. thanks __ Do you Yahoo!? Yahoo! Hotjobs: Enter the Signing Bonus Sweepstakes

Re:ID key in SQL table

2004-01-12 Thread Don
Philip, I don't mean to be rude.By the definition of Primary Key, the [ID] can not be NULL, hence, [ID] int identity Primary Key would do ID COUNTER not NULL PRIMARY KEY IDENTITY, Oops ID int not NULL PRIMARY KEY IDENTITY, [Todays Threads] [This Message] [Subscription] [Fast

RE: ColdfusionMX 6.1 where to download for a free version for development?

2004-01-12 Thread Ben Forta
Just download the regular ColdFusion MX 6.1 Enterprise, during install time you'll be able to specify that you want it to be the Developer Edition. --- Ben -Original Message- From: John Ho [mailto:[EMAIL PROTECTED] Sent: Monday, January 12, 2004 10:15 AM To: CF-Talk Subject:

RE: ColdfusionMX 6.1 where to download for a free version for development?

2004-01-12 Thread Tony Weeg
I wouldn't worry too much about it, really.you could development server it, but its fairly bulletproof, and doesn't really need to be tested. my .02 cents -Original Message- From: John Ho [mailto:[EMAIL PROTECTED] Sent: Monday, January 12, 2004 10:15 AM To: CF-Talk Subject:

re: ColdfusionMX 6.1 where to download for a free version for development?

2004-01-12 Thread Scott Brady
Original Message: From: John Ho [EMAIL PROTECTED] I currently run 6.0 for my web product. And I like to see what the difference in 6.1. Can someone show me where to downloadfor a free version for development of ColdfusionMX 6.1. Have you tried: http://www.macromedia.com/ ? Scott

Re: cfx_image help?

2004-01-12 Thread Pete Ruckelshaus
I'm not wild about the look of the thumbnail either, but it does everything else I want it to do (reduce if 100px, won't enlarge if it's 100px) easily... Philip Arnold wrote: I'm using cfx_image on a project I'm working on (CF5/Win2K).It does what I need it to, more or less, but documentation

Re: X separated values.

2004-01-12 Thread Massimo Foti
Just an fyi, if yo uknow the name of a UDF, you can quickly find it by using this syntax: www.cflib.org/udf.cfm/NAME The above link could have been this as well: www.cflib.org/udf.cfm/split This way you don't have to do a search. Thanks for the tip. This time I took the url directely from

RE: X separated values.

2004-01-12 Thread Tim Blair
No, there isn't. However, you could easily write your own code to loop as long as customwhatever is found in the string. Or (in MX) you could use the underlying Java base of CF and use the split() function which returns an array: cfset myString = this is my space delimited string cfdump

CFFile Move Error

2004-01-12 Thread Jeff Chastain
I am working with a script that interacts with a mail server, reading messages from a specific POP account and processing them.The problem I am running into is dealing with the message attachments.In the CFMAIL tag, I store all attachments in a central folder with unique file names.Then during the

Re: X separated values.

2004-01-12 Thread Massimo Foti
Or (in MX) you could use the underlying Java base of CF and use the split() function which returns an array: cfset myString = this is my space delimited string cfdump var=#myString.split( )# br cfset myOther = thisCDisCDmyCDotherCDdelimitedCDstring cfdump var=#myOther.split(CD)# BTW I

Re:ColdfusionMX 6.1 where to download for a free version for development?

2004-01-12 Thread John Ho
Original Message: From: John Ho [EMAIL PROTECTED] I currently run 6.0 for my web product. And I like to see what the difference in 6.1. Can someone show me where to downloadfor a free version for development of ColdfusionMX 6.1. Have you tried: Thank you all http://www.macromedia.com/ ?

RE: ID key in SQL table

2004-01-12 Thread Philip Arnold
Philip, I don't mean to be rude.By the definition of Primary Key, the [ID] can not be NULL, hence, [ID] int identity Primary Key would do Actually, by definition an Indentity is an Int So [ID] identity primary key would do But if you want to get to the proper specifics, it should be [ID]

Re: Calendar Code

2004-01-12 Thread Christian Cantrell
On Sunday, January 11, 2004, at 04:44AM, Mickael wrote: Hopefully someone can help me out.  I am looking for some CF code for a Calendar of Events.  What I am looking for is the type of calendar where the admin of the site can add HTML content via a form (with something like HTMLedit) and

Re: Calendar Code

2004-01-12 Thread Mickael
Hi Christian, What is DRK 3 sorry I have never heard about it? - Original Message - From: Christian Cantrell To: CF-Talk Sent: Monday, January 12, 2004 11:06 AM Subject: Re: Calendar Code On Sunday, January 11, 2004, at 04:44AM, Mickael wrote: Hopefully someone can help me out.I am

Re: Calendar Code

2004-01-12 Thread Christian Cantrell
On Monday, January 12, 2004, at 11:19AM, Mickael wrote: What is DRK 3 sorry I have never heard about it? DRK = DevNet Resource Kit.It's a quarterly CD of components, custom tags, sample applications, etc. for several different products (ColdFusion, Flash and Dreamweaver, primarily).You can

Re: Calendar Code

2004-01-12 Thread Calvin Ward
Development Resource Kits produced by Macromedia containing components based on their product line, you can get more information here: http://www.macromedia.com/software/drk/ I'm a DevNet Professional Subscriber, which gets these and a ton more and love it. - Calvin - Original Message -

Re: What are ColdFusion developers doing with Web Services?

2004-01-12 Thread Christian Cantrell
On Sunday, January 11, 2004, at 05:34PM, Ralph Ogden wrote: I'd especially like to know if anyone in the ColdFusion development community is even doing much with Web Services. Just about everything I write these days exposes web services for one reason or another.I've been doing a lot of RIA

amp%; within outlook 2000

2004-01-12 Thread Tim Do
I'm running into issues with an html email that I send out that contains a url.I noticed that on outlook 2000 that the is replaced with amp; and thevariable isn't passed.The link works when opened with outlook 2002. Has anybody run into this before? Thanks, Tim [Todays Threads] [This Message]

Re: Calendar Code

2004-01-12 Thread Mickael
Thanks Christain for the info.I appreciate you accepting my emails off list. Mike - Original Message - From: Christian Cantrell To: CF-Talk Sent: Monday, January 12, 2004 11:26 AM Subject: Re: Calendar Code On Monday, January 12, 2004, at 11:19AM, Mickael wrote: What is DRK 3 sorry

RE: amp%; within outlook 2000

2004-01-12 Thread Mark Leder
Tim, What ver of Outlook are you using? Outlook 2003 defaults to Unicode, especially if you created a new personal folder in the 2003 format. Thanks, Mark _ From: Tim Do [mailto:[EMAIL PROTECTED] Sent: Monday, January 12, 2004 11:37 AM To: CF-Talk Subject: amp%; within outlook 2000 I'm

RE: What are ColdFusion developers doing with Web Services?

2004-01-12 Thread Daniel O'Keefe
What would be an example of the type of functionality you would use a web service for in this case? Dan [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re:ID key in SQL table

2004-01-12 Thread Don
I believe with MS SQL Server, Identity is an attribute to INT data type, hence, the following works -- DDL -- col of INT type without identity attribute create table #tbl (col int primary key); -- DDL -- col of INT type with identity, default to 1,1 even without say Identity(1,1) create table

RE: What are ColdFusion developers doing with Web Services?

2004-01-12 Thread Daniel O'Keefe
Darn, Mikes line stripping truncated what I was responding to. I was responding to Christian's email and here it is: Dan But even with 100% CF apps, there is usually some kind of functionality I want to expose through a web service.I think of it as just another application interface.

RE: Padding zeros in SQL Server

2004-01-12 Thread Daniel O'Keefe
I have had issues in the past with Excel-SQL DTS where it will still drop the leading zero, even into a varchar. In those cases I exported to Tab delimited text file first as in interim step. You might want to try that from Access, and then you can open the text file and ensure they are in there.

RE: ID key in SQL table

2004-01-12 Thread Philip Arnold
I was wrong, it's not just INT that Identity can be on (so it's not assumed) You can also put Identity on bigint, decimal, numeric, smallint and tinyint It's an attribute of the field, not of the type -Original Message- From: Chunshen (Don) Li [mailto:[EMAIL PROTECTED] Sent: Monday,

Insert/Display special characters

2004-01-12 Thread MILAN MUSHRAN
Hi Guys, I need to insert special characters like double quotes () Copyright symbol in the database, when these characters are copied from MS Word. Copying from MS Word and Pasting in a textarea box results in some wierd characters, but I want to retain all the original characters for inserting

Re: What are ColdFusion developers doing with Web Services?

2004-01-12 Thread Christian Cantrell
On Monday, January 12, 2004, at 12:15PM, Daniel O'Keefe wrote: What would be an example of the type of functionality you would use a web service for in this case? I sometimes like to provide a Flash front-end alternative to CF/HTML apps.I think some functionality is better expressed in Flash

CF Datasource

2004-01-12 Thread Drew Harris
I am trying to set up a DSN in CF5 running on a Windows 2003 server to either an excel spreadsheet, or csv file and have had no luck. If you have had a similar experience of frustration and might know of something I could be doing wrong, please let me know. Thank you, Drew Harris CEO: Quantum

OT:Test (Please ignore)

2004-01-12 Thread Yves Arsenault
Test [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Structures native order

2004-01-12 Thread Dan O'Keefe
If I loop over a query, which I have retrieved in the order I want it in, and add the data to a structure, I am finding it does not stay in that order. A few records from the query: 262 Alabama 211 Alaska 212 Arizona 213 Arkansas 214 California When I loop over the collection and display

RE: Structures native order

2004-01-12 Thread Dave Watts
If I loop over a query, which I have retrieved in the order I want it in, and add the data to a structure, I am finding it does not stay in that order. A few records from the query: 262 Alabama 211 Alaska 212 Arizona 213 Arkansas 214 California When I loop over the collection

Detecting SQL Update success

2004-01-12 Thread Dan O'Keefe
Is there a way to detect if a SQL update statement in CFQUERY resulted in a record being updated? I guess I would want to know the number of rows updated. Dan [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Two Destinations for POST form?

2004-01-12 Thread rob.stokes
Mike, Thanks, I'm making progress now with CFHTTP and CFHTTPPARAM. One problem remains: I'd prefer for the user to see the results of the SMS send, rather than the results of the DB update which is all I can seem to get returned to the user - is there anyway to set CFHTTP to make sure all that is

Re:Structures native order

2004-01-12 Thread Dan O'Keefe
I agree that my original choice of structure over array may not have been correct, but I might have been using the structure elsewhere in the app to seek a value based on the key. That's good to know though that you cannot count on the order and i will avoid it in the future. Thansk, Dan

RE: Two Destinations for POST form?

2004-01-12 Thread Dave Watts
Thanks, I'm making progress now with CFHTTP and CFHTTPPARAM. One problem remains: I'd prefer for the user to see the results of the SMS send, rather than the results of the DB update which is all I can seem to get returned to the user - is there anyway to set CFHTTP to make sure all that

RE: Structures native order

2004-01-12 Thread DURETTE, STEVEN J (AIT)
This sounds to me like a good case for a combo array/structure. Try this: !--- Create the array --- cfset Variables.myStateInfo = arrayNew(1) !--- Create Struct and populate the array/struct --- cfloop from=1 to=#myQueryName.recordCount# index=Variables.myIndex cfset

RE: Two Destinations for POST form?

2004-01-12 Thread Katz, Dov B (IT)
Cfoutput#cfhttp.filecontent#/cfoutput after /cftransaction -Dov _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, January 12, 2004 1:15 PM To: CF-Talk Subject: RE: Two Destinations for POST form? Mike, Thanks, I'm making progress now with CFHTTP and CFHTTPPARAM.

RE: Structures native order

2004-01-12 Thread Daniel O'Keefe
I'll try that. Thank you very much, Dan -Original Message- From: DURETTE, STEVEN J (AIT) [mailto:[EMAIL PROTECTED] Sent: Monday, January 12, 2004 1:24 PM To: CF-Talk Subject: RE: Structures native order This sounds to me like a good case for a combo array/structure. Try this: !---

RE: Nested Tree SQL Sorting

2004-01-12 Thread Matt Robertson
You can do this with a single mySQL (or any other platform) query, but it will need some help from CF. There are two options.CFX_fMakeTree will order the query the fastest. Its better than cfx_maketree in that it will preserve your query sort order. Our fearless list admin wrote a slick little

curiousity: CF IM

2004-01-12 Thread Katz, Dov B (IT)
What would you recommend if I wanted to implement cfsession-based IM? (presence and messaging) I'm experimenting with several things, and I'm wondering what everyone thinks on the matterMy biggest goals are minimizing server performance and not using unpublished macromedia API's to play around

RE: Structures native order

2004-01-12 Thread Dave Watts
This sounds to me like a good case for a combo array/structure. Why not just access the query object when you need the values? Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 [Todays Threads] [This Message] [Subscription] [Fast

CFMX 6.1 Updater

2004-01-12 Thread Jeff Chastain
Anybody know where I can find the updater that was released for CFMX 6.1?I have searched Macromedia and cannot find it. Thanks, -- Jeff [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

unspecified error

2004-01-12 Thread Robert Orlini
I get an unspecified error when I try to open a table in SQL. It was created by this script in a CF file: CFQuery datasource=mtm name=trial Create table trial (ID int not NULL PRIMARY KEY IDENTITY, Orderdate Char (50) not null, Institution Char (50) not null, Customer Char (50) not null,

RE: CFMX 6.1 Updater

2004-01-12 Thread Dave Watts
Anybody know where I can find the updater that was released for CFMX 6.1?I have searched Macromedia and cannot find it. There is no updater for CFMX 6.1. You can download 6.1 in its entirety, and upgrade your 6.0 or earlier servers. There are hotfixes for 6.1:

RE: Structures native order

2004-01-12 Thread Daniel O'Keefe
That's a thought. I am caching the query and was storing the structure in the application scope. Dan -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Monday, January 12, 2004 1:44 PM To: CF-Talk Subject: RE: Structures native order This sounds to me like a good

Domain Cookie expiration?

2004-01-12 Thread Lofback, Chris
All-- We have a load-balanced CF5 app using client variables on a pair of Win2K/Apache 1.3.x web servers.We need the session to expire when the user closes their browser and are manually resetting the CFID/CFTOKEN session cookies.But when we enable the SETDOMAINCOOKIE option in the CFAPPLICATION

RE: CFMX 6.1 Updater

2004-01-12 Thread Jeff Chastain
Thanks, I had not heard of one, but found a mention on Macromedia's web site while trying to figure out the CFPOP issue I am running into (CFFile Move Error message).Further searching did not turn up anything though. Thanks again. -- Jeff -Original Message- From: Dave Watts

Re:ID key in SQL table

2004-01-12 Thread Don
We all learn, thanks. I was wrong, it's not just INT that Identity can be on (so it's not assumed) You can also put Identity on bigint, decimal, numeric, smallint and tinyint It's an attribute of the field, not of the type -Original Message- From: Chunshen (Don) Li [mailto:[EMAIL

Re:CF Datasource

2004-01-12 Thread Don
Drew, Check this out, http://www.cfcomet.com/Excel/index.cfm?ArticleID=0239B2E5-5FED-11D3-B3E9004033E03EF9 A query may be like: CFQUERY DATASOURCE=excel NAME=getDataSheet SELECT* FROM Sheet1$ -- or the ACTUAL sheet name /CFQUERY HIH Don Li a Must-have for MS SQL Server database

RE: Structures native order

2004-01-12 Thread Dave Watts
That's a thought. I am caching the query and was storing the structure in the application scope. Never make things more complicated than they need to be. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 [Todays Threads] [This Message]

RE: Concatanating fields with special characters.

2004-01-12 Thread Angel Stewart
Hey all, CFSAVECONTENT truncates the variable the same way as CFSET does. I can't think why. I suppose the next step is to write code that will replace all and / with and // ? I can't believe there's not a quick, built in way to do this. Anyone have any other suggestions? -Gel

cferror oddness

2004-01-12 Thread Deanna Schneider
Hey All, So, I've just discovered something strange. When using a cferror tag that calls an error template, it would appear that you are affectively cfincluding that error template, as opposed to cflocating to that error template. (Even though the includes within the error template itself function

RE: Concatanating fields with special characters.

2004-01-12 Thread Angel Stewart
Hmm, htmleditformat() seemed to have done the trick in conjunction with cfsavecontent. I wrapped the header and footer sections of code with htmleditformat. Then I used cfsavecontent before a cffile statement to output the new 'page' to the file: CFSAVECONTENT variable=pagerebuild

CFChart customization

2004-01-12 Thread Nate Nelson
Hello, I am having a problem with cfchart that I was hoping one of you has run into.I need a horizontal bar graph that displays girdlines from -2.5 to 2.5.Unless I have values that go to both the min and max, the graph doesn't display the min and max.Even if I use the gridlines attribute the

Re: Rereplace with regular expression not working as I had hoped.

2004-01-12 Thread Ben Doom
You need to 'remember' the character grabbed by the dot in a backreference: rereplace(string, (.)/(.), \1 / \2, all); That should take care of you.If you have any more questions, we might want to move to CF-Regex (available via the HoF archives if you don't want to subscribe). --Ben Doom

Re: CF Datasource

2004-01-12 Thread Drew Harris
Well, Thank you. However, what is happening is that when I try to register a new csv or xls dsn with cfadmin it will fail and not verify. -Drew On Monday, Jan 12, 2004, at 12:14 US/Central, Chunshen (Don) Li wrote: Drew, Check this out,

Re: Flash Remoting with Blue Dragon

2004-01-12 Thread John Dowdell
At 11:34 AM 1/7/4, Matt Liotta wrote: there is no reason to use Flash Remoting anymore since Flash 7 supports web services. Sorry I'm late, but binary formats are fast. They complement SOAP and services: universality vs efficiency. (No idea on a Blue Dragon gateway, sorry.) jd John Dowdell,

Re:CF Datasource

2004-01-12 Thread Don
Have you tried a work-around (lazy man's soltion:) such as just reName the existing csv or xls file that points to the defined dsn? Well, Thank you. However, what is happening is that when I try to register a new csv or xls dsn with cfadmin it will fail and not verify. -Drew On Monday, Jan 12,

Re: Flash Remoting with Blue Dragon

2004-01-12 Thread Jochem van Dieten
John Dowdell wrote: At 11:34 AM 1/7/4, Matt Liotta wrote: there is no reason to use Flash Remoting anymore since Flash 7 supports web services. Sorry I'm late, but binary formats are fast. They complement SOAP and services: universality vs efficiency. (No idea on a Blue Dragon gateway,

Safari Navigation Bug and general speed issues

2004-01-12 Thread Alan Rafael Bleiweiss
Two questions. I've got a site with over 1000 products. In that site, when bringing up any category my code (see below) shows 10 products per page with a Next / Previous function.On IE and Netscape on the PC this works (though very slowly for large categories).On Macs IE and Safari, clicking

Re: Flash Remoting with Blue Dragon

2004-01-12 Thread Massimo, Tiziana e Federica
Has anybody ever benchmarked Flash Remoting against both normal and gzip'ed webservices? I am not into Flash but maybe this may be a start point: http://www.flashorb.com/articles/soap_vs_flash_remoting_benchmark.shtml Unfortunately, it seems like they forgot to consider HTTP compression

Re: Flash Remoting with Blue Dragon

2004-01-12 Thread Matt Liotta
Why are binary formats so fast? Data size or parsing efficiency on the recipient? Has anybody ever benchmarked Flash Remoting against both normal and gzip'ed webservices? Binary formats are generally less verbose than human readable formats. Obviously, there can thus be space savings, which

Re: Flash Remoting with Blue Dragon

2004-01-12 Thread Matt Liotta
http://www.flashorb.com/articles/soap_vs_flash_remoting_benchmark.shtml Unfortunately, it seems like they forgot to consider HTTP compression They didn't forget... the purposely excluded it. Otherwise their argument would fall on its face. -Matt [Todays Threads] [This Message]

Re: Safari Navigation Bug and general speed issues

2004-01-12 Thread Alan Rafael Bleiweiss
Uh, how come my pasted code didn't get included in this post? At 05:06 PM 1/12/04, you wrote: Two questions. I've got a site with over 1000 products. In that site, when bringing up any category my code (see below) shows 10 products per page with a Next / Previous function.On IE and Netscape on

Re: Safari Navigation Bug and general speed issues

2004-01-12 Thread Alan Rafael Bleiweiss
For some reason my code didn't get included in the first email.Here's a link to the code in question... http://www.brionanet.com/nextprevcodechunk.txt At 05:06 PM 1/12/04, you wrote: Two questions. I've got a site with over 1000 products. In that site, when bringing up any category my code

Re: Safari Navigation Bug and general speed issues

2004-01-12 Thread Doug White
The line you included as a separator was parsed as the end of the message by HOF == Stop spam on your domain, Anti-spam solutions http://www.clickdoug.com/mailfilter.cfm For hosting solutions http://www.clickdoug.com ==

Re: Safari Navigation Bug and general speed issues

2004-01-12 Thread Jerry Johnson
It should only ever be counting up and down by 3s. That is what your code is telling it to do: CFSET NEXTSTART=#URL.START#+3 Where does the jump by 10s come in? Jerry Johnson [EMAIL PROTECTED] 01/12/04 06:20PM For some reason my code didn't get included in the first email.Here's a link to

Temp files question

2004-01-12 Thread John Stanley
Does anyone know what the following directories and files sre used for? The only thing I see is that they are taking up a bunch of hard drive space: c:\documents and settings\computer\local settings\temp\tmp15e6 tmp0017e0 c:\documents and settings\computer\local settings\temp\tmp22b6

Re: Temp files question

2004-01-12 Thread Doug White
yes, they can be deleted == Stop spam on your domain, Anti-spam solutions http://www.clickdoug.com/mailfilter.cfm For hosting solutions http://www.clickdoug.com == Aspire to Inspire before you Retire or Expire! -

CFX_PDFtext (extract text from PDFs)

2004-01-12 Thread Matt Liotta
Since people seemed interested, I released today on my blog (http://devilm.com) a custom tag I wrote for extracting text from a PDF. Enjoy! -Matt [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

ide.cfm/CFFILE

2004-01-12 Thread Bryan Stevenson
Hey All, I'm running a CFMX 6.1 Standard on RedHat 9 and I'm getting this error in the application log whenever I try and upload a file via CFFILE (please note this did work when the Enterprise edition was installed).I have tried dumping cffile.serverfile after the upload and that variable does

RE: BD6.1b2 and mySQL

2004-01-12 Thread Vince Bonfanti
Cutter, I've tried sending this response to you privately a few times, but keep getting an unknown user error. Maybe you'll get this one... You've found a bug in the way BlueDragon handles unsigned column types for MySQL. We've reproduced and are working on a fix now. I'll send you a patch as

  1   2   >