Re: CFPOP fails on unicode-1-1-utf-7 ????

2004-11-08 Thread Allan Cliff - CFUG Spain
Try http://store.newmediadevelopment.net/cfdevelopment.cfm (CFX_POP) Windows only though. 8-(( If you are on Linux you are f*cked Allan - Original Message - From: "Anders Green" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, November 08, 2004 3:17 PM Subject: CFPOP

Re: Forcing text to wrap in table cell

2004-11-03 Thread Allan Cliff - CFUG Spain
What if you live in Llanfairpwllgwyngyllgogerychwyrndrobwll-llantysiliogogogoch ? - Original Message - From: "dave" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, November 03, 2004 10:05 AM Subject: Re: Forcing text to wrap in table cell > and the british have >

Re: UNIX Image Resizer Tag

2004-10-18 Thread Allan Cliff - CFUG Spain
We use imagemagick - Original Message - From: <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, October 18, 2004 3:43 PM Subject: UNIX Image Resizer Tag > We're looking for an image resize tag to be used in a Unix/CFMX > environment. Anybody know of one? > > Googling is

Re: CFMX Certification

2004-05-24 Thread Allan Cliff - CFUG Spain
There are certain people on the list that replied earlier that need to realise that not everyone can pay for software. Some countries pay peanuts to their programmers. Hence Linux and other free programs. They showed no respect to Vishnu and should ethically have NOT written to the list and polite

Re: [cftalk] RE: XML encoding

2004-04-01 Thread Allan Cliff - CFUG Spain
s 'iso-8859-1'. or if you want to   show as http response, you should use .   Thanks,   --   Hiroshi   >-----Original Message-   >From: Allan Cliff - CFUG Spain [mailto:[EMAIL PROTECTED]   >Sent: Thursday, April 01, 2004 2:51 AM   >To: CF-Talk   >Subject: XML encodi

XML encoding

2004-03-31 Thread Allan Cliff - CFUG Spain
Whenever I create an xml document dynamically using it gives me How can I change it to ISO-8859-1 so the document will accept accents etc. Thanks Allan Cliff [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: [cftalk] RE: Stored Procedures

2004-02-20 Thread Allan Cliff - CFUG Spain
  Sent: Friday, February 20, 2004 12:03 PM   Subject: RE: [cftalk] RE: Stored Procedures   try,   SET @query = @query +  ' AND Message LIKE '  + "'%" + @searchtext +   "%'"   basically you are missing the quote around the like   -Original Message

Re: [cftalk] RE: Stored Procedures

2004-02-20 Thread Allan Cliff - CFUG Spain
rom: Mike Townend   To: CF-Talk   Sent: Friday, February 20, 2004 11:43 AM   Subject: [cftalk] RE: Stored Procedures   try adding a size to the varchar   CREATE PROC GetMessages   @fromid int,   @toid int,   @searchtext varchar(100)   should work   HTH   -Original Message-   From: Allan Cli

Stored Procedures

2004-02-20 Thread Allan Cliff - CFUG Spain
I am trying to move a query to a Stored Procedure. I want to add a LIKE to it but doesn't seem to work. It seems to find the first letter only and then if it finds that it works Example: Message Body: "My name is Allan" Search Text: "a" - Found 1 result Search Text: "b" - Found 0 results Search