본문 바로가기

Windows/MFC

How to disable Visual Studio macro “tip” balloon?

http://stackoverflow.com/questions/48470/how-to-disable-visual-studio-macro-tip-balloon/296494#296494


This will disable the pop up:

For Visual Studio 2008:

HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\8.0
DWORD DontShowMacrosBalloon=6

For Visual Studio 2010 (the DWORD won't be there by default, use New | DWORD value to create it):

HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\10.0
DWORD DontShowMacrosBalloon=6

Delete the same key to re-enable it.