{"id":1712,"date":"2012-05-25T15:50:12","date_gmt":"2012-05-25T06:50:12","guid":{"rendered":"http:\/\/www.ka-net.org\/blog\/?p=1712"},"modified":"2012-05-25T15:50:12","modified_gmt":"2012-05-25T06:50:12","slug":"%e3%83%97%e3%83%ad%e3%82%b0%e3%83%a9%e3%83%a0%e3%81%ae%e3%82%bd%e3%83%bc%e3%82%b9%e3%82%b3%e3%83%bc%e3%83%89%e3%82%92%e5%88%a5%e3%81%ae%e8%a8%80%e8%aa%9e%e3%81%ab%e5%a4%89%e6%8f%9b%e3%81%99%e3%82%8bvb","status":"publish","type":"post","link":"https:\/\/www.ka-net.org\/blog\/?p=1712","title":{"rendered":"\u30d7\u30ed\u30b0\u30e9\u30e0\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u5225\u306e\u8a00\u8a9e\u306b\u5909\u63db\u3059\u308bVBA\u30de\u30af\u30ed"},"content":{"rendered":"<p>SharpDevelop\u304c\u516c\u958b\u3057\u3066\u3044\u308b\u3001\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u5909\u63db\u3059\u308bAPI\u300c<a href=\"http:\/\/codeconverter.sharpdevelop.net\/ConvertService.asmx\" title=\"SharpDevelop Code Converter API\" target=\"_blank\">SharpDevelop Code Converter API<\/a>\u300d\u3092\u898b\u3064\u3051\u305f\u306e\u3067\u3001\u65e9\u901f\u8a66\u3057\u3066\u307f\u307e\u3057\u305f(Web\u4e0a\u306e\u30b3\u30f3\u30d0\u30fc\u30bf\u30fc\u306f<a href=\"http:\/\/codeconverter.sharpdevelop.net\/SnippetConverter.aspx\" title=\"Snippet Converter for .NET 4.0\" target=\"_blank\">\u30b3\u30c1\u30e9<\/a>)\u3002<\/p>\n<p>\u30d7\u30ed\u30c8\u30b3\u30eb\u304cSOAP\u306a\u306e\u3067SoapClient30\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u5229\u7528\u3057\u307e\u3059\u3002<\/p>\n<p><span style=\"color: #ff0000; font-weight: bold;\">\u203b \u8981SOAP Toolkit<\/span><\/p>\n<p><strong>\u30fbSOAP Toolkit 3.0<\/strong><br \/>\n<a href=\"http:\/\/www.microsoft.com\/en-us\/download\/details.aspx?id=13456\" title=\"SOAP Toolkit 3.0\" target=\"_blank\">http:\/\/www.microsoft.com\/en-us\/download\/details.aspx?id=13456<\/a><\/p>\n<pre class=\"brush: vb; title: ; notranslate\" title=\"\">Option Explicit\r\n\r\nPublic Sub Sample()\r\n  Dim TypeOfConversion As String\r\n  Dim SourceCode As String\r\n  Dim ConvertedCode As String\r\n  Dim ErrorMessage As String\r\n  \r\n  'TypeOfConversion:\u5909\u63db\u5143\u3068\u5909\u63db\u5148\u8a00\u8a9e\r\n  'C# to VB.NET:cs2vbnet\r\n  'VB.NET to C#:vbnet2cs\r\n  'C# to Boo:cs2boo\r\n  'VB.NET to Boo:vbnet2boo\r\n  TypeOfConversion = &quot;cs2vbnet&quot;\r\n  \r\n  '\u5909\u63db\u5143\u30b3\u30fc\u30c9(C#)\r\n  SourceCode = &quot;using System;&quot; &amp; vbCrLf\r\n  SourceCode = SourceCode &amp; &quot;namespace HelloWorld&quot; &amp; vbCrLf\r\n  SourceCode = SourceCode &amp; &quot;{&quot; &amp; vbCrLf\r\n  SourceCode = SourceCode &amp; &quot;    class Hello&quot; &amp; vbCrLf\r\n  SourceCode = SourceCode &amp; &quot;    {&quot; &amp; vbCrLf\r\n  SourceCode = SourceCode &amp; &quot;        static void Main()&quot; &amp; vbCrLf\r\n  SourceCode = SourceCode &amp; &quot;        {&quot; &amp; vbCrLf\r\n  SourceCode = SourceCode &amp; &quot;            System.Console.WriteLine(&quot;&quot;Hello World!&quot;&quot;);&quot; &amp; vbCrLf\r\n  SourceCode = SourceCode &amp; &quot;        }&quot; &amp; vbCrLf\r\n  SourceCode = SourceCode &amp; &quot;    }&quot; &amp; vbCrLf\r\n  SourceCode = SourceCode &amp; &quot;}&quot;\r\n  \r\n  With CreateObject(&quot;MSSOAP.SoapClient30&quot;)\r\n    .MSSoapInit2 &quot;http:\/\/codeconverter.sharpdevelop.net\/ConvertService.asmx?WSDL&quot;, _\r\n                 &quot;&quot;, _\r\n                 &quot;ConvertService&quot;, _\r\n                 &quot;ConvertServiceSoap&quot;, _\r\n                 &quot;http:\/\/developer.sharpdevelop.net\/CodeConverter.NET\/&quot;\r\n    If .PerformConversion(TypeOfConversion, SourceCode, ConvertedCode, ErrorMessage) Then\r\n      .ConvertSnippet TypeOfConversion, SourceCode, ConvertedCode, ErrorMessage\r\n      Debug.Print ConvertedCode\r\n    End If\r\n  End With\r\nEnd Sub<\/pre>\n<p>\u4e0a\u8a18\u30b3\u30fc\u30c9\u3067\u306f<strong>ConvertSnippet<\/strong>\u30aa\u30da\u30ec\u30fc\u30b7\u30e7\u30f3\u3092\u547c\u3073\u51fa\u3057\u3066\u30b3\u30fc\u30c9\u306e\u5909\u63db\u3092\u884c\u3063\u3066\u3044\u3066\u3001\u5143\u3068\u306a\u308bC#\u306e\u30b3\u30fc\u30c9\u304c\u4e0b\u8a18\u3067\u3001<\/p>\n<pre class=\"brush: csharp; title: ; notranslate\" title=\"\">using System;\r\nnamespace HelloWorld\r\n{\r\n    class Hello\r\n    {\r\n        static void Main()\r\n        {\r\n            System.Console.WriteLine(&quot;Hello World!&quot;);\r\n        }\r\n    }\r\n}<\/pre>\n<p>\u51fa\u529b\u3055\u308c\u305fVB\u306e\u30b3\u30fc\u30c9\u304c\u4e0b\u8a18\u306b\u306a\u308a\u307e\u3059\u3002<\/p>\n<pre class=\"brush: vb; title: ; notranslate\" title=\"\">Namespace HelloWorld\r\n    Class Hello\r\n        Private Shared Sub Main()\r\n            System.Console.WriteLine(&quot;Hello World!&quot;)\r\n        End Sub\r\n    End Class\r\nEnd Namespace<\/pre>\n<p>\u7cbe\u5ea6\u306e\u691c\u8a3c\u307e\u3067\u306f\u3057\u3066\u3044\u307e\u305b\u3093\u304c\u3001\u7c21\u5358\u306a\u30b3\u30fc\u30c9\u3060\u3063\u305f\u3089\u3061\u3083\u3093\u3068\u5909\u63db\u3057\u3066\u304f\u308c\u305d\u3046\u3067\u3059\u3002<br \/>\n\u3053\u306eAPI\u3092VBA\u304b\u3089\u4f7f\u3046\u662f\u975e\u306f\u514e\u3082\u89d2\u3068\u3057\u3066\u3001\u4e2d\u3005\u9762\u767d\u3044API\u3067\u3059\u306d\uff01<br \/>\n\u5b9f\u969b\u306b\u5229\u7528\u3059\u308b\u969b\u306b\u306f\u3001\u30c6\u30ad\u30b9\u30c8\u30dc\u30c3\u30af\u30b9\u3084\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304b\u308c\u305f\u30b3\u30fc\u30c9\u3092\u5909\u63db\u3059\u308b\u3001\u3068\u3044\u3046\u5f62\u306b\u3059\u308c\u3070\u4f7f\u3044\u52dd\u624b\u304c\u3088\u304f\u306a\u308a\u305d\u3046\u3067\u3059\u3002<\/p>\n<p>\u3061\u306a\u307f\u306b\u3001\u4e0a\u8a18\u30b3\u30fc\u30c9\u3092\u66f8\u304f\u306b\u3042\u305f\u3063\u3066\u30b5\u30f3\u30d7\u30eb\u3084\u8cc7\u6599\u304c\u5c11\u306a\u3044\u306e\u3067\u82e5\u5e72\u82e6\u52b4\u3057\u307e\u3057\u305f\u3002<br \/>\n(&#8220;<strong>TypeOfConversion<\/strong>&#8220;\u306b\u6307\u5b9a\u3059\u308b\u30b3\u30fc\u30c9\u306e\u7a2e\u985e\u306e\u66f8\u304d\u65b9\u3082\u6700\u521d\u306f\u5206\u304b\u3089\u305a\u2026)<br \/>\nC#\u3067\u66f8\u304b\u308c\u305f\u4e0b\u8a18\u30b5\u30f3\u30d7\u30eb\u30d7\u30ed\u30b0\u30e9\u30e0\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u898b\u3064\u3051\u3066\u3088\u3046\u3084\u304f\u4f7f\u3044\u65b9\u304c\u5206\u304b\u3063\u305f\u306e\u3067\u3059\u304c\u3001\u3082\u3046\u3061\u3087\u3063\u3068\u30b5\u30f3\u30d7\u30eb\u30b3\u30fc\u30c9\u3092\u8f09\u305b\u3066\u304a\u3044\u3066\u307b\u3057\u304b\u3063\u305f\uff01\u3068\u3044\u3046\u306e\u304c\u6b63\u76f4\u306a\u611f\u60f3\u3067\u3059\u3002<\/p>\n<p><strong>\u30fbWindows Forms Web Service Client<\/strong><br \/>\n<a href=\"http:\/\/codeconverter.sharpdevelop.net\/DotNetClientApplication.aspx\" title=\"Windows Forms Web Service Client\" target=\"_blank\">http:\/\/codeconverter.sharpdevelop.net\/DotNetClientApplication.aspx<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"SharpDevelop\u304c\u516c\u958b\u3057\u3066\u3044\u308b\u3001\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u5909\u63db\u3059\u308bAPI\u300cSharpDevelop Code Converter API\u300d\u3092\u898b\u3064\u3051\u305f\u306e\u3067\u3001\u65e9\u901f\u8a66\u3057\u3066\u307f\u307e\u3057\u305f(Web\u4e0a\u306e\u30b3\u30f3\u30d0\u30fc\u30bf\u30fc\u306f\u30b3\u30c1\u30e9)\u3002 \u30d7\u30ed\u30c8\u30b3\u30eb\u304cS [&hellip;]","protected":false},"author":1,"featured_media":7111,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_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},"jetpack_post_was_ever_published":false},"categories":[48,4,49],"tags":[63,64,65],"class_list":["post-1712","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-excel-office","category-office","category-word-office","tag-excel","tag-office","tag-word"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"SharpDevelop\u304c\u516c\u958b\u3057\u3066\u3044\u308b\u3001\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u5909\u63db\u3059\u308bAPI\u300cSharpDevelop Code Co\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"\u304d\u306c\u3042\u3055\"\/>\n\t<meta name=\"google-site-verification\" content=\"xy7uchdGM1SE5sADlVsdekXridA1vSaVWceffSwnE48\" \/>\n\t<meta name=\"keywords\" content=\"excel\u30de\u30af\u30ed,office\u95a2\u9023,word\u30de\u30af\u30ed\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.ka-net.org\/blog\/?p=1712\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"ja_JP\" \/>\n\t\t<meta property=\"og:site_name\" content=\"\u521d\u5fc3\u8005\u5099\u5fd8\u9332 | Power Automate for desktop\u3084Microsoft Office\u958b\u767a\u306e\u60c5\u5831\u304c\u6e80\u8f09\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"\u30d7\u30ed\u30b0\u30e9\u30e0\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u5225\u306e\u8a00\u8a9e\u306b\u5909\u63db\u3059\u308bVBA\u30de\u30af\u30ed | \u521d\u5fc3\u8005\u5099\u5fd8\u9332\" \/>\n\t\t<meta property=\"og:description\" content=\"SharpDevelop\u304c\u516c\u958b\u3057\u3066\u3044\u308b\u3001\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u5909\u63db\u3059\u308bAPI\u300cSharpDevelop Code Co\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.ka-net.org\/blog\/?p=1712\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2012-05-25T06:50:12+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2012-05-25T06:50:12+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"\u30d7\u30ed\u30b0\u30e9\u30e0\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u5225\u306e\u8a00\u8a9e\u306b\u5909\u63db\u3059\u308bVBA\u30de\u30af\u30ed | \u521d\u5fc3\u8005\u5099\u5fd8\u9332\" \/>\n\t\t<meta name=\"twitter:description\" content=\"SharpDevelop\u304c\u516c\u958b\u3057\u3066\u3044\u308b\u3001\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u5909\u63db\u3059\u308bAPI\u300cSharpDevelop Code Co\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=1712#article\",\"name\":\"\\u30d7\\u30ed\\u30b0\\u30e9\\u30e0\\u306e\\u30bd\\u30fc\\u30b9\\u30b3\\u30fc\\u30c9\\u3092\\u5225\\u306e\\u8a00\\u8a9e\\u306b\\u5909\\u63db\\u3059\\u308bVBA\\u30de\\u30af\\u30ed | \\u521d\\u5fc3\\u8005\\u5099\\u5fd8\\u9332\",\"headline\":\"\\u30d7\\u30ed\\u30b0\\u30e9\\u30e0\\u306e\\u30bd\\u30fc\\u30b9\\u30b3\\u30fc\\u30c9\\u3092\\u5225\\u306e\\u8a00\\u8a9e\\u306b\\u5909\\u63db\\u3059\\u308bVBA\\u30de\\u30af\\u30ed\",\"author\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?author=1#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/wp-content\\\/uploads\\\/eyecatch-Excel.png\",\"width\":790,\"height\":480},\"datePublished\":\"2012-05-25T15:50:12+09:00\",\"dateModified\":\"2012-05-25T15:50:12+09:00\",\"inLanguage\":\"ja\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=1712#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=1712#webpage\"},\"articleSection\":\"Excel, Office\\u95a2\\u9023, Word, Excel\\u30de\\u30af\\u30ed, Office\\u95a2\\u9023, Word\\u30de\\u30af\\u30ed\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=1712#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.ka-net.org\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=4#listItem\",\"name\":\"Office\\u95a2\\u9023\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=4#listItem\",\"position\":2,\"name\":\"Office\\u95a2\\u9023\",\"item\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=4\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=48#listItem\",\"name\":\"Excel\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=48#listItem\",\"position\":3,\"name\":\"Excel\",\"item\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=48\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=1712#listItem\",\"name\":\"\\u30d7\\u30ed\\u30b0\\u30e9\\u30e0\\u306e\\u30bd\\u30fc\\u30b9\\u30b3\\u30fc\\u30c9\\u3092\\u5225\\u306e\\u8a00\\u8a9e\\u306b\\u5909\\u63db\\u3059\\u308bVBA\\u30de\\u30af\\u30ed\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=4#listItem\",\"name\":\"Office\\u95a2\\u9023\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=1712#listItem\",\"position\":4,\"name\":\"\\u30d7\\u30ed\\u30b0\\u30e9\\u30e0\\u306e\\u30bd\\u30fc\\u30b9\\u30b3\\u30fc\\u30c9\\u3092\\u5225\\u306e\\u8a00\\u8a9e\\u306b\\u5909\\u63db\\u3059\\u308bVBA\\u30de\\u30af\\u30ed\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=48#listItem\",\"name\":\"Excel\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#organization\",\"name\":\"\\u521d\\u5fc3\\u8005\\u5099\\u5fd8\\u9332\",\"description\":\"Power Automate for desktop\\u3084Microsoft Office\\u958b\\u767a\\u306e\\u60c5\\u5831\\u304c\\u6e80\\u8f09\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?author=1#author\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?author=1\",\"name\":\"\\u304d\\u306c\\u3042\\u3055\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=1712#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1c6237fc3012b3da1f36fa6435b2ccea656e2ff69a51f709c7d8352c69356dc3?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"\\u304d\\u306c\\u3042\\u3055\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=1712#webpage\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=1712\",\"name\":\"\\u30d7\\u30ed\\u30b0\\u30e9\\u30e0\\u306e\\u30bd\\u30fc\\u30b9\\u30b3\\u30fc\\u30c9\\u3092\\u5225\\u306e\\u8a00\\u8a9e\\u306b\\u5909\\u63db\\u3059\\u308bVBA\\u30de\\u30af\\u30ed | \\u521d\\u5fc3\\u8005\\u5099\\u5fd8\\u9332\",\"description\":\"SharpDevelop\\u304c\\u516c\\u958b\\u3057\\u3066\\u3044\\u308b\\u3001\\u30bd\\u30fc\\u30b9\\u30b3\\u30fc\\u30c9\\u3092\\u5909\\u63db\\u3059\\u308bAPI\\u300cSharpDevelop Code Co\",\"inLanguage\":\"ja\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=1712#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?author=1#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?author=1#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/wp-content\\\/uploads\\\/eyecatch-Excel.png\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=1712\\\/#mainImage\",\"width\":790,\"height\":480},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=1712#mainImage\"},\"datePublished\":\"2012-05-25T15:50:12+09:00\",\"dateModified\":\"2012-05-25T15:50:12+09:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/\",\"name\":\"\\u521d\\u5fc3\\u8005\\u5099\\u5fd8\\u9332\",\"description\":\"Power Automate for desktop\\u3084Microsoft Office\\u958b\\u767a\\u306e\\u60c5\\u5831\\u304c\\u6e80\\u8f09\",\"inLanguage\":\"ja\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"\u30d7\u30ed\u30b0\u30e9\u30e0\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u5225\u306e\u8a00\u8a9e\u306b\u5909\u63db\u3059\u308bVBA\u30de\u30af\u30ed | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","description":"SharpDevelop\u304c\u516c\u958b\u3057\u3066\u3044\u308b\u3001\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u5909\u63db\u3059\u308bAPI\u300cSharpDevelop Code Co","canonical_url":"https:\/\/www.ka-net.org\/blog\/?p=1712","robots":"max-image-preview:large","keywords":"excel\u30de\u30af\u30ed,office\u95a2\u9023,word\u30de\u30af\u30ed","webmasterTools":{"google-site-verification":"xy7uchdGM1SE5sADlVsdekXridA1vSaVWceffSwnE48","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.ka-net.org\/blog\/?p=1712#article","name":"\u30d7\u30ed\u30b0\u30e9\u30e0\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u5225\u306e\u8a00\u8a9e\u306b\u5909\u63db\u3059\u308bVBA\u30de\u30af\u30ed | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","headline":"\u30d7\u30ed\u30b0\u30e9\u30e0\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u5225\u306e\u8a00\u8a9e\u306b\u5909\u63db\u3059\u308bVBA\u30de\u30af\u30ed","author":{"@id":"https:\/\/www.ka-net.org\/blog\/?author=1#author"},"publisher":{"@id":"https:\/\/www.ka-net.org\/blog\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/eyecatch-Excel.png","width":790,"height":480},"datePublished":"2012-05-25T15:50:12+09:00","dateModified":"2012-05-25T15:50:12+09:00","inLanguage":"ja","mainEntityOfPage":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=1712#webpage"},"isPartOf":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=1712#webpage"},"articleSection":"Excel, Office\u95a2\u9023, Word, Excel\u30de\u30af\u30ed, Office\u95a2\u9023, Word\u30de\u30af\u30ed"},{"@type":"BreadcrumbList","@id":"https:\/\/www.ka-net.org\/blog\/?p=1712#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.ka-net.org\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=4#listItem","name":"Office\u95a2\u9023"}},{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=4#listItem","position":2,"name":"Office\u95a2\u9023","item":"https:\/\/www.ka-net.org\/blog\/?cat=4","nextItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=48#listItem","name":"Excel"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=48#listItem","position":3,"name":"Excel","item":"https:\/\/www.ka-net.org\/blog\/?cat=48","nextItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?p=1712#listItem","name":"\u30d7\u30ed\u30b0\u30e9\u30e0\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u5225\u306e\u8a00\u8a9e\u306b\u5909\u63db\u3059\u308bVBA\u30de\u30af\u30ed"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=4#listItem","name":"Office\u95a2\u9023"}},{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?p=1712#listItem","position":4,"name":"\u30d7\u30ed\u30b0\u30e9\u30e0\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u5225\u306e\u8a00\u8a9e\u306b\u5909\u63db\u3059\u308bVBA\u30de\u30af\u30ed","previousItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=48#listItem","name":"Excel"}}]},{"@type":"Organization","@id":"https:\/\/www.ka-net.org\/blog\/#organization","name":"\u521d\u5fc3\u8005\u5099\u5fd8\u9332","description":"Power Automate for desktop\u3084Microsoft Office\u958b\u767a\u306e\u60c5\u5831\u304c\u6e80\u8f09","url":"https:\/\/www.ka-net.org\/blog\/"},{"@type":"Person","@id":"https:\/\/www.ka-net.org\/blog\/?author=1#author","url":"https:\/\/www.ka-net.org\/blog\/?author=1","name":"\u304d\u306c\u3042\u3055","image":{"@type":"ImageObject","@id":"https:\/\/www.ka-net.org\/blog\/?p=1712#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/1c6237fc3012b3da1f36fa6435b2ccea656e2ff69a51f709c7d8352c69356dc3?s=96&d=mm&r=g","width":96,"height":96,"caption":"\u304d\u306c\u3042\u3055"}},{"@type":"WebPage","@id":"https:\/\/www.ka-net.org\/blog\/?p=1712#webpage","url":"https:\/\/www.ka-net.org\/blog\/?p=1712","name":"\u30d7\u30ed\u30b0\u30e9\u30e0\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u5225\u306e\u8a00\u8a9e\u306b\u5909\u63db\u3059\u308bVBA\u30de\u30af\u30ed | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","description":"SharpDevelop\u304c\u516c\u958b\u3057\u3066\u3044\u308b\u3001\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u5909\u63db\u3059\u308bAPI\u300cSharpDevelop Code Co","inLanguage":"ja","isPartOf":{"@id":"https:\/\/www.ka-net.org\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=1712#breadcrumblist"},"author":{"@id":"https:\/\/www.ka-net.org\/blog\/?author=1#author"},"creator":{"@id":"https:\/\/www.ka-net.org\/blog\/?author=1#author"},"image":{"@type":"ImageObject","url":"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/eyecatch-Excel.png","@id":"https:\/\/www.ka-net.org\/blog\/?p=1712\/#mainImage","width":790,"height":480},"primaryImageOfPage":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=1712#mainImage"},"datePublished":"2012-05-25T15:50:12+09:00","dateModified":"2012-05-25T15:50:12+09:00"},{"@type":"WebSite","@id":"https:\/\/www.ka-net.org\/blog\/#website","url":"https:\/\/www.ka-net.org\/blog\/","name":"\u521d\u5fc3\u8005\u5099\u5fd8\u9332","description":"Power Automate for desktop\u3084Microsoft Office\u958b\u767a\u306e\u60c5\u5831\u304c\u6e80\u8f09","inLanguage":"ja","publisher":{"@id":"https:\/\/www.ka-net.org\/blog\/#organization"}}]},"og:locale":"ja_JP","og:site_name":"\u521d\u5fc3\u8005\u5099\u5fd8\u9332 | Power Automate for desktop\u3084Microsoft Office\u958b\u767a\u306e\u60c5\u5831\u304c\u6e80\u8f09","og:type":"article","og:title":"\u30d7\u30ed\u30b0\u30e9\u30e0\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u5225\u306e\u8a00\u8a9e\u306b\u5909\u63db\u3059\u308bVBA\u30de\u30af\u30ed | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","og:description":"SharpDevelop\u304c\u516c\u958b\u3057\u3066\u3044\u308b\u3001\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u5909\u63db\u3059\u308bAPI\u300cSharpDevelop Code Co","og:url":"https:\/\/www.ka-net.org\/blog\/?p=1712","article:published_time":"2012-05-25T06:50:12+00:00","article:modified_time":"2012-05-25T06:50:12+00:00","twitter:card":"summary","twitter:title":"\u30d7\u30ed\u30b0\u30e9\u30e0\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u5225\u306e\u8a00\u8a9e\u306b\u5909\u63db\u3059\u308bVBA\u30de\u30af\u30ed | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","twitter:description":"SharpDevelop\u304c\u516c\u958b\u3057\u3066\u3044\u308b\u3001\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u5909\u63db\u3059\u308bAPI\u300cSharpDevelop Code Co"},"aioseo_meta_data":{"post_id":"1712","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[],"defaultGraph":"","defaultPostTypeGraph":""},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2020-12-24 07:02:45","updated":"2022-09-14 03:12:49","seo_analyzer_scan_date":null,"focus_keyword":null,"additional_keywords":null,"truseo_locale":null},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/eyecatch-Excel.png","jetpack_shortlink":"https:\/\/wp.me\/p4UZZr-rC","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/1712","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=1712"}],"version-history":[{"count":5,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/1712\/revisions"}],"predecessor-version":[{"id":1717,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/1712\/revisions\/1717"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/media\/7111"}],"wp:attachment":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1712"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1712"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1712"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}