Reading PDF Form values

2009-07-14 Thread Arsalan Tariq Keen
Hi Guys... Is there a way I can read the already stored values in a pdf form using coldfusion? Regards, Arsalan ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion

Re: Reading PDF Form values

2009-07-14 Thread AJ Mercer
if you have CF8 (or 9 beta) http://cfquickdocs.com/cf8/?getDoc=pdf#cfpdfform 2009/7/14 Arsalan Tariq Keen arsalk...@hotmail.com Hi Guys... Is there a way I can read the already stored values in a pdf form using coldfusion? Regards, Arsalan

RE: IIS Log Analyzer

2009-07-14 Thread Chuck
I use Nihuo Web Log Analyzer. http://www.nihuo.com/ Chuck -Original Message- From: Justin Scott [mailto:jscott-li...@gravityfree.com] Sent: Monday, July 13, 2009 11:26 PM To: cf-talk Subject: IIS Log Analyzer So, what are people using for analyzing IIS web traffic logs these days?

li tag

2009-07-14 Thread RamaDevi Dobbala
Hi frnds, i have code like this.. ul liRama/li /ul before rama i am getting one circle , how to decrese that circle size. Rama ~| Want to reach the ColdFusion community with something they want? Let them know on the House

Re: li tag

2009-07-14 Thread Azadi Saryev
iirc, you can't decease it's size because it is controlled by the browser's html engine. what you can do, is create an image of the marker the size you want, then use list-style-image style property of the UL tag: ul style=list-style-image:url('path/to/your/image.gif') ref:

Re: IIS Log Analyzer

2009-07-14 Thread Eric Cobb
SmarterStats rocks! http://www.smartertools.com/SmarterStats/Features/Web-Log-Analytics-Website-Statistics.aspx Thanks, Eric Cobb Certified Macromedia ColdFusion MX 7 Developer http://www.cfgears.com Justin Scott wrote: So, what are people using for analyzing IIS web traffic logs these

Pardon me, but I need to know a mailing list for SSIS questions

2009-07-14 Thread Discover Antartica
Hello All, can someone help me with finding a mailing list similar to cf-talk for SQL Server Integration Services questions? If someone can help me with this, I would be thankful! DA ~| Want to reach the ColdFusion

Re: Pardon me, but I need to know a mailing list for SSIS questions

2009-07-14 Thread Bryan Stevenson
perhaps the CF-SQL list? - 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: br...@electricedgesystems.com web: www.electricedgesystems.com Notice: This message, including any

Re: Reading PDF Form values

2009-07-14 Thread Arsalan Tariq Keen
h... I got that part... but doesn't anyone has experience reading acroforms using iText java libraries instead of using Adobe CF's built-in tags?? Regards, Arsalan -- From: AJ Mercer ajmer...@gmail.com Sent: Tuesday, July 14, 2009 1:24 PM To:

Unicode to Human Readable Character?

2009-07-14 Thread Laura Norris
so, i have a list of 4 character unicodes and i need to convert them to the human readable equivalent to save them to the database. any ideas on functions to use? examples: 00C1 0106 00C9 00CD 0139 0143 00D3 0154 ~| Want to

Weird error

2009-07-14 Thread Rick Sanders
OK, I'm updating a record in my MSSQL database table. The column that's causing the error is an ntext column. The error I'm getting is: [Macromedia][SQLServer JDBC Driver]Invalid parameter binding(s). Here's my SQL query: cfquery name=upcourse datasource=cft UPDATE dbo.Courses SET

re: Weird error

2009-07-14 Thread Jason Fisher
Lose the single quotes around the CFQUERYPARAM ... it already handles that for you: UPDATE dbo.Courses SET CourseName = '#Trim(form.coursename)#', CourseDesc = cfqueryPARAM value=#form.coursedesc# CFSQLType=CF_SQL_longvarchar /, Cost = #form.cost#, MaxStudents =

Re: Weird error

2009-07-14 Thread Matthew
Remove single quotation marks from around the cfqueryparam tag Matt On 14 Jul 2009, at 19:55, Rick Sanders c...@webenergy.ca wrote: OK, I'm updating a record in my MSSQL database table. The column that's causing the error is an ntext column. The error I'm getting is:

RE: Weird error

2009-07-14 Thread Rick Sanders
When I do that I get this error: [Macromedia][SQLServer JDBC Driver][SQLServer]Incorrect syntax near ''. The only html tags in the content are p and br /. -Original Message- From: Jason Fisher [mailto:ja...@wanax.com] Sent: July-14-09 4:00 PM To: cf-talk Subject: re: Weird error Lose

Re: Weird error

2009-07-14 Thread Matthew
Out of interest change the datatype to cf_sql_varchar and yes cfqueryparam all the variables. Matt. On 14 Jul 2009, at 20:06, Rick Sanders c...@webenergy.ca wrote: When I do that I get this error: [Macromedia][SQLServer JDBC Driver][SQLServer]Incorrect syntax near ''. The only html tags

RE: Weird error

2009-07-14 Thread Rick Sanders
Tried and still getting the same error. [Macromedia][SQLServer JDBC Driver][SQLServer]Incorrect syntax near ''. cfquery name=upcourse datasource=cft UPDATE dbo.Courses SET CourseName=cfqueryPARAM value = #form.coursename# CFSQLType = CF_SQL_varchar,CourseDesc=cfqueryPARAM value =

RE: Weird error

2009-07-14 Thread Roger Austin
Rick Sanders c...@webenergy.ca wrote: Tried and still getting the same error. [Macromedia][SQLServer JDBC Driver][SQLServer]Incorrect syntax near ''. cfquery name=upcourse datasource=cft UPDATE dbo.Courses SET CourseName=cfqueryPARAM value = #form.coursename# CFSQLType =

RE: Weird error

2009-07-14 Thread Rick Sanders
I found the error. I changed my form to a cfform. I'm passing the coursed from the query in the url: courseid=#courses.courseid#. When it was in the form tag I had to wrap cfoutput around the variable. When I changed it to a cfform I forgot to remove the cfoutput tags because it didn't need

Re: Unicode to Human Readable Character?

2009-07-14 Thread John M Bliss
Maybe...? http://cflib.org/udf/unicodeToCyrillicDos On Tue, Jul 14, 2009 at 1:21 PM, Laura Norris lnor...@tiffinweb.com wrote: so, i have a list of 4 character unicodes and i need to convert them to the human readable equivalent to save them to the database. any ideas on functions to use?

Re: Unicode to Human Readable Character?

2009-07-14 Thread Paul Hastings
Laura Norris wrote: so, i have a list of 4 character unicodes and i need to convert them to the human readable equivalent to save them to the database. any ideas on functions to use? no, these aren't 4 character unicodes, they're hexadecimal codepoints. first convert them to decimal:

Compare Two MySQL Databases?

2009-07-14 Thread Marie Taylore
What's the easiest quickest way to compare two MySQL Schemas (databases)? I don't need to compare the *data*... just the tables and their field definitions. My production instance is getting an error that my test instance is not. The code is identical, so I figure I must have left something

Re: Compare Two MySQL Databases?

2009-07-14 Thread Barney Boisvert
Take a structure-only (no data) mysqldump on both servers, and then use your choice of diff tools (command-line diff, Eclipse, BeyondCompare, etc.) to compare them. Certainly not a particularly elegant solution, but it's served me well in the past. cheers, barneyb On Tue, Jul 14, 2009 at 4:24

Re: Compare Two MySQL Databases?

2009-07-14 Thread Sonny Savage
I've used SQLyog and found it to be pretty impressive. It's around $100, but there's a 30-day trial that might get you through this issue: http://www.webyog.com/en/downloads.php#sqlyog Edward Sonny Savage On Tue, Jul 14, 2009 at 7:24 PM, Marie Taylore mt4yl...@yahoo.com wrote: What's the

Re: Compare Two MySQL Databases?

2009-07-14 Thread Gerald Guido
+1 for SQLyog. SQLyog's schema and data sync tools are great IMHO. G! On Tue, Jul 14, 2009 at 7:33 PM, Sonny Savage sonnysav...@gmail.com wrote: I've used SQLyog and found it to be pretty impressive. It's around $100, but there's a 30-day trial that might get you through this issue:

RE: Compare Two MySQL Databases?

2009-07-14 Thread cftalk
I use this Stored Procedure to compare Tables: Overview: http://www.sql-server-performance.com/articles/dba/database_comparison_sp_p1 .aspx SP http://www.benzzon.se/forum/uploads/benzzon/2006-03-27_134824_sp_CompareDB.t xt Its free and it works well... Brook -Original Message- From:

RE: Compare Two MySQL Databases?

2009-07-14 Thread cftalk
Sorry, that script was for MSSQL -Original Message- From: Barney Boisvert [mailto:bboisv...@gmail.com] Sent: July-14-09 4:31 PM To: cf-talk Subject: Re: Compare Two MySQL Databases? Take a structure-only (no data) mysqldump on both servers, and then use your choice of diff tools

Re: Compare Two MySQL Databases?

2009-07-14 Thread Marie Taylore
Sonny Gerald, Thanks for the suggestion! I downloaded it and I have a few questions: Can I have it just *show* me the differences instead of running a Sync? I don't want the *data* copied, I just want to know which field definitions might be different. Would you use database sync or

Re: Weird error

2009-07-14 Thread Judah McAuley
Also, for future suggestion, choose a more specific subject line than weird error. A subject line like this is going to make it be the last thing I check because I don't know if it is anything I have any knowledge of. If you are least mention that it is a problem with cfqueryparam and database