[cfaussie] Re: CFAussie Community Head Count

2007-06-03 Thread darryl lyons
Still read the list.. Ping. -- Darryl http://www.acheron.org/darryl/ On 01/06/07, Matt Voerman [EMAIL PROTECTED] wrote: Hi Guys, Just a quick note to let you guys know that we at the Adobe Australia office haven't forgotten about you, and do monitor this (and several other) lists on a

[cfaussie] Re: Auto Truncate csv file for import into SQL Server.

2007-01-04 Thread darryl lyons
Dunno about within the BULK INSERT statement, but if you use DTS, you can basically write VBscript that did that. Darryl On 04/01/07, Chris Ellem [EMAIL PROTECTED] wrote: Does anyone know of a way to auto truncate a column in a csv file of say length char(50), into a table column that is

[cfaussie] Re: javascript question :: select default value

2006-11-16 Thread darryl lyons
If you didn't want to use an onload method of persisting this information, you could merely store the last selectedIndex against the DOM element itself.. It just depends on how the initial default value is being set (via DOM or part of the static HTML). That way, you can just set the

[cfaussie] Re: Simplified Chinese encoding

2006-09-16 Thread darryl lyons
Ryan,I've only ever used UTF-8 in the past, as I found working with any other encoding (either getting data into or out of the database) to be pretty unreliable. SQL Server for instance isn't too good at storing double-byte characters, but works with Unicode fine. The other issue is forcing

[cfaussie] Re: Querying across multiple databases

2006-09-13 Thread darryl lyons
Nothing wrong with cross-database joins - heaps quicker than a QofQ. On 13/09/06, Barry Beattie [EMAIL PROTECTED] wrote: Thanx Rod well, bugger me, it worked! cfquery name=qry datasource=FOUREX SELECT SCHED.StartDateTime, SCHED.EndDateTime, SCHED.Quiz_ID, INST.AbsoluteSerialNum FROM

[cfaussie] Re: Fullasagoog Still Very Sick

2006-09-12 Thread darryl lyons
If you don't like Goog, then use MXNA. I've got the ColdFusion smart category set up as a live bookmark in Firefox, and the top 15 or so entries in it (at the time of writing) are all ColdFusion related.

[cfaussie] Re: Session variable strangeness

2006-08-24 Thread darryl lyons
across requests. That's my take on it anyway. Joel Who has not opened his flag burning kit since 2005 -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] Behalf Of darryl lyons Sent: Wednesday, 23 August 2006 9:50 PM To: cfaussie@googlegroups.com Subject

[cfaussie] Re: Session variable strangeness

2006-08-23 Thread darryl lyons
I'm guessing its in reference to the days prior to CFMX, where you had to lock reads to SESSION scoped variables. On 23/08/06, Scott Thornton [EMAIL PROTECTED] wrote: Hi, Why would you suggest not re-using the variable as session.episode? I will give the structKeyExists a go today

[cfaussie] Re: DHTML Data Grid

2006-08-22 Thread darryl lyons
Another one to look at is http://www.treegrid.com/. I've never seen anything as good as this one. -- Darryl http://www.acheron.org/darryl/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups cfaussie group. To post

[cfaussie] Re: Fullasagoog a waste of time.

2006-08-19 Thread darryl lyons
Why not just use MXNA's idea -- have two ColdFusion fees. There is a regular, static ColdFusion feed, and theres a we think these are ColdFusion posts ColdFusion feed (Robin's idea). That way you can allow people to choose. On 19/08/06, Scott Barnes [EMAIL PROTECTED] wrote: This whole thread

[cfaussie] Re: Fullasagoog a waste of time.

2006-08-17 Thread darryl lyons
The thing to remember is that a lot of those blogs would have just signed up in the ColdFusion category, because that was the only one that made sense to use (e.g. that is what I did). -- Darryl http://www.acheron.org/darryl/ --~--~-~--~~~---~--~~ You received

[cfaussie] Re: Fullasagoog a waste of time.

2006-08-17 Thread darryl lyons
MXNA has a smart category for ColdFusion which pretty much looks the content of the post to determine whether or not it is CF-related. -- Darryl http://www.acheron.org/darryl/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

[cfaussie] Re: CF vs ...

2006-08-16 Thread darryl lyons
Dumping Notes is a good thing.. On 11/08/06, cfgroupie [EMAIL PROTECTED] wrote: Hey just to add more fuel to the fire. We just had a company meeting last night and they had a guest speaker there from Microsoft, talking about SOLUTIONS ironically. They are coming out with Studio 2005 with

[cfaussie] Re: FusionDebug Released

2006-08-14 Thread darryl lyons
Dale, Yes, I saw the release the other day as well. Looks pretty good. Let us know if you come across any issues with it. On 14/08/06, Dale Fraser [EMAIL PROTECTED] wrote: I downloaded and installed the Coldfusion Debugger FusionDebug and have to say I'm impressed. I've blogged it, if

[cfaussie] Re: anyone else with grief: MS06-040 patch and CF (JRun)?

2006-08-14 Thread darryl lyons
None at Morgans yet.. On 14/08/06, Barry Beattie [EMAIL PROTECTED] wrote: what we've done is disabled the batch script that checks the machine for life every period or so (and then restarts it if dead). just wanted to test the water on who else had woes... thanx On 8/14/06, Mark

[cfaussie] Re: Tim Buntel back with Adobe!

2006-07-01 Thread darryl lyons
Actually, I started with CFML back in 1997/98, when I *think* it was v4.5?? Darryl On 01/07/06, Scott Barnes [EMAIL PROTECTED] wrote: I was working (1996, Hijinx.com) on pbitz.com - or was it pbits.com, not sure .. anyway, i was graphics guy who was paid to design UI for sites. Then these

