Hello I am working on my first vba project in excel 2010 and I came across office vba compatibility inspector. I installed the add in and ran it and received this comment a few times in my code.
Code:
'<VBA_INSPECTOR>
    '   <REMOVED>
    '       <MESSAGE>Potentially contains removed items in the object model</MESSAGE>
    '       <ITEM>[mso]FileDialogFilters.Clear</ITEM>
    '       <URL>http://go.microsoft.com/fwlink/?LinkID=215358 /URL>
    '   </REMOVED>
    '</VBA_INSPECTOR>
For using this
Code:
textbox1.clear
Is .clear being properly used to clear the contents of the textbox? Or is .clear not long the correct method to use? Or is vba compatibility inspector not so reliable?

Thank,
JO