RE: CFWINDOW Input Focus

2007-10-16 Thread Dale Fraser
I finally worked this out. Been driving me nuts! function sessionEdit() { ColdFusion.Window.create('sessionWin', 'Sessions', 'SessionsEdit.cfm?mode=edit&sessionId='+sessionId, {x:250,y:200,width:450,height:180,resizable:false,modal:true}); ColdFusion.navigate('Sess

Re: IsXML returning false for data that XMLParse will accept

2007-10-16 Thread Ron Gowen
If I am not mistaken the XMLParse function takes a string and converts it into an XML Object therefore I believe that if you use the XMLParse function on your string and then do the isXML it will pass muster. If you notice you are running the XMLParse function first in your older code but have lef

Re: cf webservice not working for .net?

2007-10-16 Thread AJ Mercer
I have come across the same thing. But... If you want to use Spry, you need returntype="xml" I am not sure about other web 2.0 JavaScript libraries?? An article I read said to create another web service that calls the main web service, but returns string and tell .Net to use that. You can use the

Re: SYS-Con relies on "dead" technology

2007-10-16 Thread Bruce A. Bergman
Did you miss anything? Yes! Sys-Con is one of the biggest hypocritical spammers out there. Even if you forgive them for what they did with CFDJ, they are still a horrible, horrible company. Once you get on one of their mailing lists, there is NO way off of it. I started noticing that even thoug

Re: Webservice Initialization Failure?

2007-10-16 Thread James Holmes
Yes, this is what's happening and it's a standard behaviour. The Java stub objects for the webservices need to be created and this takes some time. On 10/17/07, Brendan Doherty <[EMAIL PROTECTED]> wrote: > Sounds like its trying to get the wsdl and compile the stubs after restart. > > Have seen th

RE: SYS-Con relies on "dead" technology

2007-10-16 Thread William Seiter
Wow!! They fixed the error messaging, but NOT the page throwing the error? Whatever happened to 'If your code is going to fail, make sure it 'fails gracefully'' ?? LOL William -- William E. Seiter Have you ever read a book that changed your life? Go to: www.winninginthemargins.com Enter

Re: SYS-Con relies on "dead" technology

2007-10-16 Thread Janet MacKay
>FYI - folks - go to your CF Admin and disable Robust Exception Info. >It takes 2 seconds,. > >Then go and set a site wide error handler. You can leave the file >blank. Even that is better than what you see above. Apparently they heard you ;-). The response is now: "Invalid Syntax: The email par

IsXML returning false for data that XMLParse will accept

2007-10-16 Thread Paul Vernon
This isn't really a problem for me, rather an observation of strange behaviour processing some RSS feeds after migrating from CFMX6.1 to CF8. My old 6.1 code looked like this This was replaced with the following

RE: An error occured while Parsing an XML document

2007-10-16 Thread Tim Do
second part to my question... i pass xml to the cfc (verified that it is xml by using isxml) once it gets to my cfc I do a isxml() and it says NO?! I tried using cfxml and xmlformat to try to get it back to xml but not having any luck. i need it in xml to parse out and dump into a table. Pleas

Re: Creating replicated sites with coldfusion

2007-10-16 Thread Casey Dougall
On 10/16/07, Michael E. Carluen <[EMAIL PROTECTED]> wrote: > > > I could be wrong, but I don't think IIS supports wildcard sites. Which > > is too bad, because that's actually a very elegant solution. True that, now that I ready this, it would be really cool. I have an application I'm working on

CFWINDOW Input Focus

2007-10-16 Thread Dale Fraser
I'm having trouble trying to focus to a form field that is contained in a CFWINDOW. Is there a trick to this. I've tried lots of combos with no luck Regards Dale Fraser http://learncf.com ~| Get involved in the l

RE: delivering electric goods after payment

2007-10-16 Thread Bobby Hartsfield
The download should be easy enough. Make them login to access their downloads and IF they have the rights(if they've paid), serve the file(s) up via cfcontent. This way your actual 'product' can be stored outside of the webroot so no one stumbles on the files. With a little createUUID() magic, the

RE: An error occured while Parsing an XML document

2007-10-16 Thread Tim Do
You know what's weird... I tried return type as string it gave me this error: when i change it to string i get: faultString: org.xml.sax.SAXException: Bad types (class java.lang.String -> interface org.w3c.dom.Document) but when I changed to to "any" it worked fine. And now when I change it bac

Re: Webservice Initialization Failure?

2007-10-16 Thread Brendan Doherty
Sounds like its trying to get the wsdl and compile the stubs after restart. Have seen this happen on refreshing the webservice when the wsdl has changed by not usually on server restart ~| Get the answers you are looking for on

Re: An error occured while Parsing an XML document

2007-10-16 Thread Josh Nathanson
> I'm trying to pass xml into a webservice but I'm getting an "An error > occured while Parsing an XML document" error. Tim - I think there is a problem, in that you are setting your cffunction "putTenants" returntype to "XML", but you're returning a plain string "success!". That string will no

Re: sort dataset in spry

2007-10-16 Thread Raymond Camden
Moving is a matter of selecting the current row. That is covered in the documentaiton: setCurrentRow. Please check the docs again. As for storing to the DB you need to use the loadURL function. See this blog entry here: http://www.coldfusionjedi.com/index.cfm/2006/7/12/Sending-Data-with-Spry Now

An error occured while Parsing an XML document

2007-10-16 Thread Tim Do
Hi All, I'm trying to pass xml into a webservice but I'm getting an "An error occured while Parsing an XML document" error. I'm using toXML to convert a query result set into xml and passing it to the webservice. I'm not sure whether it's the cfinvoke that is choking or is it the cfc that is chok

Re: Flex problem with Coldfusion 8

2007-10-16 Thread Rick Root
On 10/16/07, Ian Skinner <[EMAIL PROTECTED]> wrote: > Do you have a Flex Value Object|Bean|whatever defined for the records > you are returning? I don't have any such thing.. never have, actually... this worked in CF7, and I'm told it should still work. All I'm doing is returning the qry straigh

Re: sort dataset in spry

2007-10-16 Thread Raymond Camden
Moving up and down? What do you mean? Do you mean selecting different items in the dataset? If so - there is a function that will set the current row. Most of the demos show this with a table and a onCLick with the TR. I assume you then want to populate a form. Look at the examples of detail region

Re: sort dataset in spry

2007-10-16 Thread erik tom
>Did you read the Spry docs on how to apply sorts to datasets? > > >> I have read all the documentation. And still do not understand how to move and store int DB ~| Download the latest ColdFusion 8 utilities including Report Bui

Re: sort dataset in spry

2007-10-16 Thread erik tom
>Spry offers pretty good sorting capabilities: >http://labs.adobe.com/technologies/spry/samples/data_region/SortSample.html > >If you would like to give Spry a try, I suggest you read this: >http://labs.adobe.com/technologies/spry/articles/data_set_overview/index.html > >Everything else you can ski

Re: Spry and IE Caching

2007-10-16 Thread Mark Flewellen
I just do something like the following var ts = new Date(); var spry_CategoryList = new Spry.Data.XMLDataSet("categories.cfc?method=qry_CategoryList&TS=" + ts.toString(),"/root/row"); MF ~~

Re: SPAM - SYS-Con relies on "dead" technology

2007-10-16 Thread Bruce Sorge
I must say that I did subscribe to this mag when it first came out. I actually liked it. Hal Helms, Ben Forta, Simon, as well as other prominent CF developers were regular contributors, and I picked up a few things from it. When it came to PDF format, that was fine. I could print out only the p

RE: SPAM - SYS-Con relies on "dead" technology

2007-10-16 Thread Scott Stewart
No, not at all -- Scott Stewart ColdFusion Developer SSTWebworks 4405 Oakshyre Way Raleigh, NC. 27616 (703) 220-2835 http://www.sstwebworks.com http://www.linkedin.com/in/sstwebworks Boycott Sys-Con -Original Message- From: Simon Horwith [mailto:[EMAIL PROTECTED] Sent: Tuesday,

Re: sort dataset in spry

2007-10-16 Thread erik tom
>Spry offers pretty good sorting capabilities: >http://labs.adobe.com/technologies/spry/samples/data_region/SortSample.html > >If you would like to give Spry a try, I suggest you read this: >http://labs.adobe.com/technologies/spry/articles/data_set_overview/index.html > >Everything else you can ski

Re: SPAM - SYS-Con relies on "dead" technology

2007-10-16 Thread Simon Horwith
for many it was good riddance, for many others (and, in some way, for us all) it was a sad loss... but the truth is that while printed periodicals lend some credibility to a given technology, their usefulness in this day and age is definitely questionable... and whether or not we need a magazin

Re: sort dataset in spry

2007-10-16 Thread Raymond Camden
Did you read the Spry docs on how to apply sorts to datasets? On 10/16/07, erik tom <[EMAIL PROTECTED]> wrote: > I have form with drop down and I need to be able to sort by clicking up and > down buttons. I did that in JS but how about spry > > var dsProducts = new > Spry.Data.

Re: SPAM - SYS-Con relies on "dead" technology

2007-10-16 Thread Ian Skinner
I knew that CFDJ was gone, but I didn't sense any grief at its demise. No grief at its demise. But a lot of discussion on Sys-Con's public statements over the reasons behind their decision as well as how they apparently handled the matter internally with the CFDJ editorial staff. ~~

Re: sort dataset in spry

2007-10-16 Thread Massimo Foti
Spry offers pretty good sorting capabilities: http://labs.adobe.com/technologies/spry/samples/data_region/SortSample.html If you would like to give Spry a try, I suggest you read this: http://labs.adobe.com/technologies/spry/articles/data_set_overview/index.html Everything else you can skip or re

RE: SPAM - SYS-Con relies on "dead" technology

2007-10-16 Thread Billy Cox
I knew that CFDJ was gone, but I didn't sense any grief at its demise. -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 16, 2007 2:24 PM To: CF-Talk Subject: Re: SPAM - SYS-Con relies on "dead" technology But seriously, what's with all the hatred o

delivering electric goods after payment

2007-10-16 Thread j s
Looking for options for either a method or service to deliver electric goods once the payment was confirmed by a payment gateway. Any advice would greatly be appreciated. Thanks in advance. ~| Download the latest ColdFusion 8

Flash form (Gabriel Robichaud)

2007-10-16 Thread Jason Durham
Flash forms play by different rules in many cases. I doubt you can loop through a recordset and dynamically generate a Flash form. Any reason you aren't staying with an HTML form? -Original Message- From: Gabriel Robichaud [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 16, 2007 1:53

Re: Flex problem with Coldfusion 8

2007-10-16 Thread Ian Skinner
Do you have a Flex Value Object|Bean|whatever defined for the records you are returning? I am by no means an export here, but I think this is how to handle this. You would define the desired data types of all the properties of the bean for this data object. Then cast|assign|force the data ret

RE: Creating replicated sites with coldfusion

2007-10-16 Thread Michael E. Carluen
> I could be wrong, but I don't think IIS supports wildcard sites. Which > is too bad, because that's actually a very elegant solution. Hi Ben, Yes, you can. But from my experience, it has to be on a 'dedicated' IP address. By dedicated, I mean- there should be no other sites/domains sharing the

sort dataset in spry

2007-10-16 Thread erik tom
I have a drop down menu and I need to be able to sort item in that drop down menu by clicking up and down buttons and store that changes into a dataabse var dsProducts = new Spry.Data.XMLDataSet("category.cfm","categories/category",{ useCache: false});

Webservice Initialization Failure?

2007-10-16 Thread Richard Walters
Hi list, I am making a very uncomplicated cfinvoke call to a webservice to get some information about a visitor. The code works absolutely perfectly in milliseconds every time except for the very first time I run the code after a server restart. What is more puzzling is that even though I

RE: SPAM - SYS-Con relies on "dead" technology

2007-10-16 Thread Scott Stewart
Boycott Syscon http://www.sstwebworks.com/blog/index.cfm/2007/10/16/Boycotting-SysCon -- Scott Stewart ColdFusion Developer SSTWebworks 4405 Oakshyre Way Raleigh, NC. 27616 (703) 220-2835 http://www.sstwebworks.com http://www.linkedin.com/in/sstwebworks Boycott Sys-Con -Original Mes

sort dataset in spry

2007-10-16 Thread erik tom
I have form with drop down and I need to be able to sort by clicking up and down buttons. I did that in JS but how about spry var dsProducts = new Spry.Data.XMLDataSet("category.cfm","categories/category",{ useCache: false}); var dsProductFeature

Re: SPAM - SYS-Con relies on "dead" technology

2007-10-16 Thread Ian Skinner
But seriously, what's with all the hatred of Sys-Con? Did I miss something? Did you miss all the hullabaloo about Sys-Con dropping the ColdFusion Developers Journal in place of a Microsoft Silverlight journal because CF is dead? ~

RE: SPAM - SYS-Con relies on "dead" technology

2007-10-16 Thread Billy Cox
Lord Voldemort would heartily agree. But seriously, what's with all the hatred of Sys-Con? Did I miss something? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 16, 2007 1:41 PM To: CF-Talk Subject: RE: SPAM - SYS-Con relies on "dead" technol

RE: Automatically sync an access db to SQL 2005

2007-10-16 Thread Robert Harrison
> Does anyone know of a methodology to automatically move Access data to SQL Server 2005? After you've created a data base shell, right click on the DB source in SQL server 2005. You should be able to import data and table structures from access with little problem. > The Client is syncing their

Re: ColdFusion Report Builder (preview problem)

2007-10-16 Thread Becky McDermott
I was trying to preview it directly from Report Builder and the output format was the default "Flash Paper". Once I changed the format to "PDF", everything is fine now. Thank You!! > Becky, > > Are you just trying to preview it directly from Report Builder? What > format are you creating it

Re: Spry and IE Caching

2007-10-16 Thread erik tom
try using something like this SELECT ID, AlbumName, ImagePath, ImageDescription, UploadDate FROM Images #ID# >That should have read "append a random var to the request". > >You might

Re: Creating replicated sites with coldfusion

2007-10-16 Thread Ben Doom
Jessica Kennedy wrote: >> Jessica: >> Also, have you considered using wildcard DNS? As in >> http://jessica.sample.com >> You can do that by simply adding a * A host entry in your DNS manager. >> Michael > This sounds like a good Idea... what would be the proper syntax to use to get > the userna

CFFORM & Flash VS Html

2007-10-16 Thread Gabriel Robichaud
On 10/16/07, Gabriel Robichaud <[EMAIL PROTECTED]> wrote: > > Hello everyone > > I have a bit of code and I am a little confused as to why, when i change > the format attribute to ="flash", the whole thing goes crazy. All the values > in my text field are identical to the first row returned by the

Re: How to apply security to the PDF files (prevent user from printing, copying etc)?

2007-10-16 Thread Jochem van Dieten
Nellie_S wrote: > Please help. Clients upload PDF files to the server. Our goal is to restrict > some users from printing, copying, etc of PDF files(depends on the user’s > role). This could be done even as a nightly scheduled task. We are using > ColdFusion 7 and SQL Server. Does anybody have ex

Re: Creating replicated sites with coldfusion

2007-10-16 Thread Gabriel Robichaud
Hello everyone I have a bit of code and I am a little confused as to why, when i change the format attribute to ="flash", the whole thing goes crazy. All the values in my text field are identical to the first row returned by the query. However, HTML format works quite well with expected output. A

Flex problem with Coldfusion 8

2007-10-16 Thread Rick Root
I posted this problem to [EMAIL PROTECTED] a week or so ago but I haven't gotten a solution yet. So I'm trying flexcoders and cf-talk I have an application that doesn't seem to be working properly. Basically, I've got a query (in coldfusion 8) that returns a few columns directly to flex via a

SOT: Automatically sync an access db to SQL 2005

2007-10-16 Thread [EMAIL PROTECTED] [EMAIL PROTECTED]
Hi all, I hope this is not too off topic. Does any one know of a methodology to automatically move Access data to SQL Server 2005? Here is the scenario. The Client is syncing their AS400 to Access. They want to upload the Access db to the server and then run a routine to basically purge the

Re: SPAM - SYS-Con relies on "dead" technology

2007-10-16 Thread Charlie Griefer
who said anything about fear? On 10/16/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Fear of the name of a thing increases the power of a thing in your > life. > > William > > -Original Message > -From: [EMAIL PROTECTED] > -Date: Oct 16, 2007 11:26 > -To: "CF-Talk" > -Subj: RE: SPAM -

Re: Creating replicated sites with coldfusion

2007-10-16 Thread Jochem van Dieten
Jessica Kennedy wrote: >> Also, have you considered using wildcard DNS? As in >> http://jessica.sample.com > > This sounds like a good Idea... what would be the proper syntax to use to get > the username field if I went with a wildcard variable? ListGetAt(cgi.host_name, ListLen(cgi.host_name, ".

RE: SPAM - SYS-Con relies on "dead" technology

2007-10-16 Thread [EMAIL PROTECTED]
Fear of the name of a thing increases the power of a thing in your life. William -Original Message -From: [EMAIL PROTECTED] -Date: Oct 16, 2007 11:26 -To: "CF-Talk" -Subj: RE: SPAM - SYS-Con relies on "dead" technology - -As penance I will start the "Boycott magazine publisher who shal

RE: SPAM - SYS-Con relies on "dead" technology

2007-10-16 Thread Scott Stewart
As penance I will start the "Boycott magazine publisher who shall not be named" movement :) sas -- Scott Stewart ColdFusion Developer SSTWebworks 4405 Oakshyre Way Raleigh, NC. 27616 (703) 220-2835 http://www.sstwebworks.com http://www.linkedin.com/in/sstwebworks -Original Message

Re: Creating replicated sites with coldfusion

2007-10-16 Thread [EMAIL PROTECTED]
What you do is use ListToArray(list [, delimiters ]) to parse the url. ListToArray(cgi.request_uri,"/") This will give you an array with each section of the url in its own cell. You want to use the information stored 'after' the url to do your search. -Original Message -From: [EMAIL

Re: Creating replicated sites with coldfusion

2007-10-16 Thread Ian Skinner
"Also, I will be using an IIS server, not apache, and I don't think there is a mod_rewrite equivalent with IIS, hopefully somebody can prove me wrong though!" I have never used it, but I have read on the list and others many times that there are mod_rewrite ports to IIS out there. ~~~

RE: Creating replicated sites with coldfusion

2007-10-16 Thread Michael E. Carluen
> > This sounds like a good Idea... what would be the proper syntax to use to > get the username field if I went with a wildcard variable? I don't have a > lot of experience with CGI variables, which seems to be what I will need > to do this. > You can treat the CGI scope just like any other st

Re: Creating replicated sites with coldfusion

2007-10-16 Thread Jessica Kennedy
Ok, this was what my original thought was... can you explain this part better for me please: This page will parse the cgi.request_uri string into an array based on the "/" character. -- This is the part that I have been struggling with... thanks! >Use a custom 404 page. You will need to

Re: Creating replicated sites with coldfusion

2007-10-16 Thread Jessica Kennedy
>Jessica: >Also, have you considered using wildcard DNS? As in >http://jessica.sample.com >You can do that by simply adding a * A host entry in your DNS manager. >Michael > > > >> This sounds like a good Idea... what would be the proper syntax to use to get the username field if I went with a wi

Re: structisempty vs. structcount

2007-10-16 Thread Michael Dinowitz
Clean code is its own reward. If there's no real difference in performance then I'm all for clean code. Premature (or uninformed) optimization is one of the biggest sources > of evil in programming. ;) > ~| Get the answers you

Re: ColdFusion Report Builder (preview problem)

2007-10-16 Thread Rob Parkhill
Becky, Are you just trying to preview it directly from Report Builder? What format are you creating it in? Rob ~| Get involved in the latest ColdFusion discussions, product development sharing, and articles on the Adobe Labs

Re: How to apply security to the PDF files (prevent user from printing, copying etc)?

2007-10-16 Thread Bryan Stevenson
hmmm...guess I better find some time to review some of the new CF 8 stuff beyond AJAX ;-) 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.electricedgesyste

