PDF Form Filling alternate in MS-Word???

2010-02-03 Thread Arsalan Tariq Keen
Dear Experts, I want to know is there any way I can auto-fill my word documents with specific data at specific locations using ColdFusion. I have done this using PDF Forms, where I used to add texfields and then later populate them using CF. Is there anyway to achieve this using CF + MS-Word??

Re: difference between cfproperty and variables defined with This scope

2010-02-03 Thread Aaron Neff
Sry, that should've read: "In short, variables created via the cfproperty|property-generated setters (in CF9) are private-to-the-CFC. And variables in the this scope are public-to-the-CFC." > In short, variables created via the cfproperty|property-generated > setters (in CF9) are private-to-th

Re: difference between cfproperty and variables defined with This scope

2010-02-03 Thread Aaron Neff
Hi fun and learning, In short, variables created via the cfproperty|property-generated setters (in CF9) are private-to-the-CFC. I recommend reading these docs: cfproperty|property: http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-7e0b.html Implicit Get

Re: cfgrid flash href

2010-02-03 Thread Svetlin Roussev
You can do optionitem and bind it with the href. On Wed, Feb 3, 2010 at 7:10 AM, morchella wrote: > > hey guys. > i know cfgrid flash doesn't support href in cfgridcolumn > but there has to be a way? > > height="210" width="800" rowheaders="no" > onchange="getUrl('_edit_hoverArea.cfm?ha_1Id=' +

RE: coldfusion interview questions

2010-02-03 Thread Justin Scott
> Can anyone suggest if there any ebook available related > to coldfusion interview questions or any other sources... It's not ColdFusion-specific by any means, but Joel Spolsky's book "Smart and Gets Things Done" is a great guide for hiring programmers in general. For ColdFusion-specific jobs we

Re: difference between cfproperty and variables defined with This scope

2010-02-03 Thread fun and learning
>> CF 9 changed this significantly. With CF 9, using CFPROPERTY actually >> creates a public variable in addition to creating documentation. In >> addition to that, it also "creates" accessors and mutators (setters >> and getters). It doesn't actually generate visible code in your CFC, >> but thos

coldfusion interview questions

2010-02-03 Thread fun and learning
Hi, Can anyone suggest if there any ebook available related to coldfusion interview questions or any other sources... Thanks, ~| Want to reach the ColdFusion community with something they want? Let them know on the House of

Re: CF 9 Multi server IIS and Virtual Applications

2010-02-03 Thread Dave Watts
> I have found out how to create a multi server using applications on one web > root. My question to the group is about suggested > methodologies in regards to the multi server. We have an application that > causes issues with all of our other web apps, we will > definitely be segregating that o

RE: Dealing With Spiders/Bots/Crawlers

2010-02-03 Thread brad
> just trying to deal with the possibility that a user has cookies turned off. I see. Well I've pretty much said my opinion on the cookie thing, but to reiterate, people not using cookies are such a minute percentage of the web. Unfortunately, I can't find any recent numbers anywhere, but I'm

Re: Dealing with Spiders/Bots/Crawlers

2010-02-03 Thread Mike Chabot
Be careful about setting all tokens to 1 if your Web site contains sensitive information and if you are putting this info on a URL string. What will happen is that every user that comes through via a search engine will be considered the same user according to ColdFusion, which is rather bad. If Bo

Re: Dealing With Spiders/Bots/Crawlers

2010-02-03 Thread Bob Hendren
First, sorry for dual post earlier. Second, not a stupid question about cookies, but just trying to deal with the possibility that a user has cookies turned off. I'm using URLSessionFormat on all of my links to pass their session info around so the system isn't constantly treating them like a

RE: Dealing With Spiders/Bots/Crawlers

