Phillip,
I feel your pain. Here's an example I put together for myself.
<cfcomponent>
<cfset variables.private = "A private instance variable">
<cfset this.public = "A public instance variable">
<cffunction name="foo">
<cfargument name="anArgument">
<cfset var localFooVar = "">
<cfset localFooVar = "Available within the scope of this function">
<cfoutput>
You passed me: #arguments.anArgument#
I have a local var whose value is:#localFooVar#.
I have an private instance variable whose value is #variables.private#.
I have an public instance variable whose value is #this.public#.
</cfoutput>
</cffunction>
</cfcomponent>
Patrick
--
Patrick McElhaney
704.560.9117
http://pmcelhaney.weblogs.us
----------------------------------------------------------
You are subscribed to cfcdev. To unsubscribe, send an email to
[email protected] with the words 'unsubscribe cfcdev' as the subject of the
email.
CFCDev is run by CFCZone (www.cfczone.org) and supported by CFXHosting
(www.cfxhosting.com).
An archive of the CFCDev list is available at
www.mail-archive.com/[email protected]