This must be dead simple, I just can't think of it. When making a Picture property for a usercontrol, when I try to set it, an error message box comes up saying 'Wrong number of arguments or invalid property assignment'. Here's what I am doing :
VB Code:
Public Property Let Picture(p As StdPicture) UserControl.Picture = p End Property Public Property Get Picture() As StdPicture Set Picture = UserControl.Picture End Property
Can someone point out what I missed?
:)
