Re: Variable Amount of text in a Fixed Size Box

2010-06-01 Thread Dominic Watson
Is there any way that you can have the client enter the teaser text seperately from the main article body, i.e. 'teaser copy'. This could be used for page meta description, search results, etc. and will hand responsibility to the client for ensuring it fits. Hopefully, they'll be so frustrated

Re: Comma delimited list

2010-06-01 Thread Kevan Stannard
Hi Bill, looks like you just need to reference your getlistings query: !--- Loop through all listings --- cfloop query=getlistings !--- Display listing details here --- !--- Display feature codes --- cfloop index=code list=#getlistings.FEATURE_CODES# delimiters=#chr(44)#

Re: REgarding SQL Server (express vs full)

2010-06-01 Thread Andrew Clarke
On 2010-05-31, at 23:49, Dave Watts wrote: Without knowing any more than you've mentioned, I think you'd be fine with Express as long as you conform to whatever its license limitations happen to be. It doesn't come with a management console, but if you don't need that you should be just

RE: Variable Amount of text in a Fixed Size Box

2010-06-01 Thread Bobby Hartsfield
Done that one too... It seems like every one that came up had a different solution. Some clients didn't care about html in the boxes, some did. I say start holding the designers accountable. Bring them in and make them help with a solution. I've been away from client to client development for

Re: REgarding SQL Server (express vs full)

2010-06-01 Thread Jerry Barnes
Aqua Data studio should work fine as a front end. ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion Archive:

Coldfusion Builder Stored Procedures

2010-06-01 Thread Paul Alkema
Hi, Does anyone know if there's a way to view a databases stored procedures from inside CF builder's RDS Dataview pane? From what I see it displays tables, views, synonyms and system tables but no way to display stored procedures for easy use. This seems like a major flaw to me. Any ideas?

Re: Coldfusion Builder Stored Procedures

2010-06-01 Thread Raymond Camden
I don't believe it is supported. I did a quick search on the CFBuilder public bug tracker and this was the closest related bug: http://cfbugs.adobe.com/bugreport/flexbugui/cfbugtracker/main.html#bugId=75148 It seems a bit broad though. I'd consider adding a very specific bug. I'd vote for it.

Homesite 9 project

2010-06-01 Thread Michael Dinowitz
I'll be updating Homesite to the latest (CF9) docs. If anyone has any suggestions, requests, whatever, please let me know. I'll also try and update some of the tag controls. I have a program to do this visually but it'll be a long process. Thanks -- Michael Dinowitz Lead Author - Adobe

RE: Homesite 9 project

2010-06-01 Thread DURETTE, STEVEN J (ATTASIAIT)
I'm willing to help. Just let me know what you want me to do! -Original Message- From: Michael Dinowitz [mailto:mdino...@houseoffusion.com] Sent: Tuesday, June 01, 2010 11:31 AM To: cf-talk Subject: Homesite 9 project I'll be updating Homesite to the latest (CF9) docs. If anyone has

Re: Homesite 9 project

2010-06-01 Thread Raymond Camden
When done, you should also consider hosting it on RIAForge. We have a misc category. On Tue, Jun 1, 2010 at 10:31 AM, Michael Dinowitz mdino...@houseoffusion.com wrote: I'll be updating Homesite to the latest (CF9) docs. If anyone has any suggestions, requests, whatever, please let me know.

RE: Homesite 9 project

2010-06-01 Thread Mark A. Kruger
Michael, Let me know how I can help there are 2 of us here that still use homesite quite a bit. -Mark Mark A. Kruger, MCSE, CFG (402) 408-3733 ext 105 Skype: markakruger www.cfwebtools.com www.coldfusionmuse.com www.necfug.com -Original Message- From: Michael Dinowitz

Re: Homesite 9 project

2010-06-01 Thread Michael Dinowitz
That was the plan. :) On Tue, Jun 1, 2010 at 11:43 AM, Raymond Camden rcam...@gmail.com wrote: When done, you should also consider hosting it on RIAForge. We have a misc category. On Tue, Jun 1, 2010 at 10:31 AM, Michael Dinowitz mdino...@houseoffusion.com wrote: I'll be updating

RE: Homesite 9 project

