How to use the method in the .OCX file

  • Thread starter Thread starter yindevil
  • Start date Start date
There's no way I'm going to download an OCX, but in your code below you're
referring to the type imported from the OCX's type library. You need to
actually create an instance of the object before accessing its methods.
 
Well it's an OCX, do you place it in a form? When the form loads, an
instance is created. Otherwise use 'new' to create one.
 
Back
Top