CFopenchat not working in IE

2010-08-20 Thread Harish Kumar
I have installed the cfopenchat locally and also on server.It works fine in FF/Chrome but in IE what happens is it after entering username it displays the chat window but it is blank though it shows status as Connected on top. If I try to type something message and send it is displayed in

Powerpoint to Flash conversion

2010-08-20 Thread Harish Thapliyal
I have read that CF9 allows to convert PPT to flash but I am not able to do so.Can someone help me here.I have used the cfdocument tag to convert word-to-pdf and html-to-flash file. Does anyone have idea on this one.I am new to CF9. Regards, Harish

Re: CFopenchat not working in IE

2010-08-20 Thread Rick Root
Harish, I just did a vanilla install of CFOpenChat here: http://www.it.dev.duke.edu/public/cfopenchat-1.11 The only thing I did was set the datasource and added cfsetting showdebugoutput=no to the application.cfm It seems to work just fine in IE for me. Rick

Re: Powerpoint to Flash conversion

2010-08-20 Thread James Holmes
Are you thinking of the cfpresentation tag? http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WS08731025-2134-4bc8-A7CF-4751AF3628BC.html http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-7910.html

CF and Sharepoint without cfsharepoint tag

2010-08-20 Thread Fernanda Lima
Hi there, I was wondering if anyone had to integrate CF with Sharepoint before the cfsharepoint came along. I have CF8 and am currently having a hard time consuming the UpdateListItems method of the API. This method takes two parameters, first a string and second an XML snippet that contains

date format fo mySql

2010-08-20 Thread Rob Voyle
Hi Folks I have a coldfusion variable expireDate=Dec. 10, 2010 That I want to insert as a date into a mySql database The table cell is set up as a date but I can't find the right cf date format to get the insert to work. I keep getting a syntax error. Thanks Rob Robert J. Voyle,

Re: date format fo mySql

2010-08-20 Thread Jim Eisenhauer
Is your field in the db set up as a DATE or DATETIME? Jim Eisenhauer On Fri, Aug 20, 2010 at 9:26 AM, Rob Voyle r...@voyle.com wrote: Hi Folks I have a coldfusion variable expireDate=Dec. 10, 2010 That I want to insert as a date into a mySql database The table cell is set up as

Re: date format fo mySql

2010-08-20 Thread Jim Eisenhauer
Where is the date you need to insert coming from as well? A form? and/or is it a literal string like 'Dec. 10, 2010'... or is the form field passing an actual date variable? Jim Eisenhauer On Fri, Aug 20, 2010 at 9:28 AM, Jim Eisenhauer eisenha...@gmail.comwrote: Is your field in the db set

Re: date format fo mySql

2010-08-20 Thread Rick Root
On Fri, Aug 20, 2010 at 12:26 PM, Rob Voyle r...@voyle.com wrote: Hi Folks I have a coldfusion variable        expireDate=Dec. 10, 2010 That I want to insert as a date into a mySql database The table cell is set up as a date but I can't find the right cf date format to get the insert

VSpider and Multiple Directories

2010-08-20 Thread Blizzm
I would like to have multiple directories used in a vspider collection.  Do I need to create a separate collection for each directory or can I specify each directory in the -start option and just rely on a single collection instead? Thanks in advance

Re: date format fo mySql

2010-08-20 Thread Michael Grant
CreateODBCDate(expireDate) or CreateODBCDateTime(expireDate) On Fri, Aug 20, 2010 at 12:26 PM, Rob Voyle r...@voyle.com wrote: Hi Folks I have a coldfusion variable expireDate=Dec. 10, 2010 That I want to insert as a date into a mySql database The table cell is set up as a date

Re: date format fo mySql

2010-08-20 Thread rex
Rick is right. Use cfqueryparam and your problems will go away: INSERT INTO xTable(xDate) VALUES (cfqueryparam value=Dec. 10, 2010 cfsqltype=cf_sql_date /); That's for a DATE column. If you are doing a DATETIME column, use cf_sql_timestamp instead. Rick Root wrote: On Fri, Aug 20, 2010 at

Re: date format fo mySql

2010-08-20 Thread rex
wierd, my first reply didn't go through... Rick is right. Use cfqueryparam and your problems will go away: INSERT INTO xTable(xDate) VALUES (cfqueryparam value=Dec. 10, 2010 cfsqltype=cf_sql_date /); That's for a DATE column. If you are doing a DATETIME column, use cf_sql_timestamp

Re: High ASCII characters and jQuery

2010-08-20 Thread Ron Gowen
Some possible things you might consider checking. Is the data coming out of a nvarchar or nchar column in our database? Do you have enable high ascii checked in within your DSN setting in the admin panel? Probably a long shot but: are your Javascript file(s) saved as UTF-8? HTH On Thu, Aug