|
-
Apr 21st, 2002, 08:52 AM
#1
Thread Starter
New Member
-
Apr 21st, 2002, 04:38 PM
#2
-= B u g S l a y e r =-
what is the error msg?
what does the code look like for the ReadProperty and the WriteProperties subs ?
-
Apr 23rd, 2002, 12:24 PM
#3
New Member
Without an error message, it looks pretty likely that the errors that you are getting is from not using the Set statement when assigning Objects to member variables and return functions.
Try this...
Public Property Let Picture(s As Image)
Set varPicture = s
UserControl.Picture = varPicture.Picture
PropertyChanged ("Picture")
End Property
Public Property Get Picture() As Image
Set Picture = varPicture
End Property
HTH,
Joseph
-
Apr 23rd, 2002, 01:32 PM
#4
Thread Starter
New Member
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|