我想在VB6.0中的一个自定义按钮控件上添加一个DataBindings属性,不知它应该是什么类型的属性,怎么写它
Public Property Get DataBindings() As DataBindings
    Set DataBindings = cmdObject.DataBindings
End PropertyPublic Property Set DataBindings(ByVal NewValue As DataBindings)
 **   Set cmdObject.DataBindings = NewValue
    PropertyChanged "DataBindings"
End PropertyPrivate Sub UserControl_ReadProperties(PropBag As PropertyBag)
 Set cmdObject.DataBindings = PropBag.ReadProperty("DataBindings")
End SubPrivate Sub UserControl_WriteProperties(PropBag As PropertyBag)
  Call PropBag.WriteProperty("DataBindings", cmdObject.DataBindings)
End Sub
以上代码“**”处会报错,为什么?