Re: COM object syntax in CF 5

2006-10-11 Thread Teddy Payne
You may want to perform to see all the available methods and see the correct syntax for what you are looking for. Teddy On 10/11/06, Rod Murillo <[EMAIL PROTECTED]> wrote: > > Hello: > > I ported ASP code below and I am having a problem, > > <% > Dim trans > Set trans = Server.CreateObject ("Pa

Re: COM object syntax in CF 5

2006-10-11 Thread Rod Murillo
Nope. CFDUMP does not work: Expression result cannot be converted to a string Expressions used inside tags like CFOUTPUT, CFQUERY, CFMAIL, etc. must evaluate to a value that can be converted to a string for output or dynamic text accumulation purposes. Complex objects, such as queries, arrays,

Re: COM object syntax in CF 5

2006-10-11 Thread James Mc
Is this the same server on which the ASP code works? If not is the COM object registered on the new server ? > Hello: > > I ported ASP code below and I am having a problem, > > <% > Dim trans > Set trans = Server.CreateObject ("Paymentech.Transaction") > trans.Type = "CC.Authorize" > trans.Fie

RE: COM object syntax in CF 5

2006-10-11 Thread Aldon
* #1 #2 #3 trans.Type = "CC.Authorize"; #4 trans.Field("A") ; #5 You could also use the cfset method: Al -Original Message- From: Teddy Payne [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 11, 2006 1:57 PM To: CF-Talk Subject: Re: COM object syntax in C