RE: How to apply security to the PDF files (prevent user from printing, copying etc)?

2007-10-16 Thread Brad Wood
Yeah, cfpdf lets you set the password and security access. i.e. keep them from printing. In addition to the obvious print screen, it is up to the individual pdf viewer to choose to obey or ignore the security flags in a PDF. That means Adobe Acrobat disables the print button, but dozens of other

Re: structisempty vs. structcount

2007-10-16 Thread Barney Boisvert
On 10/16/07, Michael Dinowitz <[EMAIL PROTECTED]> wrote: > Theoretically, structisempty() simply checks if there's at least > 1 key in a structure and returns that information rather than counting each > key. I can't speak for other JVM implementations, but Sun's implementation for Windows maintai

Re: MSSQL Timeout (Connection: reset)

2007-10-16 Thread Rebecca Wells
I'm getting the same error on a frequent basis and we are not using VMWare. ~| Create robust enterprise, web RIAs. Upgrade to ColdFusion 8 and integrate with Adobe Flex http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP A

Re: SPAM - SYS-Con relies on "dead" technology

2007-10-16 Thread Simon Horwith
reminder - links to sys-con pages not only in blog entries and web pages but also in e-mails to HoF mail lists (whose threads are web-accessible) benefit Sys-Con. Unless you disagree with the statement that Sys-Con is no friend of the F community (and I think we all agree on this), let's try t

RE: SYS-Con relies on "dead" technology

2007-10-16 Thread Bobby Hartsfield
Agreed. Thanks for resending it. ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Crow T. Robot [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 16, 2007 12:02 PM To: CF-Talk Subject: Re: SYS-Con relies on "dead" technology worst...si

ColdFusion Report Builder (preview problem)

2007-10-16 Thread Becky McDermott
Hello, I am trying to use the Report Builder to build a simple report. I've followed tutorials on-line to build the report and when I try to preview it, I get the following error: Internet Explorer Script Error An error has occurred in the script on this page Line: 2 Char: 1

Re: How to apply security to the PDF files (prevent user from printing, copying etc)?

2007-10-16 Thread Ron Gowen
I don't think there will be a way to trully secure a PDF from printing, however you might put a watermark on those viewed by those with lesser permissions On 10/16/07, Raymond Camden <[EMAIL PROTECTED]> wrote: > > While that is true - printing is something you can block with CFPDF so > I assume Ac

Re: structisempty vs. structcount

2007-10-16 Thread Michael Dinowitz
My initial concern was one of aesthetics. With 18+ different variable scopes to dump, mixing not structisempty() and structcount() just looked messy. After further review and comments here, I see that I should err on the side of proper functions for the proper function rather than having things loo

Re: How to apply security to the PDF files (prevent user from printing, copying etc)?

2007-10-16 Thread Paul Hastings
Raymond Camden wrote: > If there is any way you can upgrade to CF8, this is super easy with > the CF8 CFPDF tag. if not, it's relatively easy using iText. ~| ColdFusion 8 - Build next generation apps today, with easy PDF and Ajax

Re: How to apply security to the PDF files (prevent user from printing, copying etc)?

2007-10-16 Thread Ron Gowen
If they can view it they can print screen it On 10/16/07, Bryan Stevenson <[EMAIL PROTECTED]> wrote: > > printing a PDF is a function of the Adobe Reader PluginI think you'll > find > it impossible AFAIK to integarte your security with the plugin.so if > they > can view then they can print

Re: Galleon page

2007-10-16 Thread mac jordan
On 16/10/2007, Raymond Camden <[EMAIL PROTECTED]> wrote: > > 6. But it's cooler in 8. > > Great! That means this client will have to move their hosting to us :) Thanks for the info. -- mac jordan www.webhorus.net www.nibblous.com www.photocena.com ~~~

Re: How to apply security to the PDF files (prevent user from printing, copying etc)?

2007-10-16 Thread Raymond Camden
While that is true - printing is something you can block with CFPDF so I assume Acrobat would let you do it as well. So it would be blocked in the Adobe Reader Plugin. I know I tested it with CF8. It doesn't stop PrintScreen of course. On 10/16/07, Ron Gowen <[EMAIL PROTECTED]> wrote: > If they ca

RE: Don't quote me on this

2007-10-16 Thread Dave Watts
> I have a form that allows the user to edit data in the database. > Let's now say that data looks like this: > > 14'6" cable > > Now, how does one handle the FORM element INPUT TYPE="text" > with a prefilled value in here? > > value="#data#" will only show: 14'6 in the text box. > value='#data

Re: How to apply security to the PDF files (prevent user from printing, copying etc)?

2007-10-16 Thread Bryan Stevenson
printing a PDF is a function of the Adobe Reader PluginI think you'll find it impossible AFAIK to integarte your security with the plugin.so if they can view then they can print!! Cheers Bryan Stevenson B.Comm. VP & Director of E-Commerce Development Electric Edge Systems Group Inc. pho

Re: Don't quote me on this

2007-10-16 Thread Bryan Stevenson
wrap the value in HTMLEditFormat() or maybe it's HTMLCodeFormat()can't recall which right nowbut one of those will solve your problem ;-) Cheers Bryan Stevenson B.Comm. VP & Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 25

Re: Don't quote me on this

2007-10-16 Thread Charlie Griefer
value="#HTMLEditFormat(data)#" On 10/16/07, Rand Thacker <[EMAIL PROTECTED]> wrote: > I have a form that allows the user to edit data in the database. > Let's now say that data looks like this: > > 14'6" cable > > Now, how does one handle the FORM element INPUT TYPE="text" with a prefilled > valu

Re: structisempty vs. structcount

2007-10-16 Thread Barney Boisvert
structCount(url) GT 0 < or NOT structIsEmpty(url) Relying on CF's implicit type conversion is generally a bad idea, particularly when you're dealing with boolean values. There are just way too many weirdnesses lurking in the shadows with boolean conversions. Of the two, I'd prefer the l

Re: How to apply security to the PDF files (prevent user from printing, copying etc)?

2007-10-16 Thread Raymond Camden
If there is any way you can upgrade to CF8, this is super easy with the CF8 CFPDF tag. On 10/16/07, Nellie_S <[EMAIL PROTECTED]> wrote: > Please help. Clients upload PDF files to the server. Our goal is to restrict > some users from printing, copying, etc of PDF files(depends on the user's > role)

cfchart and spry tabs

2007-10-16 Thread Will Swain
Hi, I have a couple of really simple cfcharts in a spry tab. If I browse to one of the other tabs and then come back to the tab with the charts, I get an "Image Expired. Please refresh the page to see the image" error where the charts should display. I want people to be able to flick through the

RE: SYS-Con relies on "dead" technology

2007-10-16 Thread John Rossi
Google is your friend, or enemy depending on how you look at it. http://people.langeconsulting.com/matt/ -Original Message- From: Tom Chiverton [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 16, 2007 11:42 AM To: CF-Talk Subject: Re: SYS-Con relies on "dead" technology On Tuesday 16

How to apply security to the PDF files (prevent user from printing, copying etc)?

2007-10-16 Thread Nellie_S
Please help. Clients upload PDF files to the server. Our goal is to restrict some users from printing, copying, etc of PDF files(depends on the user’s role). This could be done even as a nightly scheduled task. We are using ColdFusion 7 and SQL Server. Does anybody have experience in that? Thanks

Re: SYS-Con relies on "dead" technology

2007-10-16 Thread Crow T. Robot
worst...signature...ever On 10/16/07, Tom Chiverton <[EMAIL PROTECTED]> wrote: > > On Tuesday 16 Oct 2007, [EMAIL PROTECTED] wrote: > > http://www2.sys-con.com/globaldelete.cfm?emil= > > I wonder who [EMAIL PROTECTED] is. > > -- > Tom Chiverton. Are you a great ColdFusion programmer, who knows Rea

Don't quote me on this

2007-10-16 Thread Rand Thacker
I have a form that allows the user to edit data in the database. Let's now say that data looks like this: 14'6" cable Now, how does one handle the FORM element INPUT TYPE="text" with a prefilled value in here? value="#data#" will only show: 14'6 in the text box. value='#data#' will only show: 1

Re: Galleon page

2007-10-16 Thread Raymond Camden
I'm still having issues with *.riaforge.org, but www.riaforge.org works. So it may still be in transition. All teasing aside - if someone has a need for Galleon now, ping me offlist. On 10/16/07, Ben Forta <[EMAIL PROTECTED]> wrote: > Just to be fair to Ray, it was not his problem. I moved DNS be

Re: Galleon page

2007-10-16 Thread Raymond Camden
6. But it's cooler in 8. Ok not really, but everything is cooler in 8 I say. 4 out 5 dentists agree. On 10/16/07, mac jordan <[EMAIL PROTECTED]> wrote: > On 16/10/2007, Raymond Camden <[EMAIL PROTECTED]> wrote: > > > > Should be back up now. It is for me. If you need a personal copy of > > Galleo

Re: Galleon page

2007-10-16 Thread mac jordan
On 16/10/2007, Raymond Camden <[EMAIL PROTECTED]> wrote: > > Should be back up now. It is for me. If you need a personal copy of > Galleon, let me know. I offer full downloads for only 4,999, but today > I'm running a special - one copy of Galleon 2 for one iPhone. :> A veritable bargain! Ray,

Re: CF8 Docs: A backward step

2007-10-16 Thread Tom Chiverton
On Tuesday 16 Oct 2007, [EMAIL PROTECTED] wrote: > >> Has anyone noticed the CF8 docs no longer have a search > >> feature in the local docs. Does in Builder. I thought it would have in CFEclipse too, if you've installed the RDS plugins. -- Tom Chiverton. Are you a great ColdFusion programmer,

Re: SYS-Con relies on "dead" technology

2007-10-16 Thread Tom Chiverton
On Tuesday 16 Oct 2007, [EMAIL PROTECTED] wrote: > http://www2.sys-con.com/globaldelete.cfm?emil= I wonder who [EMAIL PROTECTED] is. -- Tom Chiverton. Are you a great ColdFusion programmer, who knows Reactor and ColdSpring, and has done some Flex work ? Would you like to work for a top 30 law

Re: Galleon page

2007-10-16 Thread Raymond Camden
Should be back up now. It is for me. If you need a personal copy of Galleon, let me know. I offer full downloads for only 4,999, but today I'm running a special - one copy of Galleon 2 for one iPhone. :> On 10/16/07, mac jordan <[EMAIL PROTECTED]> wrote: > On 16/10/2007, mac jordan <[EMAIL PROTEC

RE: Galleon page

2007-10-16 Thread Ben Forta
Just to be fair to Ray, it was not his problem. I moved DNS between servers, and some of the changes talk longer to propagate than others. But, all seems to be working now. Sorry about this guys. --- Ben -Original Message- From: mac jordan [mailto:[EMAIL PROTECTED] Sent: Tuesday, Octobe

Re: SYS-Con relies on "dead" technology

2007-10-16 Thread Raymond Camden
Even better: http://www2.sys-con.com/globaldelete.cfm?emil= Notice the full path of the error. I don't normally publicly "OUT" problems like this, but hey, Sys-Con deserves it. FYI - folks - go to your CF Admin and disable Robust Exception Info. It takes 2 seconds,. Then go and set a site wide

Re: SYS-Con relies on "dead" technology

2007-10-16 Thread Tom Chiverton
On Tuesday 16 Oct 2007, [EMAIL PROTECTED] wrote: > http://www2.sys-con.com/[EMAIL PROTECTED] I get exactly the same page for any* string, rightly so. -- Tom Chiverton. Are you a great ColdFusion programmer, who knows Reactor and ColdSpring, and has done some Flex work ? Would you like to work f

SYS-Con relies on "dead" technology

2007-10-16 Thread Scott Stewart
http://www2.sys-con.com/[EMAIL PROTECTED] &unsubtype=SOAWorld I guess Silverlight can't do email hehehhehehehe -- Scott Stewart ColdFusion Developer SSTWebworks 4405 Oakshyre Way Raleigh, NC. 27616 (703) 220

Re: CF8 Docs: A backward step

2007-10-16 Thread Chris Hebb
>Still, why remove a highly functional feature? > > >Robert B. Harrison >Director of Interactive services >Austin & Williams >125 Kennedy Drive, Suite 100 Hauppauge NY 11788 >T : 631.231.6600 Ext. 119 >F : 631.434.7022 >www.austin-williams.com > >Great advertising can't be either/or... It must be

Re: Galleon page

2007-10-16 Thread mac jordan
On 16/10/2007, mac jordan <[EMAIL PROTECTED]> wrote: > > Anyone know what's happened to http://galleon.riaforge.org/ ? I'm getting > some sort of landing page here. Thanks, all, for the update -- mac jordan www.webhorus.net www.nibblous.com www.photocena.com

Re: Galleon page

2007-10-16 Thread Matt Quackenbush
+1 on the DNS issue diagnosis. On 10/16/07, Che Vilnonis wrote: > > Ray is having DNS problems. > ~| Create robust enterprise, web RIAs. Upgrade to ColdFusion 8 and integrate with Adobe Flex http://www.adobe.com/products/coldfu

Re: IIS 7.0 for CFML Developers

2007-10-16 Thread Vince Bonfanti
>> "Internet Information Server (IIS) 7.0 is the newest release of >> Microsoft’s web server for Windows. Currently shipping with Windows >> Vista, IIS 7.0 is also part of Windows Server 2008, scheduled for > >I can't believe anything would even RUN on Vista. It's still just as useless >as ev

RE: Galleon page

2007-10-16 Thread Andy Matthews
Ray blogged this morning that he was having problems with DNS for RiaForge. You were probably seeing the results of that. -Original Message- From: mac jordan [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 16, 2007 9:12 AM To: CF-Talk Subject: Galleon page Anyone know what's happened t

RE: Galleon page

2007-10-16 Thread Will Swain
He's having DNS problems: http://www.coldfusionjedi.com/index.cfm/2007/10/16/RIAForge-DNS Will -Original Message- From: mac jordan [mailto:[EMAIL PROTECTED] Sent: 16 October 2007 15:12 To: CF-Talk Subject: Galleon page Anyone know what's happened to http://galleon.riaforge.org/ ? I'

  1   2   >