[cfaussie] Re: Ajax and CF

2006-06-15 Thread darryl lyons
Andrew, Can you send some code snippets up to the list? I am not sure why you are having troubles here? Using CFJSON you should be able to serialise the cf array into JSON array notation, and then simply run eval(jsonstring) to get the array back as a js object. Darryl On 15/06/06, Andrew Scott

[cfaussie] Re: Ajax and CF

2006-06-15 Thread darryl lyons
Just a little more to add to the pot.. If you return a string, inside an XML packet, or otherwise, that looks like this: [{foo:woo},{foo:bah}] and then run eval() on it in JavaScript, you will get an array (length=2), where each element is a struct (object) with a key of foo. This may also

[cfaussie] Re: [OT] javascript checked attribute

2006-06-12 Thread darryl lyons
You can't add the checked attribute after the input has been created, it must be part of the createElement method. Try this: var checked = ; if ( parentListItem.className == inherit ) { checked = checked; } var newCheckbox = document.createElement( input type=checkbox name=itemToDeploy

[cfaussie] Re: [OT] File upload with Ajax

2006-06-07 Thread darryl lyons
To be honest, I have not done it. I've seen the IFRAME trick around the traps, and there is an interesting example here - http://www.15seconds.com/issue/010522.htm (IE only). Darryl On 6/7/06, Taco Fleur [EMAIL PROTECTED] wrote: Is there any way to upload a file with AJAX? I know you can

[cfaussie] Re: calling COM on a remote server.

2006-06-01 Thread darryl lyons
Further to this, the COM object itself must be registered to accept remote calls, via DCOM I think. On 6/1/06, Gary Menzel [EMAIL PROTECTED] wrote: [ABN AMRO Morgans run 6 load balanced machines (but through a hardware load balancer).] With regard to the original question of running COM (in

[cfaussie] Re: Where have all the CF developers gone?

2006-05-09 Thread darryl lyons
Agreed. One of the problems with CFSCRIPT is that it is not ECMAScript compliant. When switching between JavaScript and CFSCRIPT, it can often get confusing - especially when you are dealing with conditions. I imagine this will be the same case with developers who shift between AS3 and CFSCRIPT.

[cfaussie] Re: tvguide.com.au

2006-04-11 Thread darryl lyons
Train was late today -- playing with the signals again? On 4/11/06, Scott Barnes [EMAIL PROTECTED] wrote: hehehe someone has to manage the daycares ;) On 4/11/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Government Managed Isn't that a contradiction in terms? Scott Barnes

[cfaussie] Re: stock exchange web service

2006-03-22 Thread darryl lyons
Here is one. We use IRESS ourselves (as do most of the brokers). http://www.iress.com.au/information/info_ws_pd.asp Darryl On 3/22/06, Steve Onnis [EMAIL PROTECTED] wrote: Does anyone know of a webservice that I can use to access the ASX at all? As well as this, a site that has a good

[cfaussie] Re: Call Java Class (Java Code Attached)

2006-03-21 Thread darryl lyons
Frankly, I think you should get the Java guys to write you a wrapper class. I think Mark is right, the problem is with the class. Darryl On 3/21/06, Dale Fraser [EMAIL PROTECTED] wrote: Actually, Once I replaced the script for cfscript It still cant seem to find a Constructor. Error

[cfaussie] Re: online payment processing (again)

2006-03-17 Thread darryl lyons
I've found Camtech to be good in the past. They've now got a Java-based version of their gateway, so integrating with CF is pretty easy. I guess my advice would be to avoid any service that takes the customer away from the site (like the National one, as an example), as there is technically more

[cfaussie] Re: Two words.....

2006-03-04 Thread darryl lyons
I only saw Elvis. On 3/4/06, Scott Barnes [EMAIL PROTECTED] wrote: Here's a hot tip: Don't drink until 4am the night BEFORE you do a presentation. I struggled really hard to get through mine yesterday... Must say, Elvis lives strong within gavin cooney. On 3/3/06, Mike Kear [EMAIL

[cfaussie] Re: Two words.....

2006-03-03 Thread darryl lyons
Yeah, my head hurt this morning. On 3/3/06, Vorn [EMAIL PROTECTED] wrote: OH! Keynote!?! Here I was thinking everyone was going downstairs for the Keno Damn. On 3/3/06, Gavin Cooney [EMAIL PROTECTED] wrote: how about vodka red bull hangover? i can't believe i missed the

[cfaussie] Re: [OT] Hosting Brisbane

2006-02-27 Thread darryl lyons
Creatop provide hosting services. Might be worth looking into. They are located in Brisbane.http://www.mysmarthost.com/index.cfm?MenuID=119TopMenuID=114 DarrylOn 2/27/06, Taco Fleur [EMAIL PROTECTED] wrote: I think you are right, there is nothing in Brisbane that canaccommodate me. Yes it is

[cfaussie] Re: [OT] Reference to JS object

2006-02-21 Thread darryl lyons
Your problem is that you need to reference the function in the onclick as part of the INSTANCE of the object. Otherwise, the onclick event is firing a call to a global method.E.g.TabbedInterface.prototype.doMakeActive = function(obj){}TabbedInterface.prototype.doAddTab = function(){var

[cfaussie] Re: [OT] Reference to JS object

2006-02-21 Thread darryl lyons
VAR there will be visible when the function is actually triggered by the onclick call. Gary On 2/21/06, darryl lyons [EMAIL PROTECTED] wrote: Your problem is that you need to reference the function in the onclick as part of the INSTANCE of the object. Otherwise, the onclick event is firing