[cfaussie] Re: Why Doesn't this Work

2006-07-27 Thread Mark Mandel
The return type should just be the name of the componentYou can fully qualify it, i.e. com.package.test, but since Test resides in the same directory as itself (I know that sounds weird, but it's the logic), you can just write returns="Test". MarkOn 7/28/06, Dale Fraser <[EMAIL PROTECTED]> wrote:

[cfaussie] Re: Why Doesn't this Work

2006-07-27 Thread Joel Cass
 Ahh.. Now I know what you're doing.. I apologise.. You can set your return type to the component name/path..        -Original Message-From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED]On Behalf Of Dale FraserSent: Friday, 28 July 2006 3:08 PMTo: cfaussie@googleg

[cfaussie] Re: Why Doesn't this Work

2006-07-27 Thread Blair McKenzie
Generally an init function returns the object itself.BlairOn 7/28/06, Joel Cass <[EMAIL PROTECTED]> wrote: Try using a cfreturn tag..                     OR (with your component)     You should have a look at cfdocs and try a few things out before posting.. That's my opinion a

[cfaussie] Re: Why Doesn't this Work

2006-07-27 Thread Joel Cass
Try using a cfreturn tag..                     OR (with your component)     You should have a look at cfdocs and try a few things out before posting.. That's my opinion anyway     -Original Message-From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED]On Behalf

[cfaussie] Re: Why Doesn't this Work

2006-07-27 Thread Dale Fraser
A struct seems to work, but was expecting there might be a return type of object or component but there isn’t Regards Dale Fraser http://dale.fraser.id.au   From: cfaussie@googlegroups.com [mailto:cfaussie@googlegroups.com] On Behalf Of Mark Mandel Sent: Friday, 28 July 200

[cfaussie] Re: Why Doesn't this Work

2006-07-27 Thread Dale Fraser
Doh,   My bad, also what return type should the init function have, I normally leave it blank but is there a valid return type that should be used? Regards Dale Fraser http://dale.fraser.id.au   From: cfaussie@googlegroups.com [mailto:cfaussie@googlegroups.com] On Behalf

[cfaussie] Re: Why Doesn't this Work

2006-07-27 Thread Mark Mandel
Because init doesn't 'return this;' MarkOn 7/28/06, Dale Fraser <[EMAIL PROTECTED]> wrote: test.cfm   Test.cfc               Gets Variable TEST is undefined.        

[cfaussie] Why Doesn't this Work

2006-07-27 Thread Dale Fraser
test.cfm   Test.cfc               Gets Variable TEST is undefined.         The error occurred in D:\CogStateWeb\dmf\test.cfm: line 2 1 : 2 :     R

[cfaussie] Re: variables.instance

2006-07-27 Thread Mark Mandel
Exactly. Mark On 7/28/06, Dale Fraser <[EMAIL PROTECTED]> wrote: > > > > > > Ok, > > > > So just to clarify for everyone. Cause it wasn't clear to me. > > > > variables IS private to a CFC, it just contains other CFC object related > into. Here's a sample that will make it easy to understand. >

[cfaussie] Re: variables.instance

2006-07-27 Thread Dale Fraser
Ok,   So just to clarify for everyone. Cause it wasn't clear to me.   variables IS private to a CFC, it just contains other CFC object related into. Here's a sample that will make it easy to understand.   Test.cfm       Test.cfc           

[cfaussie] Re: (No Items) under ms sql server

2006-07-27 Thread Carl Vanderpal
Both the server and my PC run SQL 2000, and yes I have removed several times...and even tried to connect via IP address, but the guy I am working in conjunction with uses SQL 2005 to connect, so this may have something to do with it? I also have SQL 2005 on my PC and when I connect to the server I

[cfaussie] Re: variables.instance

2006-07-27 Thread Barry Beattie
> Can the CFC access all variables. Scope, ie ones from other pages / cfc's? unless it's been fixed reciently, it can access FORM and URL (and probably cookie) scopes too. I found out by accident that, if you've got an unscoped variable that doesn;t exist in "variables" or "this" scope, it'll "w

[cfaussie] Re: variables.instance

2006-07-27 Thread Dale Fraser
Ok, Cool. Didn't realise that the cfc could access all the other suff in variables. Just thought it could access stuff it created. I'll have a play with this. PS: I'm assuming that instance is something you need to create ie in the init Regards Dale Fraser http://dale.fraser.id.au ---

[cfaussie] Re: variables.instance

2006-07-27 Thread Mark Mandel
On 7/28/06, Dale Fraser <[EMAIL PROTECTED]> wrote: > > Mark, > > But I thought that the variables scope was only accessible to the CFC that > you're using it in. Why then would you need to worry? This is true, but maybe I didn't explain myself properly. If I wanted to make a copy of the values i

[cfaussie] Re: variables.instance

2006-07-27 Thread Dale Fraser
Mark, But I thought that the variables scope was only accessible to the CFC that you're using it in. Why then would you need to worry? Can the CFC access all variables. Scope, ie ones from other pages / cfc's? Regards Dale Fraser http://dale.fraser.id.au -Original Message- From:

[cfaussie] Re: variables.instance

2006-07-27 Thread Mark Mandel
The only difference dale is that some people (myself included) like to place all their instance variables inside a struct found on the variables scope - more often than not variables.instance. This makes life easy when looking to push / pull a bunch of them on or off the object, as the variables

[cfaussie] variables.instance

2006-07-27 Thread Dale Fraser
Hi,   Anyone explain the difference between   variables.instance and just plain old variables.   To me it looks like they are the same thing. Regards Dale Fraser http://dale.fraser.id.au     --~--~-~--~~~---~--~~ You received this message b

[cfaussie] Re: (No Items) under ms sql server

2006-07-27 Thread Rod Higgins
 Connecting to SQL 2005 with EM is not supported.   http://msdn2.microsoft.com/en-us/library/ms174190.aspx http://msdn2.microsoft.com/en-us/library/ms173738.aspx   I would suggest installing the SQL Server Management Studio that ships with SQL server 2005. It can administer SQL 2000 as well a

[cfaussie] Re: Changing HTTP responses

2006-07-27 Thread Beenish
Thanks Charlie. We use IIS. I'll have a read through that and see if that helps. I'm open to all ideas. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to cfaussi

[cfaussie] Re: (No Items) under ms sql server

2006-07-27 Thread Steve Onnis
yeah   Win2k EM wont work with windows20005 SQL server   I hear the one at http://www.sqlmanager.net/ is not too bad   Steve -Original Message-From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED]On Behalf Of Carl VanderpalSent: Friday, July 28, 2006 12:39 PMTo: cfauss

[cfaussie] Re: (No Items) under ms sql server

2006-07-27 Thread Dale Fraser
Ohh,   That doesn’t make sense then. Have you tried removing the server in enterprise manager and reconnecting it. Regards Dale Fraser http://dale.fraser.id.au   From: cfaussie@googlegroups.com [mailto:cfaussie@googlegroups.com] On Behalf Of Carl Vanderpal Sent: Friday, 2

[cfaussie] Re: Changing HTTP responses

2006-07-27 Thread Beenish
Thanks. Both good ideas but I don't want to use any type of client side scripting because it also needs to track click throughs accurately and some users may have javascript turned off. But I think I may just be able to put the invisible link (http://www.thesitesname.com.au";>) just for the searc

[cfaussie] Re: (No Items) under ms sql server

2006-07-27 Thread Carl Vanderpal
Even though the server and my EM is 2K..On 7/28/06, Dale Fraser <[EMAIL PROTECTED]> wrote: If you have upgraded the DB to 2005 schema then 2000 has no idea how to read them. Regards Dale Fraser http://dale.fraser.id.au   From: cfaussie@googlegroups.com [mailto: c

[cfaussie] Re: Changing HTTP responses

2006-07-27 Thread Charlie Arehart
What web server are you using? There are ways in both IIS (and even easier in Apache) to handle this in the web server. Some resources: http://httpd.apache.org/docs/1.3/misc/rewriteguide.html http://support.microsoft.com/default.aspx?scid=kb;en-us;313074&sd=tech Hope that helps. /charlie htt

[cfaussie] Re: (No Items) under ms sql server

2006-07-27 Thread Dale Fraser
If you have upgraded the DB to 2005 schema then 2000 has no idea how to read them. Regards Dale Fraser http://dale.fraser.id.au   From: cfaussie@googlegroups.com [mailto:cfaussie@googlegroups.com] On Behalf Of Carl Vanderpal Sent: Friday, 28 July 2006 12:28 PM To: CF Aussie

[cfaussie] (No Items) under ms sql server

2006-07-27 Thread Carl Vanderpal
Hello all,Just wondering why on Enterprise Manager MS SQL (2K) there shows ...(No Items) under the databases but when I was there a few days before there were datbases there? (this is on one of my webhosts), but when I log in under using MSSQL 2005 they are all there? Is this something from my end

[cfaussie] Re: Changing HTTP responses

2006-07-27 Thread Maximilian Nyman
Beenish, I'm not sure how search engines are handling form-action attributes. But if they are treated the same way as a regular link I would simply wrap the link into a form and submit the form onClick with some hidden input fields. Ex. http://www.thesitesname.com.au"; method="post"> http:/

[cfaussie] Re: Changing HTTP responses

2006-07-27 Thread Andrew Mercer
how about:http://www.thesitesname.com.au"> www.thesitesname.com.authe span would need some stylesheet work to make it look and behave  like a linkOn 7/28/06, Beenish <[EMAIL PROTECTED]> wrote: Hi,I'm pretty sure this can't be done but hoping someone can prove mewrong.I need to track click throughs

[cfaussie] Changing HTTP responses

2006-07-27 Thread Beenish
Hi, I'm pretty sure this can't be done but hoping someone can prove me wrong. I need to track click throughs on a link accurately without it having any url parameters attached to it. It has to be a clean link straight to "http://www.thesitesname.com.au"; for the purposes of search engine optimis

[cfaussie] Re: CFUG / CDD User Group Meeting Location

2006-07-27 Thread Bjorn Schultheiss
Haha, Sounds like will chillax at steve's crib. * What did he say "Chillax" * Man act like you know, Slang 101: http://youtube.com/watch?v=eBXal1GAA4A&mode=related&search= Regards, Bjorn Schultheiss Senior Flash Developer QDC Technologies -Original Message- From: cfaussie@googlegrou

[cfaussie] Re: CFUG / CDD User Group Meeting Location

2006-07-27 Thread Barry Beattie
Dale, if it's any comfort, that's how the Bris CFUG and MMUG's work. it's a hassel, to be sure but to be honest, it's unlikely ppl will arrive much more than 1/2 hour after the start. On 7/28/06, Dale Fraser <[EMAIL PROTECTED]> wrote: > > > > > Well, > > > > It is a bit worse as you can't buzz

[cfaussie] Re: CFUG / CDD User Group Meeting Location

2006-07-27 Thread Dale Fraser
Well,   It is a bit worse as you can’t buzz anyone up, so everyone would need a mobile. And someone would need to keep needing to go down to let people back up.   Also the phones go to answering machine @ 5pm. So we would need a mobile to call.   There are also security issues; everyo

[cfaussie] Re: CFUG / CDD User Group Meeting Location

2006-07-27 Thread Mark Mandel
How is that any worse than VTR's place? Can we put a sign at the bottom saying 'call XXX number for a good time, or to get into CFUG meeting' ? Mark On 7/28/06, Dale Fraser <[EMAIL PROTECTED]> wrote: > > We have an office, > > Problem is it goes into lockdown mode at 6pm. Doors and Elevators.

[cfaussie] Re: CFUG / CDD User Group Meeting Location

2006-07-27 Thread Dale Fraser
We have an office, Problem is it goes into lockdown mode at 6pm. Doors and Elevators. Regards Dale Fraser http://dale.fraser.id.au -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark Mandel Sent: Friday, 28 July 2006 10:48 AM To: cfaussie

[cfaussie] Re: CFUG / CDD User Group Meeting Location

2006-07-27 Thread Steve Onnis
I am considering contacting some scout halls or RSL venues to see if they have anything. Looks like the next meeting will be at my place if we cant find anything which is in Southbank, City Road. Steve -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] Behalf O