2010-02-03 Thread brad
This may be a stupid question, but are cookies really not an option for your site users? I would only be passing session ids around the URL as a last resort. I mean, it _is_ 2010 and cookies are kind of the standard for maintaining session. (Note: they preclude the necessity of putting session

Dealing with Spiders/Bots/Crawlers

2010-02-03 Thread Bob Hendren
I'm at an odd crossroads here. Up until now, I've kept my application off-limits to search engines. I've used a couple of techniques found on Ben Nadel's blog for giving them short sessions and such. Been working well. With respect to human users, I've been VERY diligent about using URLSession

Re: C:\ColdFusion8\Mail\Spool

2010-02-03 Thread John M Bliss
[bump] Does anyone happen to know whether this problem is fixed/ameliorated by upgrading from CF8 to CF9? On Tue, Dec 8, 2009 at 4:51 PM, David wrote: > > On Tue, Dec 8, 2009 at 8:16 AM, John M Bliss wrote: > > > > So this AM, my production server had not sent me my usual batch of emails > >

Dealing With Spiders/Bots/Crawlers

2010-02-03 Thread Bob Hendren
I'm at an odd crossroads here. Up until now, I've kept my application off-limits to search engines. I've used a couple of techniques found on Ben Nadel's blog for giving them short sessions and such. Been working well. With respect to human users, I've been VERY diligent about using URLSession

RE: cfmapitem

2010-02-03 Thread brad
> From: Raymond Camden > Um... so yes, CF9 has this bug. It is definitely a bug. Um. Don't > ask why it worked on my version, because I can't answer. Teacher says you have to share whatever you have with the rest of the class! :) ~Brad ~~~

RE: CF 6 on IIS7

2010-02-03 Thread Robert Landsmeer
Hi there Eric, Out of the box CF6 won't work with IIS7, and wsconfig won't help as it will refuse to work on iis7. But with some manual configuring you can get it to work. You will need to install the IIS Metabase, and manually configure the connectors in IIS. Google has some nice howto's hidde

RE: Measuring bandwidth used per user

2010-02-03 Thread Justin Scott
> Justin is this possible from client side, I do not own > the server. If you wanted to parse the web server logs you would need access to the files on the server and they could be read and parsed using CFFILE. Get with your hosting company to see if they can get you access to that information.

CF 6 on IIS7

2010-02-03 Thread Eric Roberts
I am having an issue getting CF6 to install on IIs 7 on a vista laptop. IIS is working fine. I try to finish the installation where it goes to the admin pageand I get a 404...I look and the cfide directory is non exixtant. So I fake it and create the directory structure and put a cf file in ther

Re: IE8 is killing my website

2010-02-03 Thread Marc Funaro
>This seems to only be a problem on Windows XP. Myself nor my clients have >problems with IE8 on Vista or Windows 7. I believe our problem involves XP, Vista, and 7, though I'll need to go back through some of the debug output that some of the problem users have sent. > >Are your users on a net

Re: cfmapitem

2010-02-03 Thread Raymond Camden
Um... so yes, CF9 has this bug. It is definitely a bug. Um. Don't ask why it worked on my version, because I can't answer. Good news is that it WILL be fixed. Unfortunately you are stuck for now. It isn't too hard to use Google maps "by hand" though. On Tue, Feb 2, 2010 at 9:43 PM, Azadi Sary

CF 9 Multi server IIS and Virtual Applications

2010-02-03 Thread Robert Everland
I have found out how to create a multi server using applications on one web root. My question to the group is about suggested methodologies in regards to the multi server. We have an application that causes issues with all of our other web apps, we will definitely be segregating that one in its

cfgrid flash href

2010-02-03 Thread morchella
hey guys. i know cfgrid flash doesn't support href in cfgridcolumn but there has to be a way? make the entire row a link. but i only want a link in the id column, since the other columns are for editing data. has any one done this. i have googled till i can google no more.. so i come here =]

Re: Measuring bandwidth used per user

2010-02-03 Thread derek felsher
>> I need to measure bandwidth used because this is how I >> charge. Uploading is fine to measure, but is it possible >> to measure how many times an attachment was successfully >> accessed (either opened in browser or downloaded)? > >I would advise parsing the web server logs for this information