Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Property Get/Let/Set are no longer supported; use the new Property declaration syntax.
The syntax for declaring properties has changed. Properties are now defined within blocks.
Error ID: BC30808
To correct this error
- Define properties in blocks of code that begin with the Property keyword. End properties using the End Property construct. 
- Define Get property procedures within property blocks with the Get keyword. End Get property procedures with the End Get construct. 
- Define property Set procedures within property blocks with the Set keyword. End Set property procedures with the End Set construct. 
- Use Set property procedures for all property assignments. Let property procedures are no longer necessary, or supported.