How To Hide The Members of An Enum Statement In VBA
UsefulGyaan Has Posted the Following On 07-19-2013 09:31 AM:
If you want to prevent a member of Enum from being displayed in VB editor’s intellisense then it can be done by prefixing them with ‘_’ and then putting them in square brackets. e.g. Enum Role AVP Manager Analyst [_HideMe] End Enum In the above image it can be seen that [ _HideMe] is not […]http://stats.wordpress.com/b.gif?hos...f=&feed=1
VBA Trick of the Week :: Hiding Members of Enum