[cfaussie] Re: Select Boxes

2006-03-27 Thread Patrick Branley
what about pre-loading the set of data into a JS Array then adding onchange event to the select to populate the 2nd value into a div aligned to the right of the select ?On 3/27/06, grant [EMAIL PROTECTED] wrote: yeah, what steve said. maybe even a div with it's overflow set to scroll.On 3/27/06,

[cfaussie] Re: Select Boxes

2006-03-27 Thread Mark Ireland
If this can be done at all, it might be done with the style sheet. Maybe work out the length of the longest right hand string and pad the other right hand ones, then concatenate the left and right strings? From: Patrick Branley [EMAIL PROTECTED] Reply-To: cfaussie@googlegroups.com To:

[cfaussie] Re: Dealing with a random number of images

2006-03-27 Thread Steve Onnis
Sorry Should be just cfset queryAddColumn(q_getProperties, Images, arrayNew(1)) When it returns multiple items, thats when you use the group attributre for the CFOUTPUT tag. cfoutput group=popID #property# cfoutputoutput the images/cfoutput /cfoutput Steve

[cfaussie] VIC User Group

2006-03-27 Thread Dale Fraser
Still waiting for one of these to happen. Perhaps it's time we get someone else to organise it, it's almost April and I got 3 emails telling me the first one would be in February. Anyone who wants to volunteer? Regards Dale Fraser --~--~-~--~~~---~--~~ You

[cfaussie] Re: cfstats

2006-03-27 Thread Theo Galanakis
Thanks Mark. -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark Stanton Sent: Monday, 27 March 2006 4:32 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: cfstats C:\path_to_cf_stat cfstat 1 stats-log.txt Should run cfstat polling

[cfaussie] Does anyone here know how LUA

2006-03-27 Thread Andrew Scott
I am looking for someone who knows lua and php and might be able to convert some php code to coldfusion for me. Regards Andrew Scott Analyst Programmer CMS Transport Systems Level 2/33 Bank Street South Melbourne, Victoria, 3205 Phone: 03 96997988 - Fax: 03 9699 7976 Quote:

[cfaussie] Re: Dealing with a random number of images

2006-03-27 Thread Steve Onnis
the thing is your doing queries where they are not needed all you needed to do was do what your doing with the query, but create a whole new query instead of populating a new field for example // !--- Get all the properties

[cfaussie] Re: Dealing with a random number of images

2006-03-27 Thread Seona Bellamy
I hadn't thought of doing it that way, but it makes a whole lot of sense. Thanks for that, I'll have a fiddle with it and see if I can get it going this way. :) Cheers, Seona.On 28/03/06, Steve Onnis [EMAIL PROTECTED] wrote: the thing is your doing queries where they are not neededall you needed

[cfaussie] cfobject calling java class that has a data accessor in it

2006-03-27 Thread cfkuz
i am having a problem executing a java object from a coldfusion page. i have a java program which on the server when run from command line is as follows: java ShortestPath 0 3232 and this outputs the shortest route between 0 and 3232 i am trying to send those values from coldfusion page but

[cfaussie] 3rd April Sydney Developers study group

2006-03-27 Thread Chris Velevitch
Monday 3rd April is the next meeting of the study group. We will be studying the Flex application framework Caringorm. Please read the articles prior to the meeting (see http://www.flashdev.org.au/program). At the meeting, the moderator will lead discussion and with questions about the topic. The

[cfaussie] Public / Private Key Encryption

2006-03-27 Thread Dale Fraser
We need to do Public / Private Key encryption on our data files, anyone got any recommended libraries / solutions. Something CF or Java would bee needed, along with a C++ library. Regards Dale Fraser --~--~-~--~~~---~--~~ You received this message because you

[cfaussie] Re: Public / Private Key Encryption

2006-03-27 Thread Mark Stanton
HI Dale Not sure how far you want to push it but if you are keen to invest some time effort you can do it with the JCE (Java Cryptographic Extensions) and an RSA provider like bouncycastle. The upside is its all native java either provided with the JVM or open source. The downside is it takes