आप इसे VBA के माध्यम से आउटलुक में भी कर सकते हैं। Office 2010 अब आपको इनमें से अधिकांश समाधानों के माध्यम से निकालने की अनुमति नहीं देता है।
Word, PowerPoint और Excel आपको इस आसान समाधान का उपयोग करने की अनुमति देते हैं ।
आउटलुक को अधिक परेशानी की आवश्यकता होती है क्योंकि इसमें एक्सप्लोरर्स और इंस्पेक्टर दोनों का उपयोग किया जाता है, जो अलग-अलग संदर्भों में दोनों इस कमांडबार को सक्षम करता है। समाधान इसलिए दो भाग है।
WithEvents
प्रत्येक नए इंस्पेक्टर के निर्माण को संभालने के लिए एक भाग की स्थापना की जा रही है। आम तौर पर ये तब होते हैं जब आप एक संदेश / घटना / आदि को खोलते हैं, और वे हर बार बनाए / नष्ट किए जाते हैं। इसलिए यदि आप हर वर्तमान इंस्पेक्टर को मारते हैं, तो भी आपके नए कमांडर अक्षम नहीं होंगे।
इस VutlookSession में निम्नलिखित को अपने VBA संपादक (Alt + F11) में डालें। प्रत्येक नए इंस्पेक्टर (और अन्वेषक, हालांकि, मैंने अभी तक एक खोजकर्ता बनाया है) उसके कमांड बार को निष्क्रिय कर देगा।
Public WithEvents colInspectors As Outlook.Inspectors
Public WithEvents objInspector As Outlook.Inspector
Public WithEvents colExplorers As Outlook.Explorers
Public WithEvents objExplorer As Outlook.Explorer
Public Sub Application_Startup()
Init_colExplorersEvent
Init_colInspectorsEvent
End Sub
Private Sub Init_colExplorersEvent()
Set colExplorers = Outlook.Explorers
End Sub
Private Sub Init_colInspectorsEvent()
'Initialize the inspectors events handler
Set colInspectors = Outlook.Inspectors
End Sub
Private Sub colInspectors_NewInspector(ByVal NewInspector As Inspector)
Debug.Print "new inspector"
NewInspector.commandbars("Research").Enabled = False
'This is the code that creates a new inspector with events activated
Set objInspector = NewInspector
End Sub
Private Sub colExplorers_NewExplorer(ByVal NewExplorer As Explorer)
'I don't believe this is required for explorers as I do not think Outlook
'ever creates additional explorers... but who knows
Debug.Print "new explorer"
NewExplorer.commandbars("Research").Enabled = False
'This is the code that creates a new inspector with events activated
Set objExplorer = NewExplorer
End Sub
हालाँकि यह केवल मेनू को आउटलुक के कुछ विचारों से हट जाएगा। आपको अभी भी सभी खोजकर्ताओं से इसे हटाने के लिए निम्न मैक्रो को चलाने की आवश्यकता होगी। जब मैं आउटलुक को बंद / फिर से खोल देता हूं, तो सबसे अच्छा मैं यह बता सकता हूं:
Private Sub removeOutlookResearchBar()
'remove from main Outlook explorer
Dim mExp As Explorer
For Each mExp In Outlook.Explorers
mExp.commandbars("Research").Enabled = False
Next mExp
End Sub