[cfaussie] Re: OT: looking for a copy of infomodeller
thanx Chris, that's the beast... and here I was thinking you couldn't get blood out of a (Microsoft) stone cheers barry.b On 6/6/06, Chris Velevitch <[EMAIL PROTECTED]> wrote: > > www.microsoft.com/downloads/release.asp?ReleaseID=27489 > > On 6/6/06, Barry Beattie <[EMAIL PROTECTED]> wrote: > > > > Hi All > > > > many ancient histories ago, I used to use a data modelling tool called > > infomodeller (from the theories of Terry Halpin and co). > > > > the tool was bought by Asymetrix then Microsoft, incorperated into > > Visio and then dropped. > > > > but it was not dead yeta free to download copy of the origional > > tool was released, which I did at the time...and can't find now in my > > archives nor on the internet anymore. asymetrix is a lost cause, MS > > always is. > > > > has anyone got a copy that they kept? it had some neat ideas that > > others don't *quite* do...hence me looking > > > > > > thanx > > barry.b > > > > > > > > > > -- > Chris Velevitch > Manager - Sydney Flash Platform Developers Group > www.flashdev.org.au > > > > --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to cfaussie@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cfaussie -~--~~~~--~~--~--~---
[cfaussie] Re: OT: looking for a copy of infomodeller
www.microsoft.com/downloads/release.asp?ReleaseID=27489 On 6/6/06, Barry Beattie <[EMAIL PROTECTED]> wrote: > > Hi All > > many ancient histories ago, I used to use a data modelling tool called > infomodeller (from the theories of Terry Halpin and co). > > the tool was bought by Asymetrix then Microsoft, incorperated into > Visio and then dropped. > > but it was not dead yeta free to download copy of the origional > tool was released, which I did at the time...and can't find now in my > archives nor on the internet anymore. asymetrix is a lost cause, MS > always is. > > has anyone got a copy that they kept? it had some neat ideas that > others don't *quite* do...hence me looking > > > thanx > barry.b > > > > -- Chris Velevitch Manager - Sydney Flash Platform Developers Group www.flashdev.org.au --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to cfaussie@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cfaussie -~--~~~~--~~--~--~---
[cfaussie] OT: looking for a copy of infomodeller
Hi All many ancient histories ago, I used to use a data modelling tool called infomodeller (from the theories of Terry Halpin and co). the tool was bought by Asymetrix then Microsoft, incorperated into Visio and then dropped. but it was not dead yeta free to download copy of the origional tool was released, which I did at the time...and can't find now in my archives nor on the internet anymore. asymetrix is a lost cause, MS always is. has anyone got a copy that they kept? it had some neat ideas that others don't *quite* do...hence me looking thanx barry.b --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to cfaussie@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cfaussie -~--~~~~--~~--~--~---
[cfaussie] Re: [OT] VB programmer - WYSIWYG editor
I'm not at liberty to discuss, just looking for someone who can create what we need, and who wants to get paid for it. Sorry ;-) On 6/6/06, Chris Velevitch <[EMAIL PROTECTED]> wrote: On 6/6/06, Taco Fleur <[EMAIL PROTECTED]> wrote:> If you can get me a free one that we own the code of I am happy. > Why no _javascript_, because anyone can easily copy that and start using it.Why is that an issue?Chris--Chris VelevitchManager - Sydney Flash Platform Developers Group www.flashdev.org.au-- Taco Fleur - http://www.pacificfox.com.au Web Design, Web development, Graphic Design and Complete Internet Solutionsan industry leader with commercial IT experience since 1994 … --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to cfaussie@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cfaussie -~--~~~~--~~--~--~---
[cfaussie] Re: [OT] VB programmer - WYSIWYG editor
On 6/6/06, Taco Fleur <[EMAIL PROTECTED]> wrote: > If you can get me a free one that we own the code of I am happy. > Why no JavaScript, because anyone can easily copy that and start using it. Why is that an issue? Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group www.flashdev.org.au --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to cfaussie@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cfaussie -~--~~~~--~~--~--~---
[cfaussie] Re: javaCast string array
off the top of my head - stringClass = createObject("java" , "java.lang.Class").forName("java.lang.String"); Array = createObject("java", "java.lang.reflect.Array"); stringArray = Array.newInstance(stringClass, 10); Array.set(stringArray, 0, mystring); //set first position Enjoy, Mark On 6/6/06, Rod Higgins <[EMAIL PROTECTED]> wrote: > > > Depending on what is returned from getServer() you might want to also change > this line also ... > > ArrayList.add( myServerArray[ i ] ); > > to > > ArrayList.add( myServerArray[ i ].toString() ); > > > - Original Message - > From: Taco Fleur > To: cfaussie@googlegroups.com > > Sent: Tuesday, June 06, 2006 11:19 AM > Subject: [cfaussie] Re: javaCast string array > > > This seemed to work... > stringServerArray = arrayNew( 1 ); > stringServerArray[ 1 ] = javaCast( "string", "www.serverone.com" ); > > > On 6/6/06, Taco Fleur <[EMAIL PROTECTED]> wrote: > > > > > > > > Thanks, I gave that a go, but no luck, its expecting java.lang.String[] > > The ArrayList must not be the right data type as it can't find the method, > the method is there! > > > > Following is what I have; > > > > try { > >myServerArray = listToArray( getServer() ); > > ArrayList = createobject( "java", "java.util.ArrayList" ); > >for ( i = 1; i lte arrayLen( myServerArray ); i = i + 1 ) { > > ArrayList.add( myServerArray[ i ] ); > > stringServerArray = ArrayList.toArray(); > >} > >myObject.setServers( stringServerArray ); > > } > > > > > > > > -- > Taco Fleur - http://www.pacificfox.com.au > Web Design, Web development, Graphic Design and Complete Internet Solutions > an industry leader with commercial IT experience since 1994 … > > > > > -- E: [EMAIL PROTECTED] W: www.compoundtheory.com ICQ: 3094740 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to cfaussie@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cfaussie -~--~~~~--~~--~--~---
[cfaussie] Re: javaCast string array
Depending on what is returned from getServer() you might want to also change this line also ... ArrayList.add( myServerArray[ i ] ); to ArrayList.add( myServerArray[ i ].toString() ); - Original Message - From: Taco Fleur To: cfaussie@googlegroups.com Sent: Tuesday, June 06, 2006 11:19 AM Subject: [cfaussie] Re: javaCast string array This seemed to work... stringServerArray = arrayNew( 1 ); stringServerArray[ 1 ] = javaCast( "string", "www.serverone.com" ); On 6/6/06, Taco Fleur <[EMAIL PROTECTED]> wrote: Thanks, I gave that a go, but no luck, its expecting java.lang.String[] The ArrayList must not be the right data type as it can't find the method, the method is there! Following is what I have; try { myServerArray = listToArray( getServer() );ArrayList = createobject( "java", "java.util.ArrayList" ); for ( i = 1; i lte arrayLen( myServerArray ); i = i + 1 ) { ArrayList.add( myServerArray[ i ] ); stringServerArray = ArrayList.toArray(); } myObject.setServers( stringServerArray ); } -- Taco Fleur - http://www.pacificfox.com.au Web Design, Web development, Graphic Design and Complete Internet Solutionsan industry leader with commercial IT experience since 1994 … --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to cfaussie@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cfaussie -~--~~~~--~~--~--~---
[cfaussie] Re: Page size from server
The weblogs tell you how (full page or cache check etc) and how big the page returned was and it also depends on any server zipping/compressing functionality too that works in concert with the browser. Elliot --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to cfaussie@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cfaussie -~--~~~~--~~--~--~---
[cfaussie] Re: javaCast string array
This seemed to work... stringServerArray = arrayNew( 1 ); stringServerArray[ 1 ] = javaCast( "string", "www.serverone.com" ); On 6/6/06, Taco Fleur <[EMAIL PROTECTED]> wrote: Thanks, I gave that a go, but no luck, its expecting java.lang.String[] The ArrayList must not be the right data type as it can't find the method, the method is there! Following is what I have; try { myServerArray = listToArray( getServer() );ArrayList = createobject( "java", "java.util.ArrayList" ); for ( i = 1; i lte arrayLen( myServerArray ); i = i + 1 ) { ArrayList.add( myServerArray[ i ] ); stringServerArray = ArrayList.toArray(); } myObject.setServers( stringServerArray ); } -- Taco Fleur - http://www.pacificfox.com.au Web Design, Web development, Graphic Design and Complete Internet Solutionsan industry leader with commercial IT experience since 1994 … --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to cfaussie@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cfaussie -~--~~~~--~~--~--~---
[cfaussie] Re: javaCast string array
You need to take out the toArray() call from within the loop. Add all of the items into the arrayList then convert to a String[] try { myServerArray = listToArray( getServer() ); ArrayList = createobject( "java", "java.util.ArrayList" ); for ( i = 1; i lte arrayLen( myServerArray ); i = i + 1 ) { ArrayList.add( myServerArray[ i ] );} stringServerArray = ArrayList.toArray();myObject.setServers( stringServerArray ); } hth Rod - Original Message - From: Taco Fleur To: cfaussie@googlegroups.com Sent: Tuesday, June 06, 2006 11:13 AM Subject: [cfaussie] Re: javaCast string array Thanks, I gave that a go, but no luck, its expecting java.lang.String[] The ArrayList must not be the right data type as it can't find the method, the method is there! Following is what I have; try { myServerArray = listToArray( getServer() );ArrayList = createobject( "java", "java.util.ArrayList" ); for ( i = 1; i lte arrayLen( myServerArray ); i = i + 1 ) { ArrayList.add( myServerArray[ i ] ); stringServerArray = ArrayList.toArray(); } myObject.setServers( stringServerArray ); } --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to cfaussie@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cfaussie -~--~~~~--~~--~--~---
[cfaussie] Re: javaCast string array
For creating Java typed arrays, java.lang.reflect.Array is your friend - http://java.sun.com/j2se/1.4.2/docs/api/java/lang/reflect/Array.html Enjoy. Mark On 6/6/06, Taco Fleur <[EMAIL PROTECTED]> wrote: > > > Thanks, I gave that a go, but no luck, its expecting java.lang.String[] > The ArrayList must not be the right data type as it can't find the method, > the method is there! > > Following is what I have; > > try { >myServerArray = listToArray( getServer() ); > ArrayList = createobject( "java", "java.util.ArrayList" ); >for ( i = 1; i lte arrayLen( myServerArray ); i = i + 1 ) { > ArrayList.add( myServerArray[ i ] ); > stringServerArray = ArrayList.toArray(); >} >myObject.setServers( stringServerArray ); > } > > > > > > -- E: [EMAIL PROTECTED] W: www.compoundtheory.com ICQ: 3094740 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to cfaussie@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cfaussie -~--~~~~--~~--~--~---
[cfaussie] Re: javaCast string array
Thanks, I gave that a go, but no luck, its expecting java.lang.String[] The ArrayList must not be the right data type as it can't find the method, the method is there! Following is what I have; try { myServerArray = listToArray( getServer() );ArrayList = createobject( "java", "java.util.ArrayList" ); for ( i = 1; i lte arrayLen( myServerArray ); i = i + 1 ) { ArrayList.add( myServerArray[ i ] ); stringServerArray = ArrayList.toArray(); } myObject.setServers( stringServerArray ); } --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to cfaussie@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cfaussie -~--~~~~--~~--~--~---
[cfaussie] Re: Page size from server
http://www.websiteoptimization.com/ gives pretty good reports. Tom On 6/5/06, murrah <[EMAIL PROTECTED]> wrote: Hi.Does anyone know how to monitor the actual downloaded size of a webpage ? ie how many bytes are actually sent from the server. I am trying to optimise my pages and am experimenting with clientcaching etc and am trying to measure / check how much data is actuallysent from the server so I can test various options.I ran a test just using the View Page Info in Mozilla and it returned just the size of the html and didnt count the data in JS src files (forexample) - irrespective of whether the file was in the cache or not.I guess some kind of port monitoring software could work ?? Any suggestions ?Thanks,Murray-- IMPORTANT: This email is intended for the use of the individual addressee(s) named above and may contain information that is confidential privileged or unsuitable for overly sensitive persons with low self-esteem, no sense of humor or irrational religious beliefs. If you are not the intended recipient, any dissemination, distribution or copying of this email is not authorized (either explicitly or implicitly) and constitutes an irritating social fauxpas. No animals were harmed in the transmission of this email, although the mutt next door is living on borrowed time, let me tell you. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to cfaussie@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cfaussie -~--~~~~--~~--~--~---
[cfaussie] Coldfusion Skillbulder
Does anyone have a copy of the old Coldfusion Skill Builder CD or know of where I can get one from? Steve --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to cfaussie@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cfaussie -~--~~~~--~~--~--~---
[cfaussie] Re: Strange recurrent problem with SQL Server 7 & MX7
Any "interesting" characters in either parameter? I've had problems with quotes before.BlairOn 6/6/06, Joel Cass < [EMAIL PROTECTED]> wrote:I meant, it happens in queries with a *cfqueryparam* tag.. In case that wasn't obviousRestarting CF gets rid of the problem.. But it keeps coming back after a fewhits.I've always had trouble with cfqueryparam tags.. Is it a curse I bear or isit just normal for them to be so erratic.. Is there a problem with the way I use them?? As below-SELECT * FROM Users WHERE Users_Login = AND Users_password = -Any ideas yet?Joel-Original Message-From: cfaussie@googlegroups.com [mailto: cfaussie@googlegroups.com]OnBehalf Of Joel CassSent: Tuesday, 6 June 2006 9:31 AMTo: cfaussie@googlegroups.comSubject: [cfaussie] Strange recurrent problem with SQL Server 7 & MX7 Hi,We keep having this problem occuring on one of our larger applications,hosted on MX7. The same problem has not appeared on another server runningMX6, however.Both connect to SQL server 7, running on windows 2000. "Error Executing Database Query. [Macromedia][SQLServer JDBCDriver][SQLServer]Could not find prepared statement with handle [X]".It always happens on queries containing at least one cfparam tag. Any ideas?Joel --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to cfaussie@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cfaussie -~--~~~~--~~--~--~---
[cfaussie] Re: Strange recurrent problem with SQL Server 7 & MX7
I meant, it happens in queries with a *cfqueryparam* tag.. In case that wasn't obvious Restarting CF gets rid of the problem.. But it keeps coming back after a few hits. I've always had trouble with cfqueryparam tags.. Is it a curse I bear or is it just normal for them to be so erratic.. Is there a problem with the way I use them?? As below - SELECT * FROM Users WHERE Users_Login = AND Users_password = - Any ideas yet? Joel -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] Behalf Of Joel Cass Sent: Tuesday, 6 June 2006 9:31 AM To: cfaussie@googlegroups.com Subject: [cfaussie] Strange recurrent problem with SQL Server 7 & MX7 Hi, We keep having this problem occuring on one of our larger applications, hosted on MX7. The same problem has not appeared on another server running MX6, however. Both connect to SQL server 7, running on windows 2000. "Error Executing Database Query. [Macromedia][SQLServer JDBC Driver][SQLServer]Could not find prepared statement with handle [X]". It always happens on queries containing at least one cfparam tag. Any ideas? Joel --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to cfaussie@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cfaussie -~--~~~~--~~--~--~---
[cfaussie] Re: javaCast string array
arrList = createobject("Java","java.util.ArrayList"); for (i = 1; i LTE arrayLen(myArray); i = i + 1) temp = arrList.add(myArray[i]); strArray = arrList.toArray(); Looks the same to me. I wouldnt be surprised if CF creates all coldfusion arrays as java String[]. hth Rod - Original Message - From: Taco Fleur To: cfaussie@googlegroups.com Sent: Tuesday, June 06, 2006 9:38 AM Subject: [cfaussie] javaCast string array I have a method on a java class that expects a string array public void setServers(java.lang.String[] servers)I don't think I can create an array in CF and then run javacast( "string", myArray ) over it can I? -- Taco Fleur - http://www.pacificfox.com.au Web Design, Web development, Graphic Design and Complete Internet Solutionsan industry leader with commercial IT experience since 1994 … --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to cfaussie@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cfaussie -~--~~~~--~~--~--~---
[cfaussie] Ajax and JS Flex clone
Ok awhile ago someone posted a link to an Ajax/DHTML solution that was free or open source and behaved and looked like a flex clone in _javascript_. Does anyone recall this application or link, would be much appreciated. I remember it as the explorer was even the same as Flex’s explorer. Anyone? Regards, Andrew Scott --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to cfaussie@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cfaussie -~--~~~~--~~--~--~---
[cfaussie] Re: javaCast string array
I've just tried to pass a CF array into it, and it seems to like it, so maybe there is nothing to worry about. On 6/6/06, Taco Fleur <[EMAIL PROTECTED]> wrote: I have a method on a java class that expects a string array public void setServers(java.lang.String[] servers)I don't think I can create an array in CF and then run javacast( "string", myArray ) over it can I? -- Taco Fleur - http://www.pacificfox.com.au Web Design, Web development, Graphic Design and Complete Internet Solutions an industry leader with commercial IT experience since 1994 … -- Taco Fleur - http://www.pacificfox.com.au Web Design, Web development, Graphic Design and Complete Internet Solutions an industry leader with commercial IT experience since 1994 … --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to cfaussie@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cfaussie -~--~~~~--~~--~--~---
[cfaussie] javaCast string array
I have a method on a java class that expects a string array public void setServers(java.lang.String[] servers)I don't think I can create an array in CF and then run javacast( "string", myArray ) over it can I? -- Taco Fleur - http://www.pacificfox.com.au Web Design, Web development, Graphic Design and Complete Internet Solutionsan industry leader with commercial IT experience since 1994 … --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to cfaussie@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cfaussie -~--~~~~--~~--~--~---
[cfaussie] Strange recurrent problem with SQL Server 7 & MX7
Hi, We keep having this problem occuring on one of our larger applications, hosted on MX7. The same problem has not appeared on another server running MX6, however. Both connect to SQL server 7, running on windows 2000. "Error Executing Database Query. [Macromedia][SQLServer JDBC Driver][SQLServer]Could not find prepared statement with handle [X]". It always happens on queries containing at least one cfparam tag. Any ideas? Joel -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] Behalf Of Darren Tracey Sent: Tuesday, 6 June 2006 8:39 AM To: cfaussie Subject: [cfaussie] Next QLD CFUG meeting TONIGHT, Tuesday 6th June in the Brisbane CBD Details: When : 6:30 pm, Tuesday, 6th of June 2006 Where : ABN AMRO Morgans Limited Level 29, 123 Eagle Street (Riverside Centre) Brisbane CBD QLD 4000 More details here : http://qld.cfug.org.au/ This month at CFUG QLD: We have a really special, and really amazing look at the new Flex Superwizard. The presentation is by Dean Harmon from Adobe. Its short, sweet, to the point, and did I say really amazing? We'll also be taking a look at the new Spry framework for AJAX, which is currently available on Adobe Labs (http://labs.adobe.com/technologies/spry/). This presentation is by Jen Taylor (Sr. DW Product Manager) Kin Blas (DW Engineer) and Don Booth (DW Quality Engineer). The meeting will also have our regular (and ever popular) general open floor Q&A discussion, so bring your questions and problems. As usual there will be free pizza, subways and drinks. If you haven't already, then please RSVP by noon Tuesday, 6th of June as it helps make sure there's enough pizza and subs for everyone. There's still plenty of goodies left in our Adobe 'care package', so another good chunk of it will be given away at this month's meeting, and as usual only people who RSVP to me and tell me that they're coming will go in the prize draw. Last month everyone who RSVPed got a prize. IF YOU DON'T RSVP, YOU DON'T GO IN THE PRIZE DRAW! Send that email now!! Don't miss it. See you there. Darren Tracey CFUG QLD Manager --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to cfaussie@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cfaussie -~--~~~~--~~--~--~---
[cfaussie] Next QLD CFUG meeting TONIGHT, Tuesday 6th June in the Brisbane CBD
Details: When : 6:30 pm, Tuesday, 6th of June 2006 Where : ABN AMRO Morgans Limited Level 29, 123 Eagle Street (Riverside Centre) Brisbane CBD QLD 4000 More details here : http://qld.cfug.org.au/ This month at CFUG QLD: We have a really special, and really amazing look at the new Flex Superwizard. The presentation is by Dean Harmon from Adobe. Its short, sweet, to the point, and did I say really amazing? We'll also be taking a look at the new Spry framework for AJAX, which is currently available on Adobe Labs (http://labs.adobe.com/technologies/spry/). This presentation is by Jen Taylor (Sr. DW Product Manager) Kin Blas (DW Engineer) and Don Booth (DW Quality Engineer). The meeting will also have our regular (and ever popular) general open floor Q&A discussion, so bring your questions and problems. As usual there will be free pizza, subways and drinks. If you haven't already, then please RSVP by noon Tuesday, 6th of June as it helps make sure there's enough pizza and subs for everyone. There's still plenty of goodies left in our Adobe 'care package', so another good chunk of it will be given away at this month's meeting, and as usual only people who RSVP to me and tell me that they're coming will go in the prize draw. Last month everyone who RSVPed got a prize. IF YOU DON'T RSVP, YOU DON'T GO IN THE PRIZE DRAW! Send that email now!! Don't miss it. See you there. Darren Tracey CFUG QLD Manager --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to cfaussie@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cfaussie -~--~~~~--~~--~--~---
[cfaussie] Re: [OT] VB programmer - WYSIWYG editor
I quote "I know there are plenty of them out there, I need my own, one that we own the code of." If you can get me a free one that we own the code of I am happy. Why no _javascript_, because anyone can easily copy that and start using it. On 6/5/06, Chris Velevitch <[EMAIL PROTECTED]> wrote: There are a number of free and commercial WYSIWYG editors available.Won't these do?Chris --Chris VelevitchManager - Sydney Flash Platform Developers Groupwww.flashdev.org.au-- Taco Fleur - http://www.pacificfox.com.au Web Design, Web development, Graphic Design and Complete Internet Solutionsan industry leader with commercial IT experience since 1994 … --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to cfaussie@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cfaussie -~--~~~~--~~--~--~---
[cfaussie] Re: [OT] VB programmer - WYSIWYG editor
May I ask why not _javascript_? Its just that I have had experience in writing OCX stuff for browsers and it’s a pain in the arse. You have to make sure that the client is running the right version of dll’s and not to mention the security side of things. Its just all bad news From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Taco Fleur Sent: Monday, June 05, 2006 9:51 PM To: cfaussie@googlegroups.com Subject: [cfaussie] [OT] VB programmer - WYSIWYG editor I was wondering whether there were any VB programmers on this list? I am in need fo a VB programmer to create a WYSIWYG editor to work in a Browser (install of OCX or other is not a problem). I know there are plenty of them out there, I need my own, one that we own the code of. Paying $45 an hour. If you can think of a better language to write this in other than _javascript_, let me know, willing to listing to any suggestions. -- Taco Fleur - http://www.pacificfox.com.au Web Design, Web development, Graphic Design and Complete Internet Solutions an industry leader with commercial IT experience since 1994 … --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to cfaussie@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cfaussie -~--~~~~--~~--~--~---
[cfaussie] Re: OT eclipse
Try WIndows->Preferences->CFEclipse->Code Folding. There you can turn it off altogether or or turn off "Initially Collapse". Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group www.flashdev.org.au --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to cfaussie@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cfaussie -~--~~~~--~~--~--~---
[cfaussie] Re: [OT] VB programmer - WYSIWYG editor
There are a number of free and commercial WYSIWYG editors available. Won't these do? Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group www.flashdev.org.au --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to cfaussie@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cfaussie -~--~~~~--~~--~--~---
[cfaussie] Re: OT: FLEX
On 6/5/06, <[EMAIL PROTECTED]> wrote: > Thats what I was wondering. The question that was raised was can Flex > replace an IDE created in say powerbuilder or C++ etc etc. If you are talking about creating an IDE in Flex to develop and generate PowerBuilder or C++, etc based desktop applications, I'd say it's too early to tell. > I have heard of the projector tools but I'm a total novice when it > comes to flash. I try to stay clear of it. I think you'll find it easier to develop the GUI of desktop applications in Flex if you're not a Flash Developer. All you need to do is pick a projector and run with it. Also bear in mind that Adobe are in the process of developing Apollo, which should make it even easier to develop desktop applications that will run on any platform. Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group www.flashdev.org.au --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to cfaussie@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cfaussie -~--~~~~--~~--~--~---
[cfaussie] [OT] VB programmer - WYSIWYG editor
I was wondering whether there were any VB programmers on this list? I am in need fo a VB programmer to create a WYSIWYG editor to work in a Browser (install of OCX or other is not a problem). I know there are plenty of them out there, I need my own, one that we own the code of. Paying $45 an hour. If you can think of a better language to write this in other than _javascript_, let me know, willing to listing to any suggestions.-- Taco Fleur - http://www.pacificfox.com.au Web Design, Web development, Graphic Design and Complete Internet Solutionsan industry leader with commercial IT experience since 1994 … --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to cfaussie@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cfaussie -~--~~~~--~~--~--~---
[cfaussie] Re: OT eclipse
w00h00Thanks for that Mr dogRegardsM@who can now get back to happy coding Hi M@,it's called code folding i think. It's in the cfeclipse options underpreferences.regardsmizdog! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to cfaussie@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cfaussie -~--~~~~--~~--~--~---
[cfaussie] Re: OT eclipse
Hi M@, it's called code folding i think. It's in the cfeclipse options under preferences. regards mizdog! On 6/5/06, M@ Bourke <[EMAIL PROTECTED]> wrote: > Hi all, > > I'm wanting to know how I set cfeclipse so all the code is expanded by > default, I have an older version of eclipse on my latop and it seems to have > all code expanded by default but the latest version of eclipse that I have > at work all the comments and methods and crap are unexpanded (not having a > good word day) > and its really S-ing me off. > no one in the office (30 cf devs) seems to know how to set it so by default > all the code is expanded > I'm that used to having it expanded that I open a cfc and have to sit there > and manually open 30 functions each time grrr. > > Thanks heaps > M@ > > > > --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to cfaussie@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cfaussie -~--~~~~--~~--~--~---
[cfaussie] OT eclipse
Hi all, I'm wanting to know how I set cfeclipse so all the code is expanded by default, I have an older version of eclipse on my latop and it seems to have all code expanded by default but the latest version of eclipse that I have at work all the comments and methods and crap are unexpanded (not having a good word day) and its really S-ing me off.no one in the office (30 cf devs) seems to know how to set it so by default all the code is expandedI'm that used to having it expanded that I open a cfc and have to sit there and manually open 30 functions each time grrr. Thanks heaps M@ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to cfaussie@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cfaussie -~--~~~~--~~--~--~---
[cfaussie] Re: OT: FLEX
Hi Chris, Thats what I was wondering. The question that was raised was can Flex replace an IDE created in say powerbuilder or C++ etc etc. I have heard of the projector tools but I'm a total novice when it comes to flash. I try to stay clear of it. J. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to cfaussie@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cfaussie -~--~~~~--~~--~--~---