- Local time
- Today, 08:49
- Joined
- Feb 28, 2001
- Messages
- 30,032
I have been playing around with a text parser that I created as a class object. I noticed that there are some attributes available so that if you have the object in the object browser, you can change the order in which they appear and can provide a simple text description. Something similar to
However, even though the class itself seems to be working correctly, AC2010's VBA doesn't recognize the Attribute keyword. Has anyone played around with this sort of thing before? I got the reference to this ability from this article:
Code:
Public Property Get TokenSize() As Long
Attribute TokenSize.VB_Description = "Size of returned token in bytes"
Attribute TokenSize.VB_UserMemID= 4 'would appear 4th in the list of class object properties
...
However, even though the class itself seems to be working correctly, AC2010's VBA doesn't recognize the Attribute keyword. Has anyone played around with this sort of thing before? I got the reference to this ability from this article: