Re: Need help instantating a COM object in CF7... It's my first time... :o(

2007-03-27 Thread Christopher Jordan
cut and paste that? > This: > > > Could be this, as long as VIN evaluates to a string: > > > -- Josh > > - Original Message - > From: "Christopher Jordan" <[EMAIL PROTECTED]> > To: "CF-Talk" > Sent: Tuesday, March 27, 2007

Re: Need help instantating a COM object in CF7... It's my first time... :o(

2007-03-27 Thread Josh Nathanson
ed help instantating a COM object in CF7... It's my first time... :o( > Jim! That worked great! The object instantiated first time. Very cool. > And the answer makes so much sense! Duh... :op > > Anyway, > > Now I'm having trouble actually calling any methods in

Re: Need help instantating a COM object in CF7... It's my first time... :o(

2007-03-27 Thread Christopher Jordan
Jim! That worked great! The object instantiated first time. Very cool. And the answer makes so much sense! Duh... :op Anyway, Now I'm having trouble actually calling any methods in the object. If you or anyone could help, I'd be most appreciative (of course, I'll keep reading and trying stuff

Re: Need help instantating a COM object in CF7... It's my first time... :o(

2007-03-27 Thread Christopher Jordan
Thanks Jim! I'll try that right now! :o) Chris Jim Wright wrote: > Try running this at a command prompt... > regsvr32 x:\path\com\bbapi.dll > > Then use... > CreateObject("COM", "BBAPI.API") > > > ~| Macromedia ColdFusion MX

Re: Need help instantating a COM object in CF7... It's my first time... :o(

2007-03-27 Thread Jim Wright
Try running this at a command prompt... regsvr32 x:\path\com\bbapi.dll Then use... CreateObject("COM", "BBAPI.API") ~| Create robust enterprise, web RIAs. Upgrade & integrate Adobe Coldfusion MX7 with Flex 2 http://www.adobe.com

Need help instantating a COM object in CF7... It's my first time... :o(

2007-03-27 Thread Christopher Jordan
Hi folks, I really need some help instantiating a COM object. I've been given a .dll file, and been told that it is the COM object, but I don't know how to instantiate it. I thought it would be simple. I've tried: The directory is COM and the dll is called BBAPI. I thought maybe it was a path