Using VBA to allow a checkbox to hide/show content in Microsoft Word The 2019 Stack Overflow Developer Survey Results Are InWORD 2007 w/VBAshow hide content depending if a checkbox is checkedCan range be used to get text from hyperlinked bookmark from a supplemental document in Word 2010 VBA?Word VBA “Saveas” without hidden text?How to hide unchecked checkboxes when printingHow can I show/hide divs with checkboxes and javascript?ActiveX Checkbox calls Sub to loop through all Bookmarks and perform conditional action (to specific group)vbscript validate checkboxes in Microsoft WordContentControlOnEnter event not triggeredVBA Word Macro to Allow User to Select and Copy Text Multiple Times

Will it cause any balance problems to have PCs level up and gain the benefits of a long rest mid-fight?

Can we generate random numbers using irrational numbers like π and e?

How can I add encounters in the Lost Mine of Phandelver campaign without giving PCs too much XP?

Is there a way to generate a uniformly distributed point on a sphere from a fixed amount of random real numbers?

Why can't devices on different VLANs, but on the same subnet, communicate?

Falsification in Math vs Science

What is the most efficient way to store a numeric range?

Why can I use a list index as an indexing variable in a for loop?

Keeping a retro style to sci-fi spaceships?

Is it ethical to upload a automatically generated paper to a non peer-reviewed site as part of a larger research?

Can there be female White Walkers?

How come people say “Would of”?

What to do when moving next to a bird sanctuary with a loosely-domesticated cat?

Why doesn't UInt have a toDouble()?

Match Roman Numerals

Can a flute soloist sit?

Is bread bad for ducks?

Dropping list elements from nested list after evaluation

Cooking pasta in a water boiler

For what reasons would an animal species NOT cross a *horizontal* land bridge?

The phrase "to the numbers born"?

What does もの mean in this sentence?

How do you keep chess fun when your opponent constantly beats you?

Did Scotland spend $250,000 for the slogan "Welcome to Scotland"?



Using VBA to allow a checkbox to hide/show content in Microsoft Word



The 2019 Stack Overflow Developer Survey Results Are InWORD 2007 w/VBAshow hide content depending if a checkbox is checkedCan range be used to get text from hyperlinked bookmark from a supplemental document in Word 2010 VBA?Word VBA “Saveas” without hidden text?How to hide unchecked checkboxes when printingHow can I show/hide divs with checkboxes and javascript?ActiveX Checkbox calls Sub to loop through all Bookmarks and perform conditional action (to specific group)vbscript validate checkboxes in Microsoft WordContentControlOnEnter event not triggeredVBA Word Macro to Allow User to Select and Copy Text Multiple Times



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








1















I've gone through a number of tutorials and instructional videos trying to achieve my intended result of simply allowing a checkbox in my form to hide content when selected, or re-show it when being de-selected, but nothing seems to be working.



Currently, I've created a bookmark for the content I want hidden, and try to call his this in VBA with the following statement - which a number of resources indicated as the solution:



Private Sub CheckBox1_Click()
ActiveDocument.Bookmarks("bookmark").Range.Font.Hidden = CheckBox1.Value
End Sub


But despite doing this, selecting the checkbox has no affect on the content.



Is there something additional I'm missing (I'm using Microsoft Word 2013).










