<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>C#でExcelを読み込んで操作する方法を公開｜C# Excel操作テクニック.NET &#187; フルパス</title>
	<atom:link href="http://excelcsharp.lance40.com/tag/tag-fullpath/feed" rel="self" type="application/rss+xml" />
	<link>http://excelcsharp.lance40.com</link>
	<description>メソッドに貼り付けるだけで機能するソースコードを多数用意しています。</description>
	<lastBuildDate>Sun, 08 Nov 2015 04:41:39 +0000</lastBuildDate>
	<language>ja</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=3.7.41</generator>
	<item>
		<title>Excelアプリケーション(Excel.exe)のパスを取得する</title>
		<link>http://excelcsharp.lance40.com/excelpath.html</link>
		<comments>http://excelcsharp.lance40.com/excelpath.html#comments</comments>
		<pubDate>Fri, 29 Nov 2013 12:34:25 +0000</pubDate>
		<dc:creator><![CDATA[Janga]]></dc:creator>
				<category><![CDATA[Excelｱﾌﾟﾘｹｰｼｮﾝ操作]]></category>
		<category><![CDATA[プロパティ]]></category>
		<category><![CDATA[exeパス]]></category>
		<category><![CDATA[フルパス]]></category>

		<guid isPermaLink="false">http://excelcsharp.lance40.com/?p=158</guid>
		<description><![CDATA[Excel.exeのフォルダの完全パスを取得します。 ※操作中のファイルパスではありません、注意してください。 （32bit OSでのデフォルトはC:\Program Files\Microsoft Office…あたり [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Excel.exeのフォルダの完全パスを取得します。</p>
<p>※操作中のファイルパスではありません、注意してください。</p>
<p>（32bit OSでのデフォルトはC:\Program Files\Microsoft Office…あたりだと思います。）</p>
<pre class="brush: csharp; title: ; notranslate">
{
            // Excel操作用オブジェクト
            Microsoft.Office.Interop.Excel.Application xlApp = null;
            

            // Excelアプリケーション生成
            xlApp = new Microsoft.Office.Interop.Excel.Application();

            // ◆Exe格納パスをメッセージボックスに表示◆
            // Pathプロパティ
            System.Windows.Forms.MessageBox.Show(xlApp.Path);

            // Excelアプリケーションを解放
            xlApp.Quit();
            System.Runtime.InteropServices.Marshal.ReleaseComObject(xlApp);

 }
</pre>
]]></content:encoded>
			<wfw:commentRss>http://excelcsharp.lance40.com/excelpath.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
