PlanetSquires Forums

Support Forums => Other Software and Code => Topic started by: Art Araya on June 09, 2005, 02:43:29 PM

Title: Use an ActiveX DLL in a console app?
Post by: Art Araya on June 09, 2005, 02:43:29 PM
Is it possible to use an ActiveX DLL in a FF console application?  

I have used one in a normal FF project.  But the way I did this was to use the OCX/ActiveX control in the FF toolbox.  And of course, this is not available in a Console project.

Is there some other way to do this?  Probably pure PB with no assistance from FF?

TIA,
Art
Title: Use an ActiveX DLL in a console app?
Post by: Jose Roca on June 09, 2005, 04:07:37 PM
Non visual ActiveX DLLs such ADO can be used; visual ActiveX don't.
Title: Use an ActiveX DLL in a console app?
Post by: Art Araya on June 09, 2005, 04:13:01 PM
Thanks Jose.

The ActiveX DLL I need to use is non-visual.  How do I use this in FF?

Art
Title: Use an ActiveX DLL in a console app?
Post by: Jose Roca on June 09, 2005, 04:51:22 PM
As any other component. SET objvar = NEW DISPATCH IN ProgID$, etc.