[cfaussie] Re: CFUG / CDD User Group Meeting Location

2006-07-27 Thread Mark Mandel
Yeah, I figured that would be the case... So scrap that idea. I agree, CIty would be best. I can't believe nobody has an office we can take over for the evening... :/ Mark On 7/28/06, Dale Fraser <[EMAIL PROTECTED]> wrote: > > You could count me out. > > RMIT would be ideal, inner city locati

[cfaussie] Re: CFUG / CDD User Group Meeting Location

2006-07-27 Thread Dale Fraser
You could count me out. RMIT would be ideal, inner city location, someone must know someone. Regards Dale Fraser http://dale.fraser.id.au -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark Mandel Sent: Friday, 28 July 2006 10:37 AM To: cf

[cfaussie] Re: CFUG / CDD User Group Meeting Location

2006-07-27 Thread Mark Mandel
I *may* have a connection to someone at Caulfield Monash, but I'm guessing that won't be a good place for people to attend? (I'm not even sure if we can get room there once a month or not) How does the location grab people? Mark On 7/28/06, Bjorn Schultheiss <[EMAIL PROTECTED]> wrote: > > Cant

[cfaussie] Re: CFUG / CDD User Group Meeting Location

2006-07-27 Thread Bjorn Schultheiss
Cant say I do. It would bbe good if you guys can find a venue in the city. Personally I don't have any locations to use. Regards, Bjorn Schultheiss Senior Flash Developer QDC Technologies -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark

[cfaussie] Re: CFUG / CDD User Group Meeting Location

2006-07-27 Thread Mark Mandel
Having a chat this morning, a good idea came up - Anyone got any connections to any Universities? Taking over a lecture hall for a few hours in the evening could be a nice possibility. This would be especially nice if the Uni is in the city. Just a thought, Mark On 7/28/06, George <[EMAIL PRO

[cfaussie] Re: CFUG / CDD User Group Meeting Location

2006-07-27 Thread George
Anyway I couldn't go to last meeting because of location. I hope we can find a better one... On 26/07/06, Bjorn Schultheiss <[EMAIL PROTECTED]> wrote: What a dissapoinment! Hopefully we get another venue.   Regards,   Bjorn Schultheiss Senior Flash Developer QDC Technologies   From: cfaussie@g

[cfaussie] Re: CF to ASP programmer wanted

2006-07-27 Thread cookie
Here's my update from my original post. 2 people emailed me offering their services, and I have selected one to do the job for me. I started life programming CF and had done very limited ASP, but ASP is what the client wants. I have not done any serious programming for over 5 years and only do "