share|improve this question




























    1















    I've gone through a number of tutorials and instructional videos trying to achieve my intended result of simply allowing a checkbox in my form to hide content when selected, or re-show it when being de-selected, but nothing seems to be working.



    Currently, I've created a bookmark for the content I want hidden, and try to call his this in VBA with the following statement - which a number of resources indicated as the solution:



    Private Sub CheckBox1_Click()
    ActiveDocument.Bookmarks("bookmark").Range.Font.Hidden = CheckBox1.Value
    End Sub


    But despite doing this, selecting the checkbox has no affect on the content.



    Is there something additional I'm missing (I'm using Microsoft Word 2013).










    share|improve this question
























      1












      1








      1








      I've gone through a number of tutorials and instructional videos trying to achieve my intended result of simply allowing a checkbox in my form to hide content when selected, or re-show it when being de-selected, but nothing seems to be working.



      Currently, I've created a bookmark for the content I want hidden, and try to call his this in VBA with the following statement - which a number of resources indicated as the solution:



      Private Sub CheckBox1_Click()
      ActiveDocument.Bookmarks("bookmark").Range.Font.Hidden = CheckBox1.Value
      End Sub


      But despite doing this, selecting the checkbox has no affect on the content.



      Is there something additional I'm missing (I'm using Microsoft Word 2013).










      share|improve this question














      I've gone through a number of tutorials and instructional videos trying to achieve my intended result of simply allowing a checkbox in my form to hide content when selected, or re-show it when being de-selected, but nothing seems to be working.



      Currently, I've created a bookmark for the content I want hidden, and try to call his this in VBA with the following statement - which a number of resources indicated as the solution:



      Private Sub CheckBox1_Click()
      ActiveDocument.Bookmarks("bookmark").Range.Font.Hidden = CheckBox1.Value
      End Sub


      But despite doing this, selecting the checkbox has no affect on the content.



      Is there something additional I'm missing (I'm using Microsoft Word 2013).







      vba checkbox ms-word






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 22 at 2:53









      Jordy StewartJordy Stewart

      255




      255






















          1 Answer
          1






          active

          oldest

          votes


















          1














          Your code worked fine when I tested it, but I ran into a few issues since I've never messed with userforms/checkboxs in Word VBA and I suspect you may have the same.



          For instance, the first thing I did was create Insert --> Module. This is incorrect. What you want to do is Insert --> Userform then drag a checkbox over from the ToolBox



          https://smallbusiness.chron.com/use-check-boxes-word-54673.html



          Then double click the checkbox to bring up the "module" it would run, notice there is no module in the side pane! Edit the module, then go back to the userform and press F5. You should be presented with a checkbox that will hide/unhide your text.



          Here is my module:



          Public Sub CheckBox1_Click()
          ActiveDocument.Bookmarks("bookmark").Range.Font.Hidden = CheckBox1.Value
          End Sub


          Here is an image:



          enter image description here



          Note: I didn't test how to insert the checkbox into the word doc, I'll leave you some of the learning!



          Update:



          This sub will make the CheckBox appear when run, but I'm not sure the logic you would use to call it, perhaps an event like opening of document?



          Sub Loadform()
          Load UserForm1
          UserForm1.Show
          End Sub


          This could be called via a keyboard shortcut or event, but this will cause a "pop-up window". If you want an inform checkbox you may need to look into using this Legacy Form/Checkbox. I was following the URL from above but I think it's dated.



          enter image description here



          Update:



          You could also add this easily to a toolbar, but that isn't likely what you want. I found the best way is to use a "field code" see --> https://word.tips.net/T001571_Assigning_a_Macro_to_a_Button_in_Your_Text.html



          I was able to get this to work by pressing CTRL + F9 then typing MacroButton Loadform ClickMe then clicking this text. This may be the best bet as using an image seems not to be a great idea.. (https://answers.microsoft.com/en-us/msoffice/forum/all/using-graphic-with-macrobutton/a9c1ef3b-cf1f-48ba-92a8-c44bffcdc131) & (http://www.addbalance.com/usersguide/parts/macrobutton_fields.htm#Different_behavior)



          Gif Example:



          enter image description here






          share|improve this answer

























          • Can't figure out how to actually implement the checkbox into the word Doc, but additionally - From my understanding, doesn't using forms within Visual Basic make that created form act like a dialog window popup, or will it naturally appear in text?

            – Jordy Stewart
            Mar 22 at 4:05











          • That sounds correct, when I tested it was a pop-up window, I just added a macro that can be called to make the pop-up appear. However you may want to look into Legacy Tools --> Control Group --> CheckBox note that there is 2 checkbox's, you want the Legacy Form See Image

            – FreeSoftwareServers
            Mar 22 at 4:40











          • Well, I found a way to get it to work, but it's not a checkbox, it's text that loads the module.

            – FreeSoftwareServers
            Mar 22 at 4:57











          • I suppose you could do [ ] or something :P, hope this helps, it was fun to learn!

            – FreeSoftwareServers
            Mar 22 at 5:03






          • 1





            This suggestion is probably not working for the OP because it's not the kind of checkbox being used in the document.

            – Cindy Meister
            Mar 22 at 6:02











          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55292230%2fusing-vba-to-allow-a-checkbox-to-hide-show-content-in-microsoft-word%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          1














          Your code worked fine when I tested it, but I ran into a few issues since I've never messed with userforms/checkboxs in Word VBA and I suspect you may have the same.



          For instance, the first thing I did was create Insert --> Module. This is incorrect. What you want to do is Insert --> Userform then drag a checkbox over from the ToolBox



          https://smallbusiness.chron.com/use-check-boxes-word-54673.html



          Then double click the checkbox to bring up the "module" it would run, notice there is no module in the side pane! Edit the module, then go back to the userform and press F5. You should be presented with a checkbox that will hide/unhide your text.



          Here is my module:



          Public Sub CheckBox1_Click()
          ActiveDocument.Bookmarks("bookmark").Range.Font.Hidden = CheckBox1.Value
          End Sub


          Here is an image:



          enter image description here



          Note: I didn't test how to insert the checkbox into the word doc, I'll leave you some of the learning!



          Update:



          This sub will make the CheckBox appear when run, but I'm not sure the logic you would use to call it, perhaps an event like opening of document?



          Sub Loadform()
          Load UserForm1
          UserForm1.Show
          End Sub


          This could be called via a keyboard shortcut or event, but this will cause a "pop-up window". If you want an inform checkbox you may need to look into using this Legacy Form/Checkbox. I was following the URL from above but I think it's dated.



          enter image description here



          Update:



          You could also add this easily to a toolbar, but that isn't likely what you want. I found the best way is to use a "field code" see --> https://word.tips.net/T001571_Assigning_a_Macro_to_a_Button_in_Your_Text.html



          I was able to get this to work by pressing CTRL + F9 then typing MacroButton Loadform ClickMe then clicking this text. This may be the best bet as using an image seems not to be a great idea.. (https://answers.microsoft.com/en-us/msoffice/forum/all/using-graphic-with-macrobutton/a9c1ef3b-cf1f-48ba-92a8-c44bffcdc131) & (http://www.addbalance.com/usersguide/parts/macrobutton_fields.htm#Different_behavior)



          Gif Example:



          enter image description here






          share|improve this answer

























          • Can't figure out how to actually implement the checkbox into the word Doc, but additionally - From my understanding, doesn't using forms within Visual Basic make that created form act like a dialog window popup, or will it naturally appear in text?

            – Jordy Stewart
            Mar 22 at 4:05











          • That sounds correct, when I tested it was a pop-up window, I just added a macro that can be called to make the pop-up appear. However you may want to look into Legacy Tools --> Control Group --> CheckBox note that there is 2 checkbox's, you want the Legacy Form See Image

            – FreeSoftwareServers
            Mar 22 at 4:40











          • Well, I found a way to get it to work, but it's not a checkbox, it's text that loads the module.

            – FreeSoftwareServers
            Mar 22 at 4:57











          • I suppose you could do [ ] or something :P, hope this helps, it was fun to learn!

            – FreeSoftwareServers
            Mar 22 at 5:03






          • 1





            This suggestion is probably not working for the OP because it's not the kind of checkbox being used in the document.

            – Cindy Meister
            Mar 22 at 6:02















          1














          Your code worked fine when I tested it, but I ran into a few issues since I've never messed with userforms/checkboxs in Word VBA and I suspect you may have the same.



          For instance, the first thing I did was create Insert --> Module. This is incorrect. What you want to do is Insert --> Userform then drag a checkbox over from the ToolBox



          https://smallbusiness.chron.com/use-check-boxes-word-54673.html



          Then double click the checkbox to bring up the "module" it would run, notice there is no module in the side pane! Edit the module, then go back to the userform and press F5. You should be presented with a checkbox that will hide/unhide your text.



          Here is my module:



          Public Sub CheckBox1_Click()
          ActiveDocument.Bookmarks("bookmark").Range.Font.Hidden = CheckBox1.Value
          End Sub


          Here is an image:



          enter image description here



          Note: I didn't test how to insert the checkbox into the word doc, I'll leave you some of the learning!



          Update:



          This sub will make the CheckBox appear when run, but I'm not sure the logic you would use to call it, perhaps an event like opening of document?



          Sub Loadform()
          Load UserForm1
          UserForm1.Show
          End Sub


          This could be called via a keyboard shortcut or event, but this will cause a "pop-up window". If you want an inform checkbox you may need to look into using this Legacy Form/Checkbox. I was following the URL from above but I think it's dated.



          enter image description here



          Update:



          You could also add this easily to a toolbar, but that isn't likely what you want. I found the best way is to use a "field code" see --> https://word.tips.net/T001571_Assigning_a_Macro_to_a_Button_in_Your_Text.html



          I was able to get this to work by pressing CTRL + F9 then typing MacroButton Loadform ClickMe then clicking this text. This may be the best bet as using an image seems not to be a great idea.. (https://answers.microsoft.com/en-us/msoffice/forum/all/using-graphic-with-macrobutton/a9c1ef3b-cf1f-48ba-92a8-c44bffcdc131) & (http://www.addbalance.com/usersguide/parts/macrobutton_fields.htm#Different_behavior)



          Gif Example:



          enter image description here






          share|improve this answer

























          • Can't figure out how to actually implement the checkbox into the word Doc, but additionally - From my understanding, doesn't using forms within Visual Basic make that created form act like a dialog window popup, or will it naturally appear in text?

            – Jordy Stewart
            Mar 22 at 4:05











          • That sounds correct, when I tested it was a pop-up window, I just added a macro that can be called to make the pop-up appear. However you may want to look into Legacy Tools --> Control Group --> CheckBox note that there is 2 checkbox's, you want the Legacy Form See Image

            – FreeSoftwareServers
            Mar 22 at 4:40











          • Well, I found a way to get it to work, but it's not a checkbox, it's text that loads the module.

            – FreeSoftwareServers
            Mar 22 at 4:57











          • I suppose you could do [ ] or something :P, hope this helps, it was fun to learn!

            – FreeSoftwareServers
            Mar 22 at 5:03






          • 1





            This suggestion is probably not working for the OP because it's not the kind of checkbox being used in the document.

            – Cindy Meister
            Mar 22 at 6:02













          1












          1








          1







          Your code worked fine when I tested it, but I ran into a few issues since I've never messed with userforms/checkboxs in Word VBA and I suspect you may have the same.



          For instance, the first thing I did was create Insert --> Module. This is incorrect. What you want to do is Insert --> Userform then drag a checkbox over from the ToolBox



          https://smallbusiness.chron.com/use-check-boxes-word-54673.html



          Then double click the checkbox to bring up the "module" it would run, notice there is no module in the side pane! Edit the module, then go back to the userform and press F5. You should be presented with a checkbox that will hide/unhide your text.



          Here is my module:



          Public Sub CheckBox1_Click()
          ActiveDocument.Bookmarks("bookmark").Range.Font.Hidden = CheckBox1.Value
          End Sub


          Here is an image:



          enter image description here



          Note: I didn't test how to insert the checkbox into the word doc, I'll leave you some of the learning!



          Update:



          This sub will make the CheckBox appear when run, but I'm not sure the logic you would use to call it, perhaps an event like opening of document?



          Sub Loadform()
          Load UserForm1
          UserForm1.Show
          End Sub


          This could be called via a keyboard shortcut or event, but this will cause a "pop-up window". If you want an inform checkbox you may need to look into using this Legacy Form/Checkbox. I was following the URL from above but I think it's dated.



          enter image description here



          Update:



          You could also add this easily to a toolbar, but that isn't likely what you want. I found the best way is to use a "field code" see --> https://word.tips.net/T001571_Assigning_a_Macro_to_a_Button_in_Your_Text.html



          I was able to get this to work by pressing CTRL + F9 then typing MacroButton Loadform ClickMe then clicking this text. This may be the best bet as using an image seems not to be a great idea.. (https://answers.microsoft.com/en-us/msoffice/forum/all/using-graphic-with-macrobutton/a9c1ef3b-cf1f-48ba-92a8-c44bffcdc131) & (http://www.addbalance.com/usersguide/parts/macrobutton_fields.htm#Different_behavior)



          Gif Example:



          enter image description here






          share|improve this answer















          Your code worked fine when I tested it, but I ran into a few issues since I've never messed with userforms/checkboxs in Word VBA and I suspect you may have the same.



          For instance, the first thing I did was create Insert --> Module. This is incorrect. What you want to do is Insert --> Userform then drag a checkbox over from the ToolBox



          https://smallbusiness.chron.com/use-check-boxes-word-54673.html



          Then double click the checkbox to bring up the "module" it would run, notice there is no module in the side pane! Edit the module, then go back to the userform and press F5. You should be presented with a checkbox that will hide/unhide your text.



          Here is my module:



          Public Sub CheckBox1_Click()
          ActiveDocument.Bookmarks("bookmark").Range.Font.Hidden = CheckBox1.Value
          End Sub


          Here is an image:



          enter image description here



          Note: I didn't test how to insert the checkbox into the word doc, I'll leave you some of the learning!



          Update:



          This sub will make the CheckBox appear when run, but I'm not sure the logic you would use to call it, perhaps an event like opening of document?



          Sub Loadform()
          Load UserForm1
          UserForm1.Show
          End Sub


          This could be called via a keyboard shortcut or event, but this will cause a "pop-up window". If you want an inform checkbox you may need to look into using this Legacy Form/Checkbox. I was following the URL from above but I think it's dated.



          enter image description here



          Update:



          You could also add this easily to a toolbar, but that isn't likely what you want. I found the best way is to use a "field code" see --> https://word.tips.net/T001571_Assigning_a_Macro_to_a_Button_in_Your_Text.html



          I was able to get this to work by pressing CTRL + F9 then typing MacroButton Loadform ClickMe then clicking this text. This may be the best bet as using an image seems not to be a great idea.. (https://answers.microsoft.com/en-us/msoffice/forum/all/using-graphic-with-macrobutton/a9c1ef3b-cf1f-48ba-92a8-c44bffcdc131) & (http://www.addbalance.com/usersguide/parts/macrobutton_fields.htm#Different_behavior)



          Gif Example:



          enter image description here







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Mar 22 at 5:02

























          answered Mar 22 at 3:37









          FreeSoftwareServersFreeSoftwareServers

          780617




          780617












          • Can't figure out how to actually implement the checkbox into the word Doc, but additionally - From my understanding, doesn't using forms within Visual Basic make that created form act like a dialog window popup, or will it naturally appear in text?

            – Jordy Stewart
            Mar 22 at 4:05











          • That sounds correct, when I tested it was a pop-up window, I just added a macro that can be called to make the pop-up appear. However you may want to look into Legacy Tools --> Control Group --> CheckBox note that there is 2 checkbox's, you want the Legacy Form See Image

            – FreeSoftwareServers
            Mar 22 at 4:40











          • Well, I found a way to get it to work, but it's not a checkbox, it's text that loads the module.

            – FreeSoftwareServers
            Mar 22 at 4:57











          • I suppose you could do [ ] or something :P, hope this helps, it was fun to learn!

            – FreeSoftwareServers
            Mar 22 at 5:03






          • 1





            This suggestion is probably not working for the OP because it's not the kind of checkbox being used in the document.

            – Cindy Meister
            Mar 22 at 6:02

















          • Can't figure out how to actually implement the checkbox into the word Doc, but additionally - From my understanding, doesn't using forms within Visual Basic make that created form act like a dialog window popup, or will it naturally appear in text?

            – Jordy Stewart
            Mar 22 at 4:05











          • That sounds correct, when I tested it was a pop-up window, I just added a macro that can be called to make the pop-up appear. However you may want to look into Legacy Tools --> Control Group --> CheckBox note that there is 2 checkbox's, you want the Legacy Form See Image

            – FreeSoftwareServers
            Mar 22 at 4:40











          • Well, I found a way to get it to work, but it's not a checkbox, it's text that loads the module.

            – FreeSoftwareServers
            Mar 22 at 4:57











          • I suppose you could do [ ] or something :P, hope this helps, it was fun to learn!

            – FreeSoftwareServers
            Mar 22 at 5:03






          • 1





            This suggestion is probably not working for the OP because it's not the kind of checkbox being used in the document.

            – Cindy Meister
            Mar 22 at 6:02
















          Can't figure out how to actually implement the checkbox into the word Doc, but additionally - From my understanding, doesn't using forms within Visual Basic make that created form act like a dialog window popup, or will it naturally appear in text?

          – Jordy Stewart
          Mar 22 at 4:05





          Can't figure out how to actually implement the checkbox into the word Doc, but additionally - From my understanding, doesn't using forms within Visual Basic make that created form act like a dialog window popup, or will it naturally appear in text?

          – Jordy Stewart
          Mar 22 at 4:05













          That sounds correct, when I tested it was a pop-up window, I just added a macro that can be called to make the pop-up appear. However you may want to look into Legacy Tools --> Control Group --> CheckBox note that there is 2 checkbox's, you want the Legacy Form See Image

          – FreeSoftwareServers
          Mar 22 at 4:40





          That sounds correct, when I tested it was a pop-up window, I just added a macro that can be called to make the pop-up appear. However you may want to look into Legacy Tools --> Control Group --> CheckBox note that there is 2 checkbox's, you want the Legacy Form See Image

          – FreeSoftwareServers
          Mar 22 at 4:40













          Well, I found a way to get it to work, but it's not a checkbox, it's text that loads the module.

          – FreeSoftwareServers
          Mar 22 at 4:57





          Well, I found a way to get it to work, but it's not a checkbox, it's text that loads the module.

          – FreeSoftwareServers
          Mar 22 at 4:57













          I suppose you could do [ ] or something :P, hope this helps, it was fun to learn!

          – FreeSoftwareServers
          Mar 22 at 5:03





          I suppose you could do [ ] or something :P, hope this helps, it was fun to learn!

          – FreeSoftwareServers
          Mar 22 at 5:03




          1




          1





          This suggestion is probably not working for the OP because it's not the kind of checkbox being used in the document.

          – Cindy Meister
          Mar 22 at 6:02





          This suggestion is probably not working for the OP because it's not the kind of checkbox being used in the document.

          – Cindy Meister
          Mar 22 at 6:02



















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55292230%2fusing-vba-to-allow-a-checkbox-to-hide-show-content-in-microsoft-word%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

          Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript