>what do I do with the cfinvoke and cfinvokeargument? 

Trash those nasty tags. I don't use them. The code I posted replace those
tags. Once you call your object, your methods therein will be available
without calling the object again.

Example:

<cfscript>

        myobj = CreateObject('component','mycomponent');
// after your opbject in instantiated, you can call any function contained
in your object without calling the component again.
        myobj.mymethod1();
        myobj.mymethod2();
        myobj.mymethod3();
        myobj.mymethod4();

</cfscript>


Regards,

Phil


---
[This E-mail has been scanned for viruses.]

----------------------------------------------------------
To post, send email to [EMAIL PROTECTED]
To unsubscribe: 
   http://www.dfwcfug.org/form_MemberUnsubscribe.cfm
To subscribe: 
   http://www.dfwcfug.org/form_MemberRegistration.cfm

Reply via email to