Re: How to set Locale to Malaysia

2012-09-25 Thread Leigh
Ah, I did not realize they finally got around to certifying 1.6. IIRC I tried 1.6 under CF8 once and it would not even start. But that must have been a while ago. -Leigh ~| Order the Adobe Coldfusion Anthology now! http://ww

Re: How to set Locale to Malaysia

2012-09-25 Thread Paul Hastings
On 9/26/2012 10:46 AM, Leigh wrote: > > ������ >� oops, i missed to an opportunity to plug ICU4J ;-) i > > Man I cannot believe it... I was going to recommend that first :)� I think > CF8 uses 1.4, btw. after actually bothering to look: http://helpx.adobe.com/coldfusion/kb/oracl

Re: How to set Locale to Malaysia

2012-09-25 Thread Leigh
   >  oops, i missed to an opportunity to plug ICU4J ;-) i Man I cannot believe it... I was going to recommend that first :)  I think CF8 uses 1.4, btw. -L ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com

Re: How to set Locale to Malaysia

2012-09-25 Thread Paul Hastings
On 9/26/2012 3:27 AM, Dave Hatz wrote: > Is there a way to set the Locale to Malaysia using CF8? oops, i missed to an opportunity to plug ICU4J ;-) if you can't upgrade java or cf, you can always use the ICU4J library. it's ULocale class does have resources for ms_MY. and i still *really* wis

Re: How to set Locale to Malaysia

2012-09-25 Thread Paul Hastings
On 9/26/2012 3:27 AM, Dave Hatz wrote: > > I have never worked with Locale before, but we have a client in Malaysia that > wants us to use their Currency symbol of RM instead of $. I have checked our > CF8 for supported Locale's and don't see 1 for Malaysia. what version of java is your server r

Re: Justify text in CFDOCUMENT?

2012-09-25 Thread .jonah
Thanks. I was really just interested for future reference. I'm sticking with cfdocument for this project. On 9/25/12 7:09 PM, Gerald Guido wrote: >>> Are there any writeups on doing that kind of thing? > > Not that II am aware of. This is all stuff that I figured out myself via > trial and error

Re: Justify text in CFDOCUMENT?

2012-09-25 Thread Gerald Guido
>> Are there any writeups on doing that kind of thing? Not that II am aware of. This is all stuff that I figured out myself via trial and error. lots of error ;) I will be back on tomorrow and I can pull up my notes. Google RTF and CF in the interim. BTW I have been ALL over the whole "creating

Re: Justify text in CFDOCUMENT?

2012-09-25 Thread Russ Michaels
I believe you can also do similar with open office documents as well, install open office on the server and use its API, I think there may even be a CF API wrapper On Wed, Sep 26, 2012 at 12:52 AM, .jonah wrote: > > Interesting. > > Are there any writeups on doing that kind of thing? > > On 9/2

Re: Justify text in CFDOCUMENT?

2012-09-25 Thread .jonah
Interesting. Are there any writeups on doing that kind of thing? On 9/25/12 4:40 PM, Gerald Guido wrote: >>> 2. Use iText. > iText can a PITA for complex documents. I found it to be *much* less labor > intensive to use a RTF document and add/edit content to the text file and > converting it to a

Re: Justify text in CFDOCUMENT?

2012-09-25 Thread Gerald Guido
>> 2. Use iText. iText can a PITA for complex documents. I found it to be *much* less labor intensive to use a RTF document and add/edit content to the text file and converting it to a PDF using oolib http://oolib.riaforge.org/ I have been able to get much nicer formatting with that method comp

Re: What does "+no+post+sending+forms+are+found" do?

2012-09-25 Thread Claude Schnéegans
It looks like a search engine which is clumsily redirecting search result to some of your pages. ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Arch

Re: Justify text in CFDOCUMENT?

2012-09-25 Thread Phillip Vector
Or use a table and align. On Sep 25, 2012 4:27 PM, "Andy Allan" wrote: > > This is an outstanding bug going back to 2005 when CF7 came out. > > The underlying engine that provides cfdocument doesn't support it and > Adobe have confirmed numerous times they can't fix it because of the > underlyin

What does "+no+post+sending+forms+are+found" do?

2012-09-25 Thread Les Mizzell
In what looks like an injection attempt or something (?), what exactly does the following do? somepage.cfm?Result:+using+proxy+177.103.197.203:8080;+no+post+sending+forms+are+found; I've got a script in my application file that's stopped/caught a bunch of these over the last few days. ~~~

Re: Justify text in CFDOCUMENT?

2012-09-25 Thread .jonah
I vote for live-with-it at this point. It was a client request and I don't think they'll be too sore if they don't get their text justified... ;) On 9/25/12 2:26 PM, Andy Allan wrote: > This is an outstanding bug going back to 2005 when CF7 came out. > > The underlying engine that provides cfdoc

Re: Justify text in CFDOCUMENT?

2012-09-25 Thread Andy Allan
This is an outstanding bug going back to 2005 when CF7 came out. The underlying engine that provides cfdocument doesn't support it and Adobe have confirmed numerous times they can't fix it because of the underlying engine. Basically, they need to rewrite it. So your options for now are: 1. Liv

Justify text in CFDOCUMENT?

2012-09-25 Thread .jonah
I'm creating HTML with CF and then converting it to a PDF with CFDOCUMENT. It doesn't seem to support justifying text. Is there a way to make it do so? I've set in the CSS: p { text-align:justify; } But the text still comes out ragged right... ~~

How to set Locale to Malaysia

2012-09-25 Thread Dave Hatz
I have never worked with Locale before, but we have a client in Malaysia that wants us to use their Currency symbol of RM instead of $. I have checked our CF8 for supported Locale's and don't see 1 for Malaysia. Is there a way to set the Locale to Malaysia using CF8? ~~~

RE: Any reason a cfhttp post can't be made in a component method?

2012-09-25 Thread Brook Davies
Hi Rick, There is no reason why this should not work via the CFC method or even via the direct ajax method. Some gateways however restrict access to approved IPs, so the ajax method, originating from the end user IP may not work directly, which is why you probably want to route it through a CFC.

RE: Any reason a cfhttp post can't be made in a component method?

2012-09-25 Thread Rick Faircloth
Ok... next question. Can a jQuery ajax function be used to send post variables to a component method and have a cfhttp function post those variables to another domain, in this case, https://test.authorize.net/gateway/transact.dll ??? I'm at my wits end trying to process form data into two parts.

Re: Any reason a cfhttp post can't be made in a component method?

2012-09-25 Thread Raymond Camden
Nope. On Tue, Sep 25, 2012 at 7:15 AM, Rick Faircloth wrote: > > Can anyone think of a reason that a cfhttp post can't be > made within a component method? > > Rick > > ~| Order the Adobe Coldfusion Anthology now! http://www.am

RE: msaccess on 64bit

2012-09-25 Thread DURETTE, STEVEN J
I vaguely remember doing something with the Office 2010 ACE drivers, but I don't remember it well. All of our Access stuff was converted to SQL 2008 so I don't even have an example. At least this might get you started. Steve -Original Message- From: Russ Michaels [mailto:r...@michael

msaccess on 64bit

2012-09-25 Thread Russ Michaels
I know this is a sore subject, but the customer needs it for a legacy system and no moving to MSSQL or MySQL is not an option right now. I can get the DSN's working manually by doping this. create DSN via %systemdrive%\Windows\System32\odbcad32.exe and then via %systemdrive%\Windows\SysWOW64\

Any reason a cfhttp post can't be made in a component method?

2012-09-25 Thread Rick Faircloth
Can anyone think of a reason that a cfhttp post can't be made within a component method? Rick ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archi