PDA

View Full Version : How To Hide The Members of An Enum Statement In VBA



Transformer
07-19-2013, 09:04 AM
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?host=usefulgyaan.wordpress.com&blog=50473542 &post=1224&subd=usefulgyaan&ref=&feed=1

VBA Trick of the Week :: Hiding Members of Enum (http://usefulgyaan.wordpress.com/2013/07/19/vba-trick-of-the-week-hiding-members-of-enum/)