2010-06-01 Thread Gaulin, Mark
Is the homesite docs format the same as CF Studio (html files in these folders: Help\htmldocs, Extensions\Docs\CFMLTags, and Extensions\Docs\CFMLFunctions)? I have an automated process to convert the official help web site to files in this format, but I haven't done it for CF9 yet (since I use

PDF multi-line input

2010-06-01 Thread Chad Gray
I have a PDF with a text field that is “Multi-Line”. You can type into it and use carriage return to write paragraphs of text. So I type in it and use a carriage return. Submit the form to a CFQuery and insert the data into a varchar field. I use CFPDF and CFPDFformparam to take the field

RE: PDF multi-line input

2010-06-01 Thread Robert Harrison
. 119 F : 631.434.7022 http://www.austin-williams.com Great advertising can't be either/or.  It must be . Plug in to our blog: AW Unplugged http://www.austin-williams.com/unplugged __ Information from ESET Smart Security, version of virus signature database 5164 (20100601

Re: PDF multi-line input

2010-06-01 Thread Ian Skinner
On 6/1/2010 11:48 AM, Robert Harrison wrote: #replace(FORM.Contact_Name, #chr(10)#, #chr(13)#)# You need the ## around the characters. Otherwise you're looking to replace the literal string 'chr(10)'. No you don't. #replace(FORM.Contact_Name, chr(10), chr(13))# Is perfectly fine and

CF CAPTCHA?

2010-06-01 Thread Robert Harrison
__ Information from ESET Smart Security, version of virus signature database 5164 (20100601) __ The message was checked by ESET Smart Security. http://www.eset.com ~| Order the Adobe Coldfusion Anthology now! http

HTML 5, has anyone done anything more than played with it

2010-06-01 Thread Scott Stewart
I'm starting to dig into HTML 5, and so far, apart from some of the CSS3 attributes, I don't see anything that jumps out and says ready for prime time. The browser support is spotty at best, let's be real does it really matter if Opera supports something? If IE and Firefox don't have support for

Re: CF CAPTCHA?

2010-06-01 Thread Wil Genovese
Smart Security, version of virus signature database 5164 (20100601) __ The message was checked by ESET Smart Security. http://www.eset.com ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe

RE: PDF multi-line input

2010-06-01 Thread Chad Gray
Either way, it seems to be when I pull the data from the database and use CFPDFFORM and insert it back into the PDF. If I submit the PDF there are extra carriage returns in the data. Using the replace of chr(10) and chr(13) did not help either. It is like the PDF displays single carriage

RE: HTML 5, has anyone done anything more than played with it

2010-06-01 Thread Andy Matthews
While I agree with you that it's not ready, one of the benefits to using it is that if a browser doesn't understand something, then it'll just skip it. And if you're deadset on running your code as fully HTML 5, you could always output it as XML then render it with your own XSLT doc while you

RE: HTML 5, has anyone done anything more than played with it

2010-06-01 Thread Andy Matthews
On a side note, here's a dissenting viewpoint: http://ishtml5ready.com/ -Original Message- From: Scott Stewart [mailto:webmas...@sstwebworks.com] Sent: Tuesday, June 01, 2010 2:11 PM To: cf-talk Subject: HTML 5, has anyone done anything more than played with it I'm starting to dig

RE: PDF multi-line input

2010-06-01 Thread Chad Gray
AH HA! Found it. replace(FORM.Customer_Name, Chr(13) Chr(10), chr(13), ALL) Apprently chr(13) chr(10) represents a Windows newline. Looks like this works. I will keep testing. Chad -Original Message- From: Chad Gray [mailto:cg...@careyweb.com] Sent: Tuesday, June 01, 2010 3:32 PM

Re: HTML 5, has anyone done anything more than played with it

2010-06-01 Thread Wil Genovese
So is this the official opinion? ALl I get when I hit that page is the following error. Content Encoding Error The page you are trying to view cannot be shown because it uses an invalid or unsupported form of compression. * Please contact the website owners to inform them of this

Re: HTML 5, has anyone done anything more than played with it

