Re: Free flash media player

2005-07-18 Thread Rob
Thank you to everyone who posted Heres a free Flash video player that I use for development purposes. If you need something like this, but a little different, let me know and I might be able to help you out. http://www.martijndevisser.com/archives/01.php This is almost exactly what I

Re: Free flash media player

2005-07-18 Thread Kevin Aebig
FYI, I owed you one... =] To accomplish loading video online, please be aware that: Flash 6 - Only Progressively downloads the video which is alot like 'fake' streaming. The only way to stream video to 6 is with Flash Comm server. Flash 7 - Uses real streaming and doesn't

Re: OT/SOT: ColdFusion Word Doc Sharing

2005-07-18 Thread Jochem van Dieten
E C list wrote: Folks- I've been tasked to come up with a way for television script writers to share and co-edit word docs. It would need to be an online solution, because they are distributed around the USA. Only one editor at a time needs to edit the document, and they don't need to

RE: Triggering MSSQL DTS from CF

2005-07-18 Thread Andy Mcshane
I agree with Dan, I use this same method all the time and have never had a problem with it. Just ensure that you setup the correct permissions to be able to execute in SQL. From: Dan G. Switzer, II [mailto:[EMAIL PROTECTED] Sent: Sat 16/07/2005 00:28 To:

Re: .ini files (ray)

2005-07-18 Thread Raymond Camden
Do you mean me? (There are more Rays here than just I. :) If so - no. I'm not sure what you mean though. I sometimes use ini files and sometimes use XML files in my application development. But when I use ini files, I'm not doing anything sexy with them. Just the normal getProfileString() and

SOT - Tape library

2005-07-18 Thread Michel Deloux
Hi all. Sorry for OT. I'm looking examples about how to develop a tape library with CF7/Oracle for use with backup tapes. How to manage tapes(LTO, DAT, DLT, etc) in use, tapes life time, dates, and so on. Any tips will be very very useful. Thanx MD

CFLDAP

2005-07-18 Thread Tangorre, Michael
I am trying to figure out if we need to reorder our Active Directory architecture or if I can get around what appears to be a problem at the current time. Lets say I have a DN as follows: CN=Tangorre\, Michael, ou=developers, ou=users, ou=building, dc=xxx, dc=yy Is there a way to specify to do

Flash cfform and recompilation

2005-07-18 Thread jmauney
In the ColdFusion documentation under Best practices for Flash forms it says: Only data should be dynamic. Whenever a variable name changes, or a form characteristic, such as an element width or a label changes, the Flash output must be recompiled. If a data value changes, the output does not

RE: OT/SOT: ColdFusion Word Doc Sharing

2005-07-18 Thread E C list
Thanks everyone who responded. I am going to follow up on your suggestions and see if these ideas will match our needs. Michael, I am not sure what Microsoft means, but their sharepoint website home page and the download area both state that sharepoint is free if you have 2003 Server (which I

RE: OT/SOT: ColdFusion Word Doc Sharing

2005-07-18 Thread Tangorre, Michael
From: E C list [mailto:[EMAIL PROTECTED] Thanks everyone who responded. I am going to follow up on your suggestions and see if these ideas will match our needs. Michael, I am not sure what Microsoft means, but their sharepoint website home page and the download area both state that

Re: Number formatting issue

2005-07-18 Thread Bud
Thanks Matthew. I actually didn't want it to round at all. Rey... It has to round either up or down, or it's going to remain 22.995. :) There are 2 functions, INT which rounds DOWN to the nearest integer and CEILING which rounds UP. Neither works on decimals. What Rey is saying is to first

CFFORM freeze

2005-07-18 Thread Asim Manzur
cfform name=myform height=200 width=400 format=Flash cfformgroup type=hbox cfinput type=text name=Name validate=telephone required=yes cfinput type=submit name=myBtn value=Submit / /cfformgroup /cfform The above sample code to generate the flash form, works fine, but

(CF) SQL Question

2005-07-18 Thread Jerry Johnson
Can someone point me to a tutorial/manual that will help me get the following? I've done it before, but cannot for the life of me remember the _right_ way to do this in one query. table has recID (unique), itemID (not unique) and sequence number. How do I write a select to only return records

cfforms flash character encoding

2005-07-18 Thread Wayne Putterill
How can I get a flash form to use pound signs ( £ - as in the currency), they work on my testing server but not on the (shared) host. The host is in the UK, I have tried putting cfcontent type=text/html; charset=ISO-8859-1 cfset setEncoding(url,ISO-8859-1) cfset setEncoding(form,ISO-8859-1) in

Re: (CF) SQL Question

2005-07-18 Thread James Holmes
I think this would work in Oracle at least and probably in a lot of other DMBS (probably not MySQL) - note this is untested. SELECT * FROM MyTable T WHERE SEQUENCENUMBER = ( Select MAX (SEQUENCENUMBER) FROM MyTable WHERE ITEMID = T.ITEMID ) On 7/18/05, Jerry Johnson [EMAIL PROTECTED]

Re: (CF) SQL Question

2005-07-18 Thread Jerry Johnson
Thanks. Duh. I knew it had to be easier than I was making it. I got it working with an inner join on a subquery, but did not think it was the easiest solution. Thanks, Jerry Johnson On 7/18/05, James Holmes [EMAIL PROTECTED] wrote: I think this would work in Oracle at least and probably in a

Base64 encoding

2005-07-18 Thread Howie Hamlin
Are there any native functions similar to CF7 BinaryEncode() that are available for CF5 or 6.1 either natively or in a CFScript? I need to take a binary variable and Base64 encode it. Thanks, Howie ~| Logware

RE: CFLDAP

2005-07-18 Thread Dawson, Michael
The START has to be a valid, complete OU. You will need to set the START to the lowest level of dc=xxx,dc=yy no matter what. Now, I haven't actually tried this, but it should work. You might be able to use the FILTER attribute to limit the DNs. FILTER=(|(*ou=building1,*)(*ou=building2*)) Watch

RE: OT/SOT: ColdFusion Word Doc Sharing

2005-07-18 Thread Connie DeCinko
Sounds like a great use for Groove Workspace. For $35 a seat, you can't beat it. www.groove.net -Original Message- From: E C list [mailto:[EMAIL PROTECTED] Sent: Sunday, July 17, 2005 7:04 PM To: CF-Talk Subject: OT/SOT: ColdFusion Word Doc Sharing Folks- I've been tasked to come up

RE: cfforms flash character encoding

2005-07-18 Thread Kevin Aebig
This is a complete guess, so take it at face value... Flash relies on Unicode to handle using different characters. Give this a try and it'll probably work fine. Cheers, Kevin -Original Message- From: Wayne Putterill [mailto:[EMAIL PROTECTED] Sent: July 18, 2005 9:36 AM To: CF-Talk

Problem using CFX_ResolveDNS

2005-07-18 Thread Fernando_Maciá
I am using CFX_ResolveDNS. I use this custom tag to get the domain my visitors are visiting my website from. I pass CGI.REMOTE_ADDR as the parameter, and CFX_ResolveDNS usually returns my visitor's domain name. Now I am finding this problem: sometimes, this custom tag is not capable of finding the

Re: Base64 encoding

2005-07-18 Thread Howie Hamlin
toBase64() Duh... Sorry 'bout that! Howie --- On Monday, July 18, 2005 11:50 AM, Howie Hamlin scribed: --- Are there any native functions similar to CF7 BinaryEncode() that are available for CF5 or 6.1 either natively or in a CFScript? I need to take a binary variable and Base64 encode

Query Validation Problem...

2005-07-18 Thread Dan G. Switzer, II
I'm working an data import routine that takes an Excel spreadsheet and is supposed to validate the spreadsheet to make sure that it contains valid data before importing the records into the database. The problem I'm trying to solve efficiently is how to validate data in a column that is a list of

test

2005-07-18 Thread Asim Manzur
test -- Regards, ~| Find out how CFTicket can increase your company's customer support efficiency by 100% http://www.houseoffusion.com/banners/view.cfm?bannerid=49 Message:

Re: Query Validation Problem...

2005-07-18 Thread Aaron Rouse
The way that I did this once is I imported the entire file into a staging table in the database. Then I used queries within the database to verify where data was good/bad so I could post up alerts to the user. For the delimited list of data in one column I used a pipe lined function(in Oracle)

Amazon AWS

2005-07-18 Thread Cutter (CF-Talk)
Anyone have a working cf example of using Amazon's AWS? Cutter ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client

OT: DHTML layer with scrolling

2005-07-18 Thread Ian Skinner
I've create a DHTML div layer that users can show or hide as desired. This layer contains content that is too large to display in the size of the div, so I have used the overflow: scroll CSS property. This all works well except for one minor issue. When the div is opened then scrolled down a

Re: OT: Sun's JAI package install

2005-07-18 Thread Barney Boisvert
Any ideas?? or alternatives to TIFF image conversion to JPG/PNG/GIF (any of these would be fine) Alagad image component? Or something you gin up yourself using AWT (what AIC uses), since that's part of core Java? cheers, barneyb On 7/18/05, Bryan Stevenson [EMAIL PROTECTED] wrote: Hey All,

RE: DHTML layer with scrolling

2005-07-18 Thread Katz, Dov B \(IT\)
If you put an iframe inside your div, I think you can use the iframe's scrollTo(x,y) method. I use this in the opposite direction to keep a chat window scrolled to the bottom. -Dov -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Monday, July 18, 2005 2:21 PM To:

Re: OT: DHTML layer with scrolling

2005-07-18 Thread Barney Boisvert
If you set the content to nothing, and then set it back to the long stuff, it'll probably reset. You might need to do it when the window is visible, though. I.e. just before hiding or just after showing, set the content to and then immediately set it back to the right value. cheers, barneyb

Re: Number formatting issue

2005-07-18 Thread Rey Bango
Gotcha! I'll give that a try. Thanks for the help, Bud. Rey... Bud wrote: Thanks Matthew. I actually didn't want it to round at all. Rey... It has to round either up or down, or it's going to remain 22.995. :) There are 2 functions, INT which rounds DOWN to the nearest integer and

Re: SOT: Free flash media player

2005-07-18 Thread Rob
On 7/18/05, John Dowdell [EMAIL PROTECTED] wrote: Rob wrote: Is there a flash ... uh... movie that can play ... well ... movies (quicktime or whatever)? Dave had the info. The Macromedia Flash Player 7 contains a single video codec, Sorenson Sparc, and can directly render SWF, FLV, MP3,

RE: Flash cfform and recompilation

2005-07-18 Thread Mike Nimer
That would be ok. The data between the cfforminput/cfforminput tags is considered the value of the field so it does not force a recompile. Hth, ---nimer -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, July 18, 2005 10:13 AM To: CF-Talk Subject: Flash

SOLVED: Re: OT: Sun's JAI package install

2005-07-18 Thread Bryan Stevenson
Hey All, Well I guess if your autoexec.nt file is missing then you get the problem I was having ;-) I grabbed a copy from the c:\windows\repair dir and dropped it in the c:\windows\system32 dir and all is well JAI is installednow it's time to see if CF recognizes it and my new JAI

Re: Javascript from Flash Form

2005-07-18 Thread Jim Voris
That worked, thanks! On 7/14/05, S. Isaac Dealey [EMAIL PROTECTED] wrote: I would like to be able to add a window.close() javascript method to an onclick event for a button in a flash form. Is this possible? Is there a workaround? Iirc... getURL(javascript:window.close());

Nested CFC Method calls

2005-07-18 Thread Ben Nadel
I am trying to make a basic security controller for a web application system. The idea is that there is a User CFC and a SecurityController CFC. The User stores it list of roles and teh security controller determines if the user has to parts of the site. Example: cfif

Re: OT: Sun's JAI package install

2005-07-18 Thread Bryan Stevenson
Thanks Barneybut Alagad doesn't handle TIFFs :-( Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web: www.electricedgesystems.com

RE: Javascript from Flash Form

2005-07-18 Thread Kevin Aebig
I would... you can also use FSCommand() and make sure that you don't include the second parameter for getURL (_target) or else you'll start a page refresh. Cheers, Kevin -Original Message- From: S.Isaac Dealey [mailto:[EMAIL PROTECTED] Sent: July 14, 2005 12:12 PM To: CF-Talk Subject:

Re: Query Validation Problem...

2005-07-18 Thread Qasim Rasheed
Apart from Aaron advice about database, I would recommend you to take a look at AWK. It has pretty nice features as far text parsing is concerned. Let me know if you need any additional help Qasim On 7/18/05, Aaron Rouse [EMAIL PROTECTED] wrote: The way that I did this once is I imported the

RE: SOT: Free flash media player

2005-07-18 Thread Kevin Aebig
Heres an alternative I found with a lil searching... it says it's free, but I personally haven't tried it. http://www.rivavx.com/index.php?encoderL=3 Kevin -Original Message- From: Rob [mailto:[EMAIL PROTECTED] Sent: July 18, 2005 3:31 PM To: CF-Talk Subject: Re: SOT: Free flash media

RE: OT: DHTML layer with scrolling

2005-07-18 Thread Ian Skinner
document.getElementById(defList).scrollTop = 0; Ok that was pretty easy once I found the scroll properties versus the scroll function. This works well, at least in IE which is all it has to for this application. Sometimes there are advantages to working on intranet versus working on

Re: OT/SOT: ColdFusion Word Doc Sharing

2005-07-18 Thread Adam Haskell
Might check out fusiondox (a CF based solution). We looked at it at CFunited kinda a cool app, not sure on pricing. Adam H On 7/18/05, Connie DeCinko [EMAIL PROTECTED] wrote: Ooops, sorry, the upgrade is $35, that's what I remembered. Nice thing, you can install each license upon up to 5 of

Re: OT: Sun's JAI package install

2005-07-18 Thread Barney Boisvert
Oh, whoops. I just went and looked at the docs, and while it does support TIFFs, you have to install JAI to use them So never mind. ; ) cheers, barneyb On 7/18/05, Bryan Stevenson [EMAIL PROTECTED] wrote: Thanks Barneybut Alagad doesn't handle TIFFs :-( Bryan Stevenson B.Comm. VP

RE: Flash cfform and recompilation

2005-07-18 Thread jmauney
Awesome... Thanks for the response... Just to be clear... These are cfformitem tags, not cfforminput as quoted below. Thanks, Jonathan -Original Message- From: Mike Nimer [mailto:[EMAIL PROTECTED] Sent: Monday, July 18, 2005 3:38 PM To: CF-Talk Subject: RE: Flash cfform and

Basics: Directly calling a function in a .cfm file?

2005-07-18 Thread Pete Ruckelshaus
I have a function that is generating HTML output, so I have it in a .CFM file. Is there a way to directly call a method in this function via a URL? Thanks Pete ~| Find out how CFTicket can increase your company's customer

RE: Flash cfform and recompilation

2005-07-18 Thread Mike Nimer
D'oh, yes CFFORMITEM tags. ---nimer -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, July 18, 2005 3:44 PM To: CF-Talk Subject: RE: Flash cfform and recompilation Awesome... Thanks for the response... Just to be clear... These are cfformitem tags,

Re: Nested CFC Method calls

2005-07-18 Thread Barney Boisvert
Turn of the execution times in the CF debugging output. That's known to make CFCs drag like nothing else. Turning it off makes things enormously faster. Though 60 milliseconds isn't particularly slow. Certainly not enough to warrant performance investigations. It could easily be explained

Re: OT/SOT: ColdFusion Word Doc Sharing

2005-07-18 Thread Pete Ruckelshaus
Take a look at Groove (http://www.groove.net/) I use it for small project management and document sharing all the time and it rocks. It's a desktop app, not CF, but it's cool. Pete ~| Logware (www.logware.us): a new and

Re: SOT: Free flash media player

2005-07-18 Thread John Dowdell
Rob wrote: Is there a flash ... uh... movie that can play ... well ... movies (quicktime or whatever)? Dave had the info. The Macromedia Flash Player 7 contains a single video codec, Sorenson Sparc, and can directly render SWF, FLV, MP3, JPG, and maybe a few other media formats. Playing a

Amazon AWS

2005-07-18 Thread Jonathan Mauney
Yes... some parts of it... what are you looking for exactly? Jonathan -- Jonathan Mauney Web Application Developer 1110 WBT AM 107.9 the LINK [WLNK] PersonalityAC(r) Radio Network Jefferson-Pilot Communications Co. -- Anyone have a

Pull content from CGI with CF?

2005-07-18 Thread Donna French
How can I pull some content into a CF page that is generated by a CGI? The site I need to do this for is using CF5. TIA, Donna ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start

CFFORM freeze

2005-07-18 Thread Don Neizer
We found the actionscript answer to our problem! Posted is the following solution which was found at http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid=22threadid=1012110enterthread=y cfsavecontent variable=checkForm !--- if(!mx.validators.Validator.isValid(this,

RE: OT/SOT: ColdFusion Word Doc Sharing

2005-07-18 Thread Connie DeCinko
Ooops, sorry, the upgrade is $35, that's what I remembered. Nice thing, you can install each license upon up to 5 of your computers. -Original Message- From: E C list [mailto:[EMAIL PROTECTED] Sent: Monday, July 18, 2005 10:54 AM To: CF-Talk Subject: RE: OT/SOT: ColdFusion Word Doc

RE: OT/SOT: ColdFusion Word Doc Sharing

2005-07-18 Thread E C list
Connie, this looks like a very good match for what we need. I'll definitely run this one up the flag pole! Pricing seems to be much higher than $35 though. Seems more like $150+. But it may still be in the budget. Thank you for the suggestion. -Original Message- From: Connie DeCinko

RE: Pull content from CGI with CF?

2005-07-18 Thread Dave Watts
How can I pull some content into a CF page that is generated by a CGI? The site I need to do this for is using CF5. Request the CGI URL using CFHTTP. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at

Re: Nested CFC Method calls

2005-07-18 Thread Qasim Rasheed
Ben, If you have debugging turned on, I would say it is responsible for longer time. Try turning it off. HTH On 7/18/05, Ben Nadel [EMAIL PROTECTED] wrote: I am trying to make a basic security controller for a web application system. The idea is that there is a User CFC and a

Re: OT: Sun's JAI package install

2005-07-18 Thread George Abraham
How about using ImageMagick? Might be a bit overwhelming for what you want to do, but it does it so well. http://www.imagemagick.org/script/index.php George On 7/18/05, Bryan Stevenson [EMAIL PROTECTED] wrote: Hey All, I'm trying to install the JAI package from Sun (so I can fire up some

RE: Nested CFC Method calls

2005-07-18 Thread Ben Nadel
I was thinking about going directly to the User and skipping the SecurityController, but then I felt that the user should know about how its access is applied. Meaning that, while a user might know its own roles, only the Security system itself should understand how the roles are applied to the

Re: Pull content from CGI with CF?

2005-07-18 Thread Barney Boisvert
CFHTTP or CFEXECUTE, depending on how you're set up. I.e. whether you can invoke the CGI script as a local process and have it run correctly. cheers, barneyb On 7/18/05, Donna French [EMAIL PROTECTED] wrote: How can I pull some content into a CF page that is generated by a CGI? The site I

Want CRM w/services

2005-07-18 Thread Richard Colman
We are looking for a moderately full-featured Customer Relationship Manager package. Have played with the SugarCRM package, but it is a bit too much, plus it is in php, plus it wants to play with MSQL, etc. etc. Would like to have something decent written in Cold Fusion with source code. Would

Re: cfforms flash character encoding

2005-07-18 Thread Wayne Putterill
I tried setting the content type to unicode in the Application.cfm but no luck, is that what you meant? It drives me up the wall that it's fine on my test server which is just a default install of CF7 on Linux but fails on the host which is on Windows. On 7/18/05, Kevin Aebig [EMAIL PROTECTED]

Re: Nested CFC Method calls

2005-07-18 Thread Barney Boisvert
Your security manager isn't applying the roles, the code calling the security manager is. That is, this line: cfif SecurityController.HasAccess(User, publications)/cfif is applying the roles to the application, not the hasAccess method of the security manager. That line ought to read:

Re: OT: Sun's JAI package install

2005-07-18 Thread Bryan Stevenson
Oh, whoops. I just went and looked at the docs, and while it does support TIFFs, you have to install JAI to use them So never mind. ; ) cheers, barneyb and I can't get JAI to install...gr ;-) Well...back to my original question: I'm trying to install the JAI package from

Re: OT: Sun's JAI package install

2005-07-18 Thread Qasim Rasheed
Bryan, I have created an Image Manipulation Application which is available on developer exchange. You can find it on developers exchange.

Installation saga continues...

2005-07-18 Thread Damien McKenna
Here's something I sent to Macromedia support, any suggestions would be appreciated. Have ran the installer, only the master ColdFusion MX Application Server service is installed (no ODBC ones), and that service fails to start after installation. Before installation I get the following when I

Re: OT: Sun's JAI package install

2005-07-18 Thread Bryan Stevenson
Thanks Qasim.but my problem is installing JAI.if I could do that I can write my own (but good to know it's there if/when I get JAI installed) ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell:

RE: cfforms flash character encoding

2005-07-18 Thread Kevin Aebig
O... so are you running Apache on one and IIS on the other? Kevin -Original Message- From: Wayne Putterill [mailto:[EMAIL PROTECTED] Sent: July 18, 2005 2:59 PM To: CF-Talk Subject: Re: cfforms flash character encoding I tried setting the content type to unicode in the Application.cfm

RE: Nested CFC Method calls

2005-07-18 Thread Ben Nadel
Barneyb, I see what you are saying, and part of my ideas come from the fact that I am very new to this kind of higher level of thinking. My concern with directly accessing the User object is that lets say for instance (and I am not going to do this, but what if...) I wanted to change the security

managing multiple types of users

2005-07-18 Thread Russ
We have all our current users currently in our users table. The user table has a userID, userUid and useremail among other fields (It's not structured very well, but it was created before my time with the company). I would like to restructure it, but I'm not sure if it's possible as we currently

RE: cfforms flash character encoding

2005-07-18 Thread Kevin Aebig
Using the Flash IDE, I tested and found that you can use the character entity on both Win and Lin... is that what you're doing now? Try replacing all occurances with '#163;' if you need a quick fix, otherwise I'd hunt for the problem... Cheers, Kevin -Original Message- From: Wayne

OT: Sun's JAI package install

2005-07-18 Thread Bryan Stevenson
Hey All, I'm trying to install the JAI package from Sun (so I can fire up some image conversions) on my Win XP SP2 machine running CF MX 7 and everytime I run the exe I get this message after the package unpacks itself: C:\WINDOWS\SYSTEM32\AUTOEXEC.NT The system file is not suitable for

SHA-1 encoding and least significant bits

2005-07-18 Thread Greg Morphis
I was told that I have to take a 56 bit hex number (MEID) and convert it to a 32 bit hex number (pESN). The end result should look like this.. * The upper 8 bits of pseudo-ESN shall be set to 0x80. * The lower 24 bits of pseudo-ESN shall be the 24 least significant bits of the SHA-1 digest of the

Daily DB updates from CSV files

2005-07-18 Thread Ken
Hi. I building a coldfusion app to upload the contents of a huge csv file (9 cols x 22000 rows). I am facing a few issues though. 1. A lot the cells in the csv are blank at times, producing 2 commas together, that messes up my entire array. 2. the prsence of commas in my data also creates an

Re: SOLVED: Re: OT: Sun's JAI package install

2005-07-18 Thread Qasim Rasheed
Bryan, Just to give you a head up. As far as I know you will need these three jars in the classpath of your CF installation. 1. jai_codec.jar 2. jai_core.jar 3. jimg.jar HTH On 7/18/05, Bryan Stevenson [EMAIL PROTECTED] wrote: Hey All, Well I guess if your autoexec.nt file is missing then

RE: Daily DB updates from CSV files

2005-07-18 Thread Matthew Walker
Note that cfhttp can do this automatically. You need to make sure your CSV is valid -- qualifiers around any fields containing the delimiter in the data (i.e. quotes around any data containing commas), and escape any qualifiers in the data (i.e. double up any quotes in the data).

Announcement: CFMX Exam Buster 7.0 Released

2005-07-18 Thread Brian Simmons
CFMX Exam Buster 7.0 from CentraSoft (http://centrasoft.com) CFMX Exam Buster 7.0 is the ultimate testing tool specifically designed to help ColdFusion MX 7.0 developers earn their ColdFusion MX 7.0 Certification through the Macromedia Certified Professional Program. CFMX Exam Buster 7.0 has

Re: cfforms flash character encoding

2005-07-18 Thread Paul Hastings
Wayne Putterill wrote: How can I get a flash form to use pound signs ( £ - as in the currency), they work on my testing server but not on the (shared) host. The host is in the UK, I have tried putting cfcontent type=text/html; charset=ISO-8859-1 cfset setEncoding(url,ISO-8859-1) cfset