Option Explicit
Private miOcx As ClaseMiOcx
Private Sub Form_Load
On Error Goto Err_Form_Load
Set miOcx = Me.Controls.Add("Proyecto.ClaseMiOcx", "NombreDeControl")
miOcx.Visible = True
miOcx.PropiedadX = "algún valor..."
Err_Form_Load
If Err.Number = 999 Then 'Ahora mismo no sé el nº de error, pero se sabe enseguida provocándolo...
Msgbox "No cuentas con la funcionalidad de tal ocx..."
Else
MsgBox "(" & Err.Number & ") " & Err.Description
Unload Me
End If
End Sub
Private Sub Form_Unload(Cancel As Integer)
Set miOcx = Nothing
End Sub