2010-06-01 Thread Scott Stewart
I've seen a couple of Javascript libraries that create support for the semantic tags (header, footer etc), but support for canvas, video and audio won't be mainstream unitl IE9 comes out (I'm not a M$ fanboy, but it is the most widely used browser). On Tue, Jun 1, 2010 at 3:32 PM, Andy Matthews

cfgrid refresh

2010-06-01 Thread Kevin Johnson
I have a bindable cfgrid in cf8 that updates just fine (I see the red triangle in the cell). What I need to know is how to refresh the grid after the update so the original cfc that fills the grid runs again to show new updated information. I found these commands but not sure where to put them

Re: CF CAPTCHA?

2010-06-01 Thread Raymond Camden
Unplugged http://www.austin-williams.com/unplugged __ Information from ESET Smart Security, version of virus signature database 5164 (20100601) __ The message was checked by ESET Smart Security. http://www.eset.com

Query Results sent from search engines CGI variable?

2010-06-01 Thread UXB Internet
I have a client who wants to make their site more user friendly when someone is sent to them from a search engine. What they want is when someone comes from a search engine link that we obtain the original search query (if sent) and in addition to showing the requested page present a list of

RE: Query Results sent from search engines CGI variable?

2010-06-01 Thread Che Vilnonis
Try parsing the cgi.http_referer variable. It won't always have a value, but when it does, you can extract the keywords used when querying the search engine. Regards, Che -Original Message- From: UXB Internet [mailto:denn...@uxbinternet.com] Sent: Tuesday, June 01, 2010 4:35 PM To:

RE: Query Results sent from search engines CGI variable?

2010-06-01 Thread Justin Scott
What I don't know is if it is available in the CGI variables Cold Fusion can get from IIS6. The few times I've had to do this I parsed out the original query from the CGI.HTTP_Referer variable (URL string of the page that linked to yours). The format is slightly different depending on which

Re: Query Results sent from search engines CGI variable?

2010-06-01 Thread Barney Boisvert
It'll be in the referrer, if present, which is sent by the browser. cgi.http_referer, split it up, check the domain to identify the search engine, and then check the query string to find the search query under the corresponding variable. cheers, barneyb On Tue, Jun 1, 2010 at 1:34 PM, UXB

Re: Query Results sent from search engines CGI variable?

2010-06-01 Thread Wil Genovese
Try using cfdump to output the CGI scope. Then you will be able to see all the CGI variable available to you. cfdump var=#cgi# Wil Genovese Sr. Web Application Developer/ Systems Administrator Wil Genovese Consulting wilg...@trunkful.com www.trunkful.com On Jun 1, 2010, at 3:34 PM, UXB

RE: Capturing a Flash Site Screen Shot

2010-06-01 Thread UXB Internet
I apologize if this information is not applicable since I have come into this thread late. But If you are looking for a screenshot program that captures flash websites and can be accessed via a cfexecute command I have had very good luck with SiteShoter from Nir Sofer. It has been more stable

Can anyone see what's wrong with this cfc method?

2010-06-01 Thread Rick Faircloth
I'm getting this error: Context validation error for the cffunction tag. The start tag must have a matching end tag. An explicit end tag can be provided by adding /cffunction. ... For this cffunction, and I cannot figure out why: cfcomponent displayName=properties hint=Handles

RE: Can anyone see what's wrong with this cfc method?

2010-06-01 Thread Bobby Hartsfield
Move cfargument above the cfset -Original Message- From: Rick Faircloth [mailto:r...@whitestonemedia.com] Sent: Tuesday, June 01, 2010 5:00 PM To: cf-talk Subject: Can anyone see what's wrong with this cfc method? I'm getting this error: Context validation error for the

Re: Can anyone see what's wrong with this cfc method?

2010-06-01 Thread Raymond Camden
You must put var statements (and other CFML) after any cfargument tag. On Tue, Jun 1, 2010 at 4:00 PM, Rick Faircloth r...@whitestonemedia.com wrote: I'm getting this error:     Context validation error for the cffunction tag.     The start tag must have a matching end tag.  An explicit

RE: Can anyone see what's wrong with this cfc method?

2010-06-01 Thread Rick Faircloth
Dang! It's always the simplest things! Thanks, Ray and Bobby! Rick -Original Message- From: Raymond Camden [mailto:rcam...@gmail.com] Sent: Tuesday, June 01, 2010 5:11 PM To: cf-talk Subject: Re: Can anyone see what's wrong with this cfc method? You must put var statements (and

Re: HTML 5, has anyone done anything more than played with it

2010-06-01 Thread Kris Sisk
I've seen a couple of Javascript libraries that create support for the semantic tags (header, footer etc), but support for canvas, video and audio won't be mainstream unitl IE9 comes out (I'm not a M$ fanboy, but it is the most widely used browser). It won't even be mainstream then. There's

RE: HTML 5, has anyone done anything more than played with it

2010-06-01 Thread Mark A. Kruger
Kris, But don't you think that HTML over smart phones is an up and coming market - as the small screen becomes more and more important it seems like an important item to learn. -Mark Mark A. Kruger, MCSE, CFG (402) 408-3733 ext 105 Skype: markakruger www.cfwebtools.com www.coldfusionmuse.com

Re: Coldfusion Builder Stored Procedures

2010-06-01 Thread Mark Mandel
I'm pretty sure the data tools plungin from eclipse has this functionality, if you are looking for a better integrated database experience in eclipse. Sent from my mobile device On 2 Jun 2010 01:29, Raymond Camden rcam...@gmail.com wrote: I don't believe it is supported. I did a quick search

Re: CF CAPTCHA?

2010-06-01 Thread Mary Jo Sminkey
Before I go writing my own CAPTCHA generating method I just want to check to see if CF has something to offer along those lines. Frankly, I'd dump the user-unfriendly captcha and use cfformprotect http://cfformprotect.riaforge.org/ --- Mary Jo

Re: CF CAPTCHA?

2010-06-01 Thread Raymond Camden
Yeah, I'll +1 this. When I switched to it on my blog (and used akismet/honeypot), I was able to turn off captcha completely. I still get spam, but maybe one or two a week. On Tue, Jun 1, 2010 at 5:20 PM, Mary Jo Sminkey mary...@cfwebstore.com wrote: Before I go writing my own CAPTCHA

RE: HTML 5, has anyone done anything more than played with it

2010-06-01 Thread Eric Roberts
That's one of the big selling points with smart phones like the Droid and iPhone... -Original Message- From: Mark A. Kruger [mailto:mkru...@cfwebtools.com] Sent: Tuesday, June 01, 2010 4:36 PM To: cf-talk Subject: RE: HTML 5, has anyone done anything more than played with it Kris,

Re: HTML 5, has anyone done anything more than played with it

2010-06-01 Thread Sean Corfield
On Tue, Jun 1, 2010 at 12:10 PM, Scott Stewart webmas...@sstwebworks.com wrote: I'm starting to dig into HTML 5, and so far, apart from some of the CSS3 attributes, I don't see anything that jumps out and says ready for prime time. The browser support is spotty at best, let's be real does it

Re: HTML 5, has anyone done anything more than played with it

2010-06-01 Thread Dan G. Switzer, II
The great thing (or not so great, depending on your view) is that older browsers will simply ignore the markup they don't understand. That allows you to gracefully fallback for older legacy browsers. -Dan On Tuesday, June 1, 2010, Sean Corfield seancorfi...@gmail.com wrote: On Tue, Jun 1,

imageRead plus imagepaste plus imageGetBlob issue

2010-06-01 Thread Bobby Hartsfield
I've got this issue that is driving me batty. I have a random rotating watermarked image as the masthead on my site. I have all of the images that can be used in a single directory. I query that directory to get the list of images then pick a random one to use. Once I have the image, the

Re: imageRead plus imagepaste plus imageGetBlob issue

2010-06-01 Thread Azadi Saryev
browser css/images caching? i did see the problem you described on the link you posted... what if you put the css declaration into the page (instead of external stylesheet) and add a random url param to the bg image url? style type=text/css #masthead {background:

Re: referencing #application.applicationname#

2010-06-01 Thread Mike Kear
The appropriate use of locks can be really important. Here's a case in point that cost me a LOT: I did an application for a client where to save processing time, I put a couple of variables used many times into the application scope. In this case I wasnt allowed to deploy the application to

Re: HTML 5, has anyone done anything more than played with it

2010-06-01 Thread Les Mizzell
(20100601) __ The message was checked by ESET NOD32 Antivirus. http://www.eset.com ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag

Re: HTML 5, has anyone done anything more than played with it

2010-06-01 Thread Mark Mandel
On Wed, Jun 2, 2010 at 2:24 PM, Les Mizzell lesm...@bellsouth.net wrote: It won't even be mainstream then. There's still an awful lot of people out there running XP XP isn't broke. I've seen no reason to fix it myself so far. Guess I'm one of those awful lot of people. If MS had given me