{"id":2221,"date":"2012-09-05T16:41:08","date_gmt":"2012-09-05T07:41:08","guid":{"rendered":"http:\/\/www.ka-net.org\/blog\/?p=2221"},"modified":"2013-08-19T17:27:11","modified_gmt":"2013-08-19T08:27:11","slug":"%e8%9b%8d%e5%85%89%e3%83%9a%e3%83%b3%e3%81%a7%e3%83%9e%e3%83%bc%e3%82%af%e3%81%97%e3%81%9f%e9%83%a8%e5%88%86%e3%81%ae%e6%96%87%e5%ad%97%e6%95%b0%e3%82%92%e3%82%ab%e3%82%a6%e3%83%b3%e3%83%88%e3%81%99","status":"publish","type":"post","link":"https:\/\/www.ka-net.org\/blog\/?p=2221","title":{"rendered":"\u86cd\u5149\u30da\u30f3\u3067\u30de\u30fc\u30af\u3057\u305f\u90e8\u5206\u306e\u6587\u5b57\u6570\u3092\u30ab\u30a6\u30f3\u30c8\u3059\u308bWord\u30de\u30af\u30ed"},"content":{"rendered":"<p>Twitter\u3067\u305f\u307e\u305f\u307e\u4e0b\u8a18\u306e\u30c4\u30a4\u30fc\u30c8\u3092\u898b\u3064\u3051\u305f\u306e\u3067\u3001\u7c21\u5358\u306a\u51e6\u7406\u3092\u8003\u3048\u3066\u307f\u307e\u3057\u305f\u3002<br \/>\n\u86cd\u5149\u30da\u30f3\u3067\u30de\u30fc\u30af\u3057\u305f\u90e8\u5206\u306e\u6587\u5b57\u6570\u3092\u30ab\u30a6\u30f3\u30c8\u3059\u308bWord\u30de\u30af\u30ed\u3067\u3001\u52d5\u4f5c\u78ba\u8a8d\u306fWord 2010\u3067\u884c\u3044\u307e\u3057\u305f\u3002<\/p>\n<blockquote><p>\u3053\u308c\u3001\u65b0\u7530\u3055\u3093\u30de\u30af\u30ed\u306b\u7d44\u307f\u8fbc\u3093\u3067\u304f\u308c\u306a\u3044\u304b\u306a\uff1f(\u7b11)\u2026\u3064\u304b\u3001\u3053\u308c\u304f\u3089\u3044\u306a\u3089\u81ea\u5206\u3067\u4f5c\u308c\u308b\u304bww <a href=\"http:\/\/bit.ly\/PZlnNI\" title=\"MS-WORD\u30d5\u30a1\u30a4\u30eb\u4e0a\u306b\u6563\u5728\u3059\u308b\u86cd\u5149\u30da\u30f3\u90e8\u306e\u7dcf\u6587\u5b57\u6570\u3092\u6570\u3048\u308b\u65b9\u6cd5(WORD2010)\" target=\"_blank\">http:\/\/bit.ly\/PZlnNI<\/a>  \u6280\u8853\u8005\u304b\u3089\u7ffb\u8a33\u8005\u3078\u306e\u30b7\u30eb\u30af\u30ed\u30fc\u30c9:MS-WORD\u30d5\u30a1\u30a4\u30eb\u4e0a\u306b\u6563\u5728\u3059\u308b\u86cd\u5149\u30da\u30f3\u90e8\u306e\u7dcf\u6587\u5b57\u6570\u3092\u6570\u3048\u308b\u65b9\u6cd5(WORD2010)<\/p><\/blockquote>\n<p><a href=\"https:\/\/twitter.com\/terrysaito\/status\/243093715961405440\" target=\"_blank\">https:\/\/twitter.com\/terrysaito\/status\/243093715961405440<\/a> \u3088\u308a<\/p>\n<pre class=\"brush: vb; title: ; notranslate\" title=\"\">Option Explicit\r\n\r\nPublic Sub Sample()\r\n  Debug.Print &quot;\u6587\u5b57\u6570 (\u30b9\u30da\u30fc\u30b9\u3092\u542b\u3081\u306a\u3044) : &quot; &amp; CountHighlightCharacters(ActiveDocument, wdStatisticCharacters)\r\n  Debug.Print &quot;\u6587\u5b57\u6570 (\u30b9\u30da\u30fc\u30b9\u3092\u542b\u3081\u308b) : &quot; &amp; CountHighlightCharacters(ActiveDocument, wdStatisticCharactersWithSpaces)\r\nEnd Sub\r\n\r\nPrivate Function CountHighlightCharacters(ByVal Doc As Word.Document, ByVal Statistic As Word.WdStatistic) As Long\r\n'\u86cd\u5149\u30da\u30f3\u3067\u30de\u30fc\u30af\u3057\u305f\u90e8\u5206\u306e\u6587\u5b57\u6570\u3092\u30ab\u30a6\u30f3\u30c8\u3059\u308b\r\n  Dim r As Word.Range\r\n  Dim n As Long\r\n  \r\n  n = 0 '\u521d\u671f\u5316\r\n  Set r = Doc.Range(0, 0)\r\n  With r.Find\r\n    '\u203b \u691c\u7d22\u6761\u4ef6\u306f\u5fc5\u8981\u306b\u5fdc\u3058\u3066\u5909\u66f4\r\n    .ClearFormatting\r\n    .ClearAllFuzzyOptions\r\n    .Text = &quot;&quot;\r\n    .Replacement.Text = &quot;&quot;\r\n    .Format = True\r\n    .Forward = True\r\n    .Highlight = True\r\n    .MatchAllWordForms = False\r\n    .MatchByte = False\r\n    .MatchCase = False\r\n    .MatchFuzzy = False\r\n    .MatchSoundsLike = False\r\n    .MatchWholeWord = False\r\n    .MatchWildcards = False\r\n    .Wrap = wdFindStop\r\n    Do While .Execute\r\n      n = n + r.ComputeStatistics(Statistic)\r\n    Loop\r\n  End With\r\n  CountHighlightCharacters = n\r\nEnd Function<\/pre>\n<p>Document\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3068WdStatistic\u5217\u6319\u578b\u3092\u5f15\u6570\u306b\u3057\u3066\u3044\u308b\u306e\u3067\u3001\u30ab\u30a6\u30f3\u30c8\u5bfe\u8c61\u306e\u6587\u66f8\u3068\u30ab\u30a6\u30f3\u30c8\u65b9\u6cd5(\u6587\u5b57\u6570\u306b\u30b9\u30da\u30fc\u30b9\u3092\u542b\u3081\u308b\u304b\u5426\u304b)\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"Twitter\u3067\u305f\u307e\u305f\u307e\u4e0b\u8a18\u306e\u30c4\u30a4\u30fc\u30c8\u3092\u898b\u3064\u3051\u305f\u306e\u3067\u3001\u7c21\u5358\u306a\u51e6\u7406\u3092\u8003\u3048\u3066\u307f\u307e\u3057\u305f\u3002 \u86cd\u5149\u30da\u30f3\u3067\u30de\u30fc\u30af\u3057\u305f\u90e8\u5206\u306e\u6587\u5b57\u6570\u3092\u30ab\u30a6\u30f3\u30c8\u3059\u308bWord\u30de\u30af\u30ed\u3067\u3001\u52d5\u4f5c\u78ba\u8a8d\u306fWord 2010\u3067\u884c\u3044\u307e\u3057\u305f\u3002 \u3053\u308c\u3001\u65b0\u7530\u3055\u3093\u30de\u30af\u30ed\u306b\u7d44\u307f\u8fbc [&hellip;]","protected":false},"author":1,"featured_media":7134,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[4,49],"tags":[45,85],"class_list":["post-2221","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-office","category-word-office","tag-word-","tag-word-vba-2"],"aioseo_notices":[],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/eyecatch-Word.png","jetpack_shortlink":"https:\/\/wp.me\/p4UZZr-zP","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/2221","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=2221"}],"version-history":[{"count":5,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/2221\/revisions"}],"predecessor-version":[{"id":2226,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/2221\/revisions\/2226"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/media\/7134"}],"wp:attachment":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=2221"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=2221"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=2221"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}