[cfaussie] Coldfusion and RAM

2007-02-04 Thread Scott Thornton
Thanks for your reply I will research it some... Joel Cass [EMAIL PROTECTED] 01/02/2007 10:01 am The most I ever got out of standard was 1280M. That was on a computer with 4GB of RAM. The main issue is that the block of RAM that it uses needs to be contiguous, that is, it needs a

[cfaussie] Re: What version of Vista?

2007-02-04 Thread Scott Barnes
On 2/3/07, Shane Farmer [EMAIL PROTECTED] wrote: On 2/3/07, Andrew Muller [EMAIL PROTECTED] wrote: And another interesting fact is that Apple have increased their market share of the US laptop sector to 12% and it's still growing, just the facts. I must agree, if I got a laptop, an

[cfaussie] OT: Javascript: Enter key form submit

2007-02-04 Thread Scott Thornton
Hi, User presses enter key, I want the form to submit with the correct button focused. My attempt does not seem to properly focus so on the action page, the button BTN_FIND is not defined. script language=javascript function trapEnterKey() { Key = window.event.keyCode; if

[cfaussie] OT: Translation services

2007-02-04 Thread Angus Johnson
Hi Guys, Has anyone had any dealings with a company that specialises in translation services? I need to to translate some content and UI resource bundles into a bunch of European languages as well as Chinese. I'm looking for a one stop shop that will do the lot with QA handled by them. Not

[cfaussie] Re: OT: Translation services

2007-02-04 Thread Scott Thornton
SBS tv is always advertising what you are after.. Angus Johnson [EMAIL PROTECTED] 05/02/2007 11:18 am Hi Guys, Has anyone had any dealings with a company that specialises in translation services? I need to to translate some content and UI resource bundles into a bunch of European languages

[cfaussie] Re: OT: Translation services

2007-02-04 Thread Dale Fraser
Angus, We do this regularly (too regularly) we have tried several; including SBS and overseas ones, but now use and strongly recommend. CTC www.ctc.com.au http://www.ctc.com.au/ They also have offices in both Melbourne Sydney which is good for us. If you want more specifics,

[cfaussie] Re: What version of Vista?

2007-02-04 Thread Scott Barnes
Hey, I didn't start it :) just contributing to an existing discussion. Its not as if CFAUSSIE goes OT most times anyway. On 2/5/07, Dale Fraser [EMAIL PROTECTED] wrote: Dear Scott et All. Do yourself a favor and move this discussion to another list. Everyone else, I can't believe

[cfaussie] Re: OT: Javascript: Enter key form submit

2007-02-04 Thread Steve Onnis
Um Why are you even bothering to trap the event? Just use the onSubmit attribute of the form. _ From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Blair McKenzie Sent: Monday, 5 February 2007 12:06 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: OT:

[cfaussie] OT: Javascript: Enter key form submit

2007-02-04 Thread Scott Thornton
Thankyou. Solution is: script language=javascript function trapEnterKey() { Key = window.event.keyCode; if (Key == 13) { window.event.returnValue=false; var button = document.getElementById('BTN_FIND'); button.click();