Author Topic: Show Symbols dialog not showing confirm option  (Read 3660 times)

Mr68360

  • Community Member
  • Posts: 57
  • Hero Points: 3
Show Symbols dialog not showing confirm option
« on: October 01, 2008, 09:46:15 PM »
I'm trying to return the Show Symbols dialog to displaying the "Do not show these options again" checkbox.  I previously checked the "Always navigate to..." boxes, but now, with both unchecked in the options, the "Do not show..." will not reappear.

Is there a separate setting to bring the original dialog appearance back?


Graeme

  • Senior Community Member
  • Posts: 2793
  • Hero Points: 347
Re: Show Symbols dialog not showing confirm option
« Reply #1 on: October 02, 2008, 08:30:23 AM »

This macro might do it - untested.

Code: [Select]
#include "slick.sh"

_command please_unhide() name_info(','VSARG2_MACRO|VSARG2_MARK|VSARG2_REQUIRES_MDI_EDITORCTL)
{
   _str ext = _Filename2LangId(_mdi.p_child.p_buf_name);
   int ff = _GetCodehelpFlags(ext);
   ff = ((ff & ~VSCODEHELPFLAG_FIND_TAG_HIDE_OPTIONS));
   _SetLanguageOption(ext,'codehelp',ff);
}


Mr68360

  • Community Member
  • Posts: 57
  • Hero Points: 3
Re: Show Symbols dialog not showing confirm option
« Reply #2 on: October 03, 2008, 04:52:26 PM »
Tested, and works good, Graeme.  Thanks.