<?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>Eyes of Bastet &#187; Windows</title>
	<atom:link href="http://azurite.espel.jp/index.php/category/windows/feed/" rel="self" type="application/rss+xml" />
	<link>http://azurite.espel.jp</link>
	<description>Just another azurite blog</description>
	<lastBuildDate>Thu, 01 Dec 2011 14:21:48 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>VS2010とC#でCOM作成</title>
		<link>http://azurite.espel.jp/index.php/2011/03/16/vs2010-com/</link>
		<comments>http://azurite.espel.jp/index.php/2011/03/16/vs2010-com/#comments</comments>
		<pubDate>Wed, 16 Mar 2011 09:05:38 +0000</pubDate>
		<dc:creator>azurite</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[COM]]></category>
		<category><![CDATA[VS2010]]></category>

		<guid isPermaLink="false">http://azurite.espel.jp/?p=710</guid>
		<description><![CDATA[VS2010とC#を使用して、昔懐かしのCOMを作成する方法。 何年か前にC#でCOMを作成する方法を調べたんだけど、書いてなかったので忘れてしまった。 参考サイトの通りで出来るけど、別途COMの登録と削除も作る必要があ [...]]]></description>
			<content:encoded><![CDATA[<p>VS2010とC#を使用して、昔懐かしのCOMを作成する方法。<br />
何年か前にC#でCOMを作成する方法を調べたんだけど、書いてなかったので忘れてしまった。<br />
参考サイトの通りで出来るけど、別途COMの登録と削除も作る必要がある。</p>
<p>1.新規作成→プロジェクトで、クラスライブラリを選択。<br />
2.コードは下記の通り。</p>
<pre class="brush: csharp; title: ; notranslate">
using System;
using System.Runtime.InteropServices;
using System.Windows.Forms;

namespace MyClassLibrary {
    [ClassInterface( ClassInterfaceType.AutoDual )]
    public class Calc {
        public int Add( int x, int y ) {
            return x + y;
        }

        public int Sub( int x, int y ) {
            return x - y;
        }

        public void Msg( string msg ) {
            MessageBox.Show(msg);
        }
    }
}
</pre>
<p>3.プロジェクトのプロパティ→アプリケーションタブで変更。<br />
<a title="2011-03-16_1733 by azurite2007, on Flickr" href="http://www.flickr.com/photos/azurite2007/5531118987/"><img src="http://farm6.static.flickr.com/5293/5531118987_c8f9d330b8.jpg" alt="2011-03-16_1733" width="500" height="200" /></a><br />
アセンブリ情報ボタンを押下。</p>
<p><a title="2011-03-16_1734 by azurite2007, on Flickr" href="http://www.flickr.com/photos/azurite2007/5531704412/"><img src="http://farm6.static.flickr.com/5132/5531704412_021fbb1ef2.jpg" alt="2011-03-16_1734" width="450" height="417" /></a><br />
アセンブリをCOM参照可能にするをチェック。</p>
<p>4.プロジェクトのプロパティ→ビルドタブで変更。<br />
<a title="2011-03-16_1735 by azurite2007, on Flickr" href="http://www.flickr.com/photos/azurite2007/5531704988/"><img src="http://farm6.static.flickr.com/5016/5531704988_7b6a89f234.jpg" alt="2011-03-16_1735" width="500" height="200" /></a><br />
COM相互運用機能の登録をチェック。<br />
以上で、できあがり。</p>
<p>COMを呼び出すVBスクリプト</p>
<pre class="brush: vb; title: ; notranslate">
Set obj = CreateObject(&quot;MyClassLibrary.Calc&quot;)
obj.Msg(&quot;HelloCOM&quot;)
</pre>
<p>VBスクリプト実行結果<br />
<a title="2011-03-16_1756 by azurite2007, on Flickr" href="http://www.flickr.com/photos/azurite2007/5531147093/"><img src="http://farm6.static.flickr.com/5216/5531147093_4e8c260329_m.jpg" alt="2011-03-16_1756" width="144" height="167" /></a></p>
<p>参考サイト<br />
[C#][Excel]C#で作成したアセンブリをExcelから呼び出す<br />
<a href="http://d.hatena.ne.jp/akiramei/20071227/1198771429" target="_blank">http://d.hatena.ne.jp/akiramei/20071227/1198771429</a><strong>関連記事:</strong>
<ul class="similar-posts">
<li><a href="http://azurite.espel.jp/index.php/2010/11/25/ca1014-ca1017/" rel="bookmark" title="2010/11/25">コード分析の警告CA1014とCA1017を修正する</a></li>
<li><a href="http://azurite.espel.jp/index.php/2010/09/22/filelist/" rel="bookmark" title="2010/09/22">C# フォルダの中のファイル一覧を取得する</a></li>
<li><a href="http://azurite.espel.jp/index.php/2010/11/17/option-strict-on/" rel="bookmark" title="2010/11/17">Option Strict Onにすると遅延バインディングエラーが出るのを修正する</a></li>
<li><a href="http://azurite.espel.jp/index.php/2010/05/12/vs2010install/" rel="bookmark" title="2010/05/12">VisualStudio2010をインストール</a></li>
<li><a href="http://azurite.espel.jp/index.php/2010/10/20/movie-edit/" rel="bookmark" title="2010/10/20">動画編集</a></li>
</ul>
<p><!-- Similar Posts took 12.120 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://azurite.espel.jp/index.php/2011/03/16/vs2010-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>コード分析の警告CA1014とCA1017を修正する</title>
		<link>http://azurite.espel.jp/index.php/2010/11/25/ca1014-ca1017/</link>
		<comments>http://azurite.espel.jp/index.php/2010/11/25/ca1014-ca1017/#comments</comments>
		<pubDate>Thu, 25 Nov 2010 02:32:50 +0000</pubDate>
		<dc:creator>azurite</dc:creator>
				<category><![CDATA[VB.NET]]></category>
		<category><![CDATA[VB6]]></category>
		<category><![CDATA[VS2010]]></category>

		<guid isPermaLink="false">http://azurite.espel.jp/?p=578</guid>
		<description><![CDATA[VB6をVB.NETに変えていて、コード分析をしたらCA1014とCA1017の警告が出てきた。 この規則による警告は抑制しないでくださいと書いてあるので、AssemblyInfo.vbに宣言を追加した。 CA1014: [...]]]></description>
			<content:encoded><![CDATA[<p>VB6をVB.NETに変えていて、コード分析をしたらCA1014とCA1017の警告が出てきた。<br />
この規則による警告は抑制しないでくださいと書いてあるので、AssemblyInfo.vbに宣言を追加した。</p>
<pre class="brush: vb; title: ; notranslate">
&lt;Assembly: CLSCompliant(True)&gt;
&lt;Assembly: ComVisible(False)&gt;
</pre>
<p>CA1014: アセンブリに CLSCompliantAttribute を設定します<br />
<a href="http://msdn.microsoft.com/ja-jp/library/ms182156.aspx" target="_blank"> http://msdn.microsoft.com/ja-jp/library/ms182156.aspx</a></p>
<p>CA1017: アセンブリに ComVisibleAttribute を設定します<br />
<a href="http://msdn.microsoft.com/ja-jp/library/ms182157.aspx" target="_blank"> http://msdn.microsoft.com/ja-jp/library/ms182157.aspx</a></p>
<p>新規にVB.NETでWindowsアプリケーションを作成したときのAssemblyInfo.vbはこんな感じ。</p>
<pre class="brush: vb; title: ; notranslate">
Imports System
Imports System.Reflection
Imports System.Runtime.InteropServices

' アセンブリに関する一般情報は以下の属性セットをとおして制御されます。
' アセンブリに関連付けられている情報を変更するには、
' これらの属性値を変更してください。

' アセンブリ属性の値を確認します。

&lt;Assembly: AssemblyTitle(&quot;WindowsApplication1&quot;)&gt;
&lt;Assembly: AssemblyDescription(&quot;&quot;)&gt;
&lt;Assembly: AssemblyCompany(&quot;&quot;)&gt;
&lt;Assembly: AssemblyProduct(&quot;WindowsApplication1&quot;)&gt;
&lt;Assembly: AssemblyCopyright(&quot;Copyright ©  2010&quot;)&gt;
&lt;Assembly: AssemblyTrademark(&quot;&quot;)&gt;

&lt;Assembly: ComVisible(False)&gt;

'このプロジェクトが COM に公開される場合、次の GUID がタイプ ライブラリの ID になります。
&lt;Assembly: Guid(&quot;53c3ac7d-7016-43cb-b588-af7985498b62&quot;)&gt;

' アセンブリのバージョン情報は、以下の 4 つの値で構成されています:
'
'      Major Version
'      Minor Version
'      Build Number
'      Revision
'
' すべての値を指定するか、下のように '*' を使ってビルドおよびリビジョン番号を
' 既定値にすることができます:
' &lt;Assembly: AssemblyVersion(&quot;1.0.*&quot;)&gt;

&lt;Assembly: AssemblyVersion(&quot;1.0.0.0&quot;)&gt;
&lt;Assembly: AssemblyFileVersion(&quot;1.0.0.0&quot;)&gt;
</pre>
<p>CLSCompliantの宣言無くない？？？<strong>関連記事:</strong>
<ul class="similar-posts">
<li><a href="http://azurite.espel.jp/index.php/2011/03/16/vs2010-com/" rel="bookmark" title="2011/03/16">VS2010とC#でCOM作成</a></li>
<li><a href="http://azurite.espel.jp/index.php/2010/11/17/option-strict-on/" rel="bookmark" title="2010/11/17">Option Strict Onにすると遅延バインディングエラーが出るのを修正する</a></li>
<li><a href="http://azurite.espel.jp/index.php/2010/09/22/filelist/" rel="bookmark" title="2010/09/22">C# フォルダの中のファイル一覧を取得する</a></li>
<li><a href="http://azurite.espel.jp/index.php/2010/05/10/code737/" rel="bookmark" title="2010/05/10">コード737DでWindowsUpdateが失敗する</a></li>
<li><a href="http://azurite.espel.jp/index.php/2010/05/12/vs2010install/" rel="bookmark" title="2010/05/12">VisualStudio2010をインストール</a></li>
</ul>
<p><!-- Similar Posts took 12.768 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://azurite.espel.jp/index.php/2010/11/25/ca1014-ca1017/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Option Strict Onにすると遅延バインディングエラーが出るのを修正する</title>
		<link>http://azurite.espel.jp/index.php/2010/11/17/option-strict-on/</link>
		<comments>http://azurite.espel.jp/index.php/2010/11/17/option-strict-on/#comments</comments>
		<pubDate>Tue, 16 Nov 2010 23:29:38 +0000</pubDate>
		<dc:creator>azurite</dc:creator>
				<category><![CDATA[VB.NET]]></category>
		<category><![CDATA[VS2010]]></category>

		<guid isPermaLink="false">http://azurite.espel.jp/?p=564</guid>
		<description><![CDATA[VB6のソースをVS2010のVB.NETになおしたりしてると、下の様なソースがあったりする。 Option Strict Offだったりするのを、Option Strict Onに変えると If eventSender [...]]]></description>
			<content:encoded><![CDATA[<p>VB6のソースをVS2010のVB.NETになおしたりしてると、下の様なソースがあったりする。<br />
Option Strict Offだったりするのを、Option Strict Onに変えると<br />
If eventSender.Checked Then<br />
の所で、「Option Strict On では、遅延バインディングを使用できません。」とエラーになったりする。</p>
<pre class="brush: vb; title: ; notranslate">
'UPGRADE_WARNING: イベント Radiohogehoge_CheckedChanged は、フォームが初期化されたときに発生します。 詳細については、'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword=&quot;88B12AE1-6DE0-48A0-86F1-60C0686C026A&quot;' をクリックしてください。
	Private Sub Radiohogehoge_CheckedChanged(ByVal eventSender As System.Object, ByVal eventArgs As System.EventArgs) Handles CRadiohogehoge_CheckedChanged
		If eventSender.Checked Then
				hogehoge()
		End If
	End Sub
</pre>
<p>なので、こうなおす。</p>
<pre class="brush: vb; title: ; notranslate">
	Private Sub Radiohogehoge_CheckedChanged(ByVal eventSender As System.Object, ByVal eventArgs As System.EventArgs) Handles CRadiohogehoge_CheckedChanged
		Dim rb As RadioButton = TryCast(eventSender , RadioButton)
		If rb IsNot Nothing AndAlso rb.Checked Then
				hogehoge()
		End If
	End Sub
</pre>
<p><strong>関連記事:</strong>
<ul class="similar-posts">
<li><a href="http://azurite.espel.jp/index.php/2010/09/22/filelist/" rel="bookmark" title="2010/09/22">C# フォルダの中のファイル一覧を取得する</a></li>
<li><a href="http://azurite.espel.jp/index.php/2010/11/25/ca1014-ca1017/" rel="bookmark" title="2010/11/25">コード分析の警告CA1014とCA1017を修正する</a></li>
<li><a href="http://azurite.espel.jp/index.php/2011/03/16/vs2010-com/" rel="bookmark" title="2011/03/16">VS2010とC#でCOM作成</a></li>
<li><a href="http://azurite.espel.jp/index.php/2010/05/12/vs2010install/" rel="bookmark" title="2010/05/12">VisualStudio2010をインストール</a></li>
<li><a href="http://azurite.espel.jp/index.php/2010/05/19/vs2010trainingkit/" rel="bookmark" title="2010/05/19">Visual Studio 2010 &#038; .NET Framework 4 Training Kit を試そうとしたが失敗</a></li>
</ul>
<p><!-- Similar Posts took 12.471 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://azurite.espel.jp/index.php/2010/11/17/option-strict-on/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C# フォルダの中のファイル一覧を取得する</title>
		<link>http://azurite.espel.jp/index.php/2010/09/22/filelist/</link>
		<comments>http://azurite.espel.jp/index.php/2010/09/22/filelist/#comments</comments>
		<pubDate>Wed, 22 Sep 2010 08:49:09 +0000</pubDate>
		<dc:creator>azurite</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[VS2010]]></category>

		<guid isPermaLink="false">http://azurite.espel.jp/?p=396</guid>
		<description><![CDATA[フォルダの中にあるファイルの一覧を取得したい、というのはよくあるお話。 いつもソースがどこかに消えてしまうので、メモ的に置いておく。 最高の出来とは言い難いので、もっとイイ具合になるよ！って方は教えて下さい。 DirPr [...]]]></description>
			<content:encoded><![CDATA[<p>フォルダの中にあるファイルの一覧を取得したい、というのはよくあるお話。<br />
いつもソースがどこかに消えてしまうので、メモ的に置いておく。</p>
<p>最高の出来とは言い難いので、もっとイイ具合になるよ！って方は教えて下さい。<br />
DirProcとかはとりあえず適当です。</p>
<p>Util.cs</p>
<pre class="brush: csharp; title: ; notranslate">
using System;
using System.IO;

namespace Utl {

    public class FileList {

        public void Search( string sDir ) {
            Search(sDir,&quot;*&quot;);
        }

        public void Search( string sDir, string sPattern ) {
            foreach (string d in Directory.GetDirectories( sDir)) {
                DirProc(d);
                foreach (string f in Directory.GetFiles( d, sPattern )) {
                    FileProc(f);
                }
                Search( d ,sPattern);
            }
        }

        private void DirProc( string d ) {
            //ここに取得したフォルダの処理
            Console.Out.WriteLine(d);
        }

        private void FileProc( string f ) {
            //ここに取得したファイルの処理
            Console.Out.WriteLine( f );
        }

    }

}
</pre>
<p>使用例<br />
Windowsフォームプロジェクト用<br />
Form1.cs</p>
<pre class="brush: csharp; title: ; notranslate">
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.IO;
using Utl;

namespace WindowsFormsApplication1 {
    public partial class Form1 : Form {
        public Form1() {
            InitializeComponent();
        }
         private void btnSearch_Click(object sender, System.EventArgs e) {
            lstFilesFound.Items.Clear();
            txtFile.Enabled = false;
            txtFolder.Enabled = false;
            btnSearch.Text = &quot;Searching...&quot;;
            this.Cursor = Cursors.WaitCursor;
            Application.DoEvents();
            try {
                FileList fl = new FileList();
                fl.Search( txtFolder.Text, txtFile.Text );
            } catch (Exception ex) {
                MessageBox.Show(ex.Message);
            }
            btnSearch.Text = &quot;Search&quot;;
            this.Cursor = Cursors.Default;
            txtFile.Enabled = true;
            txtFolder.Enabled = true;
        }

        private void Form1_Load(object sender, System.EventArgs e) {
            txtFolder.Text=&quot;&quot;;
        }

        private void button1_Click( object sender, EventArgs e ) {
            folderBrowserDialog1.ShowNewFolderButton = false;
            if (folderBrowserDialog1.ShowDialog() == DialogResult.OK) {
                txtFolder.Text = folderBrowserDialog1.SelectedPath;

            }

        }

    }

}
</pre>
<p>Form1.Designer.cs</p>
<pre class="brush: csharp; title: ; notranslate">
namespace WindowsFormsApplication1 {
    partial class Form1 {
        /// &lt;summary&gt;
        /// 必要なデザイナー変数です。
        /// &lt;/summary&gt;
        private System.ComponentModel.IContainer components = null;

        /// &lt;summary&gt;
        /// 使用中のリソースをすべてクリーンアップします。
        /// &lt;/summary&gt;
        /// &lt;param name=&quot;disposing&quot;&gt;マネージ リソースが破棄される場合 true、破棄されない場合は false です。&lt;/param&gt;
        protected override void Dispose( bool disposing ) {
            if (disposing &amp;&amp; (components != null)) {
                components.Dispose();
            }
            base.Dispose( disposing );
        }

        #region Windows フォーム デザイナーで生成されたコード

        /// &lt;summary&gt;
        /// デザイナー サポートに必要なメソッドです。このメソッドの内容を
        /// コード エディターで変更しないでください。
        /// &lt;/summary&gt;
        private void InitializeComponent() {
            this.btnSearch = new System.Windows.Forms.Button();
            this.txtFile = new System.Windows.Forms.TextBox();
            this.lblFile = new System.Windows.Forms.Label();
            this.lblDirectory = new System.Windows.Forms.Label();
            this.lstFilesFound = new System.Windows.Forms.ListBox();
            this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();
            this.txtFolder = new System.Windows.Forms.TextBox();
            this.button1 = new System.Windows.Forms.Button();
            this.SuspendLayout();
            //
            // btnSearch
            //
            this.btnSearch.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnSearch.Location = new System.Drawing.Point( 608, 248 );
            this.btnSearch.Name = &quot;btnSearch&quot;;
            this.btnSearch.Size = new System.Drawing.Size( 75, 23 );
            this.btnSearch.TabIndex = 0;
            this.btnSearch.Text = &quot;Search&quot;;
            this.btnSearch.Click += new System.EventHandler( this.btnSearch_Click );
            //
            // txtFile
            //
            this.txtFile.Location = new System.Drawing.Point( 8, 40 );
            this.txtFile.Name = &quot;txtFile&quot;;
            this.txtFile.Size = new System.Drawing.Size( 120, 19 );
            this.txtFile.TabIndex = 4;
            this.txtFile.Text = &quot;*.dll&quot;;
            //
            // lblFile
            //
            this.lblFile.Location = new System.Drawing.Point( 8, 16 );
            this.lblFile.Name = &quot;lblFile&quot;;
            this.lblFile.Size = new System.Drawing.Size( 144, 16 );
            this.lblFile.TabIndex = 5;
            this.lblFile.Text = &quot;Search for files containing:&quot;;
            //
            // lblDirectory
            //
            this.lblDirectory.Location = new System.Drawing.Point( 8, 96 );
            this.lblDirectory.Name = &quot;lblDirectory&quot;;
            this.lblDirectory.Size = new System.Drawing.Size( 120, 23 );
            this.lblDirectory.TabIndex = 3;
            this.lblDirectory.Text = &quot;Look In:&quot;;
            //
            // lstFilesFound
            //
            this.lstFilesFound.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.lstFilesFound.ItemHeight = 12;
            this.lstFilesFound.Location = new System.Drawing.Point( 152, 8 );
            this.lstFilesFound.Name = &quot;lstFilesFound&quot;;
            this.lstFilesFound.Size = new System.Drawing.Size( 528, 232 );
            this.lstFilesFound.TabIndex = 1;
            //
            // txtFolder
            //
            this.txtFolder.Location = new System.Drawing.Point( 8, 111 );
            this.txtFolder.Name = &quot;txtFolder&quot;;
            this.txtFolder.Size = new System.Drawing.Size( 120, 19 );
            this.txtFolder.TabIndex = 6;
            this.txtFolder.Text = &quot;txtFolder&quot;;
            //
            // button1
            //
            this.button1.Location = new System.Drawing.Point( 8, 136 );
            this.button1.Name = &quot;button1&quot;;
            this.button1.Size = new System.Drawing.Size( 120, 23 );
            this.button1.TabIndex = 7;
            this.button1.Text = &quot;Select Folder&quot;;
            this.button1.UseVisualStyleBackColor = true;
            this.button1.Click += new System.EventHandler( this.button1_Click );
            //
            // Form1
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF( 6F, 12F );
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size( 685, 275 );
            this.Controls.Add( this.button1 );
            this.Controls.Add( this.txtFolder );
            this.Controls.Add( this.btnSearch );
            this.Controls.Add( this.txtFile );
            this.Controls.Add( this.lblFile );
            this.Controls.Add( this.lblDirectory );
            this.Controls.Add( this.lstFilesFound );
            this.Name = &quot;Form1&quot;;
            this.Text = &quot;Form1&quot;;
            this.Load += new System.EventHandler( this.Form1_Load );
            this.ResumeLayout( false );
            this.PerformLayout();

        }

        #endregion
        private System.Windows.Forms.Button btnSearch;
        private System.Windows.Forms.TextBox txtFile;
        private System.Windows.Forms.Label lblFile;
        private System.Windows.Forms.Label lblDirectory;
        private System.Windows.Forms.ListBox lstFilesFound;
        private System.Windows.Forms.FolderBrowserDialog folderBrowserDialog1;
        private System.Windows.Forms.TextBox txtFolder;
        private System.Windows.Forms.Button button1;

    }
}
</pre>
<p><strong>関連記事:</strong>
<ul class="similar-posts">
<li><a href="http://azurite.espel.jp/index.php/2011/03/16/vs2010-com/" rel="bookmark" title="2011/03/16">VS2010とC#でCOM作成</a></li>
<li><a href="http://azurite.espel.jp/index.php/2010/11/17/option-strict-on/" rel="bookmark" title="2010/11/17">Option Strict Onにすると遅延バインディングエラーが出るのを修正する</a></li>
<li><a href="http://azurite.espel.jp/index.php/2010/11/25/ca1014-ca1017/" rel="bookmark" title="2010/11/25">コード分析の警告CA1014とCA1017を修正する</a></li>
<li><a href="http://azurite.espel.jp/index.php/2010/05/12/vs2010install/" rel="bookmark" title="2010/05/12">VisualStudio2010をインストール</a></li>
<li><a href="http://azurite.espel.jp/index.php/2010/05/19/vs2010trainingkit/" rel="bookmark" title="2010/05/19">Visual Studio 2010 &#038; .NET Framework 4 Training Kit を試そうとしたが失敗</a></li>
</ul>
<p><!-- Similar Posts took 13.394 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://azurite.espel.jp/index.php/2010/09/22/filelist/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visual Studio 2010 &amp; .NET Framework 4 Training Kit を試そうとしたが失敗</title>
		<link>http://azurite.espel.jp/index.php/2010/05/19/vs2010trainingkit/</link>
		<comments>http://azurite.espel.jp/index.php/2010/05/19/vs2010trainingkit/#comments</comments>
		<pubDate>Wed, 19 May 2010 09:13:10 +0000</pubDate>
		<dc:creator>azurite</dc:creator>
				<category><![CDATA[VisualStudio]]></category>
		<category><![CDATA[VS2010]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://azurite.espel.jp/?p=229</guid>
		<description><![CDATA[http://msdn.microsoft.com/ja-jp/netframework/ee959223.aspx Visual Studio 2010 ＆ .NET Framework Training Kit でも [...]]]></description>
			<content:encoded><![CDATA[<p><a title="2010-05-19_1723 by azurite2007, on Flickr" href="http://www.flickr.com/photos/azurite2007/4621207118/"><img src="http://farm5.static.flickr.com/4010/4621207118_bb888a5780.jpg" alt="2010-05-19_1723" width="500" height="242" /></a><br />
<a href="http://msdn.microsoft.com/ja-jp/netframework/ee959223.aspx" target="_blank">http://msdn.microsoft.com/ja-jp/netframework/ee959223.aspx</a><br />
Visual Studio 2010 ＆ .NET Framework Training Kit でも試してみようと、英語版をダウンロード。</p>
<blockquote><p>本 Training Kit を日本語環境 (日本語 OS) で使用する場合、そのままでは環境構築のためのツール (CheckDependencies.cmd) を使用することができません。そのため、日本語環境に対応したセットアップ用のスクリプト ファイルを下記からダウンロードし、Labs フォルダーに上書きしてください。(ご自身の環境にあったものをダウンロードしてください。)</p></blockquote>
<p>と、あるので、日本語セットアップ用ファイルをダウンロードして、実行。<br />
→Visual Studio 2010 Beta 2が必要ですと言われ途中終了。<br />
英語版は環境構築のツールが動かないし、日本語版はVS2010ベータが必要ですといわれるし、どっちも動かない。<br />
製品版で動く、日本語版がでれば解決する気がする。<br />
<strong>関連記事:</strong>
<ul class="similar-posts">
<li><a href="http://azurite.espel.jp/index.php/2010/05/12/vs2010install/" rel="bookmark" title="2010/05/12">VisualStudio2010をインストール</a></li>
<li><a href="http://azurite.espel.jp/index.php/2010/05/13/sqlserver2008r2install/" rel="bookmark" title="2010/05/13">SQL Server 2008 R2 Express Editionのインストール</a></li>
<li><a href="http://azurite.espel.jp/index.php/2009/05/28/vistasp2-install/" rel="bookmark" title="2009/05/28">WindowsVistaにSP2をインストール</a></li>
<li><a href="http://azurite.espel.jp/index.php/2010/05/11/visualstudio2005uninstall/" rel="bookmark" title="2010/05/11">VisualStudio2005をアンインストール</a></li>
<li><a href="http://azurite.espel.jp/index.php/2010/11/25/ca1014-ca1017/" rel="bookmark" title="2010/11/25">コード分析の警告CA1014とCA1017を修正する</a></li>
</ul>
<p><!-- Similar Posts took 12.475 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://azurite.espel.jp/index.php/2010/05/19/vs2010trainingkit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Server 2008 R2 Express Editionのインストール</title>
		<link>http://azurite.espel.jp/index.php/2010/05/13/sqlserver2008r2install/</link>
		<comments>http://azurite.espel.jp/index.php/2010/05/13/sqlserver2008r2install/#comments</comments>
		<pubDate>Thu, 13 May 2010 09:54:42 +0000</pubDate>
		<dc:creator>azurite</dc:creator>
				<category><![CDATA[SQLServer]]></category>
		<category><![CDATA[SQLServer2008]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://azurite.espel.jp/?p=215</guid>
		<description><![CDATA[VS2010のインストーラーではSQLServer2008Expressがインストールエラーになるので、Microsoft SQL Server2008 R2 RTM &#8211; Express with Advan [...]]]></description>
			<content:encoded><![CDATA[<p>VS2010のインストーラーではSQLServer2008Expressがインストールエラーになるので、Microsoft SQL Server2008 R2 RTM &#8211; Express with Advanced Servicesをダウンロードしてインストール。<br />
<a href="http://www.flickr.com/photos/azurite2007/4601048606/" title="SQL2008R2-01 by azurite2007, on Flickr"><img src="http://farm5.static.flickr.com/4062/4601048606_2ac7be9c77.jpg" width="500" height="375" alt="SQL2008R2-01" /></a><br />
もともと使っているVAIO（VGN-SZ93NS）には、SQLServer2005Expressがインストールされていて、VAIOの何かに使っているようなので、アップグレードせずに、SQLServer2008R2Expressを追加インストール。</p>
<p><a href="http://www.flickr.com/photos/azurite2007/4601048656/" title="SQL2008R2-02 by azurite2007, on Flickr"><img src="http://farm4.static.flickr.com/3322/4601048656_0e00a5beba.jpg" width="500" height="375" alt="SQL2008R2-02" /></a></p>
<p>Microsoft SQL Server2008 R2 RTM &#8211; Express with Advanced Servicesをダウンロードしたものの、フルテキストサービスとReportingServicesは要らなそうなのでインストールから外す。ローカルPCの開発用だし。<br />
<a href="http://www.flickr.com/photos/azurite2007/4600431557/" title="SQL2008R2-03 by azurite2007, on Flickr"><img src="http://farm4.static.flickr.com/3593/4600431557_b7ba44179c.jpg" width="500" height="375" alt="SQL2008R2-03" /></a></p>
<p>VAIO_VEDBとSQLEXPRESSとMSSQLSERVERと3つもインストールされてる…それらとは別に、SQL2008EXPRESSとしてインストール。<br />
<a href="http://www.flickr.com/photos/azurite2007/4600431605/" title="SQL2008R2-04 by azurite2007, on Flickr"><img src="http://farm2.static.flickr.com/1097/4600431605_67a5d607fb.jpg" width="500" height="331" alt="SQL2008R2-04" /></a></p>
<p>このまま次へ。<br />
<a href="http://www.flickr.com/photos/azurite2007/4600431651/" title="SQL2008R2-05 by azurite2007, on Flickr"><img src="http://farm2.static.flickr.com/1399/4600431651_ab23b0e3c5.jpg" width="500" height="332" alt="SQL2008R2-05" /></a></p>
<p>認証は混合にしておく。<br />
<a href="http://www.flickr.com/photos/azurite2007/4600431691/" title="SQL2008R2-06 by azurite2007, on Flickr"><img src="http://farm5.static.flickr.com/4010/4600431691_72429af7f5.jpg" width="500" height="332" alt="SQL2008R2-06" /></a></p>
<p>エラーのでないインストーラーをお願いします。<br />
<a href="http://www.flickr.com/photos/azurite2007/4600431753/" title="SQL2008R2-07 by azurite2007, on Flickr"><img src="http://farm4.static.flickr.com/3343/4600431753_8a2965f147.jpg" width="500" height="332" alt="SQL2008R2-07" /></a></p>
<p>インストール中。<br />
<a href="http://www.flickr.com/photos/azurite2007/4600431791/" title="SQL2008R2-08 by azurite2007, on Flickr"><img src="http://farm5.static.flickr.com/4051/4600431791_7c4cc55b06.jpg" width="500" height="332" alt="SQL2008R2-08" /></a></p>
<p>無事にインストール完了！<br />
<a href="http://www.flickr.com/photos/azurite2007/4600431935/" title="SQL2008R2-09 by azurite2007, on Flickr"><img src="http://farm4.static.flickr.com/3365/4600431935_b9efd3b380.jpg" width="500" height="332" alt="SQL2008R2-09" /></a></p>
<p><strong>関連記事:</strong>
<ul class="similar-posts">
<li><a href="http://azurite.espel.jp/index.php/2010/05/12/vs2010install/" rel="bookmark" title="2010/05/12">VisualStudio2010をインストール</a></li>
<li><a href="http://azurite.espel.jp/index.php/2009/05/28/vistasp2-install/" rel="bookmark" title="2009/05/28">WindowsVistaにSP2をインストール</a></li>
<li><a href="http://azurite.espel.jp/index.php/2010/05/19/vs2010trainingkit/" rel="bookmark" title="2010/05/19">Visual Studio 2010 &#038; .NET Framework 4 Training Kit を試そうとしたが失敗</a></li>
<li><a href="http://azurite.espel.jp/index.php/2010/05/11/visualstudio2005uninstall/" rel="bookmark" title="2010/05/11">VisualStudio2005をアンインストール</a></li>
<li><a href="http://azurite.espel.jp/index.php/2010/05/11/vs2008uninstall/" rel="bookmark" title="2010/05/11">VisualStudio2008をアンインストール</a></li>
</ul>
<p><!-- Similar Posts took 13.480 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://azurite.espel.jp/index.php/2010/05/13/sqlserver2008r2install/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VisualStudio2010をインストール</title>
		<link>http://azurite.espel.jp/index.php/2010/05/12/vs2010install/</link>
		<comments>http://azurite.espel.jp/index.php/2010/05/12/vs2010install/#comments</comments>
		<pubDate>Wed, 12 May 2010 09:11:06 +0000</pubDate>
		<dc:creator>azurite</dc:creator>
				<category><![CDATA[VisualStudio]]></category>
		<category><![CDATA[VS2010]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://azurite.espel.jp/?p=205</guid>
		<description><![CDATA[VS2005とVS2008関連を削除したので、ようやくVS2010をインストール。 「すべて」を選択。 インストール中。 Microsoft .Net Framework4.0をインストールすると、再起動しろと言われます [...]]]></description>
			<content:encoded><![CDATA[<p>VS2005とVS2008関連を削除したので、ようやくVS2010をインストール。<br />
<a title="vs2010-01 by azurite2007, on Flickr" href="http://www.flickr.com/photos/azurite2007/4600987258/"><img src="http://farm2.static.flickr.com/1171/4600987258_c51ac8db33.jpg" alt="vs2010-01" width="498" height="381" /></a></p>
<p><a title="vs2010-02 by azurite2007, on Flickr" href="http://www.flickr.com/photos/azurite2007/4600987314/"><img src="http://farm2.static.flickr.com/1280/4600987314_4c1f6cecc5.jpg" alt="vs2010-02" width="500" height="380" /></a></p>
<p>「すべて」を選択。<br />
<a title="vs2010-05 by azurite2007, on Flickr" href="http://www.flickr.com/photos/azurite2007/4600369249/"><img src="http://farm4.static.flickr.com/3556/4600369249_b7ec695d32.jpg" alt="vs2010-05" width="500" height="380" /></a></p>
<p>インストール中。<br />
<a title="vs2010-06 by azurite2007, on Flickr" href="http://www.flickr.com/photos/azurite2007/4600987454/"><img src="http://farm4.static.flickr.com/3306/4600987454_b60663b5e1.jpg" alt="vs2010-06" width="500" height="380" /></a></p>
<p>Microsoft .Net Framework4.0をインストールすると、再起動しろと言われます。<br />
再起動後、続き。<br />
<a title="vs2010-07 by azurite2007, on Flickr" href="http://www.flickr.com/photos/azurite2007/4600369327/"><img src="http://farm2.static.flickr.com/1033/4600369327_8494fbf2cb.jpg" alt="vs2010-07" width="500" height="381" /></a><br />
この後大分長い時間がかかります…。<br />
放置しておいたら、終了していたので、結果を見ると失敗の文字が。<br />
以下の3つが失敗。</p>
<ul>
<li> Microsoft SQL Server 2008 Express Service Pack1(x86)アップグレード</li>
<li> Microsoft SQL Server 2008 R2 Transact-SQL言語サービス</li>
<li> Microsoft Visual Studio 2010 ADO.NET Entity Framework Tools</li>
</ul>
<p>仕方がないので、もう一度インストーラーを起動して、メンテナンスモードで再度挑戦。<br />
<a title="vs2010-08 by azurite2007, on Flickr" href="http://www.flickr.com/photos/azurite2007/4600369375/"><img src="http://farm2.static.flickr.com/1018/4600369375_19c94bafe5.jpg" alt="vs2010-08" width="500" height="380" /></a><br />
Microsoft SQL Server 2008 Express Service Pack1(x86)アップグレード以外はインストール終了。<br />
検索してみると、VS2010のインストーラーではなく、SQLServer2008Express単体でインストールするとよい、みたいな記事もあり早速MSDNから、SQLServer2008Expressのインストーラーをダウンロード。</p>
<p>で、実行してみると…。<br />
<a title="vs2010-09 by azurite2007, on Flickr" href="http://www.flickr.com/photos/azurite2007/4600987566/"><img src="http://farm2.static.flickr.com/1126/4600987566_e09a13e113.jpg" alt="vs2010-09" width="500" height="120" /></a><br />
エラーでインストーラーが動かない。</p>
<p>SQLServer2008インストールエラーとかで、検索するとかなりいっぱいひっかかって、インストーラーの出来がイマイチな模様。<br />
結局、<a href="http://awoni.net/sql-server/ssas" target="_blank">このサイト</a>を参考にMicrosoft SQL Server2008 R2 RTM &#8211; Express with Advanced Servicesをインストール。<br />
これは無事に成功しました。<br />
というわけで、Microsoft SQL Server2008 R2 RTMのインストールへ続く。<strong>関連記事:</strong>
<ul class="similar-posts">
<li><a href="http://azurite.espel.jp/index.php/2010/05/13/sqlserver2008r2install/" rel="bookmark" title="2010/05/13">SQL Server 2008 R2 Express Editionのインストール</a></li>
<li><a href="http://azurite.espel.jp/index.php/2010/05/11/visualstudio2005uninstall/" rel="bookmark" title="2010/05/11">VisualStudio2005をアンインストール</a></li>
<li><a href="http://azurite.espel.jp/index.php/2009/05/28/vistasp2-install/" rel="bookmark" title="2009/05/28">WindowsVistaにSP2をインストール</a></li>
<li><a href="http://azurite.espel.jp/index.php/2010/05/11/vs2008uninstall/" rel="bookmark" title="2010/05/11">VisualStudio2008をアンインストール</a></li>
<li><a href="http://azurite.espel.jp/index.php/2010/05/10/code737/" rel="bookmark" title="2010/05/10">コード737DでWindowsUpdateが失敗する</a></li>
</ul>
<p><!-- Similar Posts took 12.924 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://azurite.espel.jp/index.php/2010/05/12/vs2010install/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VisualStudio2008をアンインストール</title>
		<link>http://azurite.espel.jp/index.php/2010/05/11/vs2008uninstall/</link>
		<comments>http://azurite.espel.jp/index.php/2010/05/11/vs2008uninstall/#comments</comments>
		<pubDate>Tue, 11 May 2010 09:15:14 +0000</pubDate>
		<dc:creator>azurite</dc:creator>
				<category><![CDATA[VisualStudio]]></category>
		<category><![CDATA[VS2008]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://azurite.espel.jp/?p=193</guid>
		<description><![CDATA[VS2005に引き続き、VS2008をアンインストール。 削除削除。 アンインストールが完了しました！VS2005の様に、手動で削除しろとのメッセージは無し。素晴らしい！そう思いながら、「コントロールパネル＞プログラムと [...]]]></description>
			<content:encoded><![CDATA[<p>VS2005に引き続き、VS2008をアンインストール。<br />
<a title="VS2008-01 by azurite2007, on Flickr" href="http://www.flickr.com/photos/azurite2007/4598234712/"><img src="http://farm5.static.flickr.com/4042/4598234712_cbe0fb46b3.jpg" alt="VS2008-01" width="500" height="380" /></a><br />
削除削除。</p>
<p><a title="VS2008-02 by azurite2007, on Flickr" href="http://www.flickr.com/photos/azurite2007/4598234780/"><img src="http://farm2.static.flickr.com/1189/4598234780_4f548a472a.jpg" alt="VS2008-02" width="500" height="380" /></a><br />
アンインストールが完了しました！VS2005の様に、手動で削除しろとのメッセージは無し。素晴らしい！そう思いながら、「コントロールパネル＞プログラムと機能」を見てみると、VS2008関連がまだ残っていたので、これまた手動で削除。<br />
削除したのは以下の物</p>
<ul>
<li> Microsoft Document Explorer 2008</li>
<li> Microsoft Document Explorer 2008 Language Pack</li>
<li> Microsoft MSDN Library for Visual Studio 2008</li>
<li> Microsoft Windows SDK for Visual Studio 2008 .NET Framework Tools &#8211; jpn</li>
<li> Microsoft Windows SDK Visual Studio 2008 Headers and Libraries</li>
<li> Microsoft Windows SDK Visual Studio 2008 Reference Assemblies and InteliSense</li>
<li> Microsoft Windows SDK for Visual Studio 2008 SP1 Tools</li>
<li> Microsoft Windows SDK for Visual Studio 2008 SP1 Win32 Tools</li>
<li> Microsoft Silverlight 3 Tools Visual Studio 2008 SP1 &#8211; JPN</li>
<li> Crystal Reports Basic for Visual Studio 2008</li>
<li> Crystal Reports Basic Japanese Language Pack for Visual Studio 2008</li>
<li>Microsoft Visual Studio ProjectAggregator2</li>
<li>Visual Studio Tools for the Office system 3.0 Runtime</li>
<li>Microsoft Silverlight 3 Toolkit November 2009</li>
<li>Microsoft Silverlight 3 SDK</li>
<li>Microsoft Silverlight</li>
</ul>
<p>VS2008関連以外にも、VisualStudioと付いている物は削除、ついでにSilverlight関係も一度削除してみた。<br />
これでようやく、VS2010のインストール。<strong>関連記事:</strong>
<ul class="similar-posts">
<li><a href="http://azurite.espel.jp/index.php/2010/05/11/visualstudio2005uninstall/" rel="bookmark" title="2010/05/11">VisualStudio2005をアンインストール</a></li>
<li><a href="http://azurite.espel.jp/index.php/2010/05/12/vs2010install/" rel="bookmark" title="2010/05/12">VisualStudio2010をインストール</a></li>
<li><a href="http://azurite.espel.jp/index.php/2010/05/13/sqlserver2008r2install/" rel="bookmark" title="2010/05/13">SQL Server 2008 R2 Express Editionのインストール</a></li>
<li><a href="http://azurite.espel.jp/index.php/2009/05/28/vistasp2-install/" rel="bookmark" title="2009/05/28">WindowsVistaにSP2をインストール</a></li>
<li><a href="http://azurite.espel.jp/index.php/2009/05/26/wlxquicktimecontrolhostexe/" rel="bookmark" title="2009/05/26">WLXQuickTimeControlHost.exe</a></li>
</ul>
<p><!-- Similar Posts took 12.302 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://azurite.espel.jp/index.php/2010/05/11/vs2008uninstall/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VisualStudio2005をアンインストール</title>
		<link>http://azurite.espel.jp/index.php/2010/05/11/visualstudio2005uninstall/</link>
		<comments>http://azurite.espel.jp/index.php/2010/05/11/visualstudio2005uninstall/#comments</comments>
		<pubDate>Tue, 11 May 2010 08:46:55 +0000</pubDate>
		<dc:creator>azurite</dc:creator>
				<category><![CDATA[VisualStudio]]></category>
		<category><![CDATA[VS2005]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://azurite.espel.jp/?p=188</guid>
		<description><![CDATA[VS2010をインストールしようと思って、その前にVS2005とVS2008をアンインストール。 VS2005自体は、すぐにアンインストールできた。 …が、いくつかのコンポーネントは自分で削除しろというので、VS2005 [...]]]></description>
			<content:encoded><![CDATA[<p>VS2010をインストールしようと思って、その前にVS2005とVS2008をアンインストール。<br />
VS2005自体は、すぐにアンインストールできた。<br />
<a title="vs2005 by azurite2007, on Flickr" href="http://www.flickr.com/photos/azurite2007/4597574175/"><img src="http://farm5.static.flickr.com/4039/4597574175_ba87846411.jpg" alt="vs2005" width="500" height="380" /></a><br />
…が、いくつかのコンポーネントは自分で削除しろというので、VS2005関連のあれこれを「コントロールパネル＞プログラムと機能」から探してきて、一個ずつ消していった。<br />
手動で消したのは以下の物</p>
<ul>
<li> Microsoft Visual Studio 2005 Team Edition for Database Professionals &#8211; Trial JPN</li>
<li> Microsoft Visual Studio 2005 Tools for Office Runtime Language Pack</li>
<li> Microsoft Visual Studio 2005 Premier Partner Edition &#8211; JPN</li>
<li> Microsoft Visual C++ 2005 ATL Update kb973923 &#8211; x86 8.0.50727.4053</li>
<li> Microsoft Visual C++ 2005 Redistributable</li>
<li> Microsoft Visual J#2.0 再配布可能パッケージ</li>
<li> Microsoft Visual J#2.0 再配布可能パッケージ 日本語 Language Pack</li>
<li> Microsoft Document Explorer 2005</li>
<li> Microsoft Silverlight v1.0 SDK</li>
<li> Visual Studio 2005 extensions for .Net Framework3.0(WCF&amp;WPF), November 2006 CTP</li>
<li> Visual Studio 2005 Tools for Office Second Edition Runtime</li>
<li> MSDN Library for Visual Studio 2005 &#8211; 日本語版</li>
<li> Microsoft SQL Server 2005 Compact Edition Tools for Visual Studio 2005 [JPN]</li>
</ul>
<p>何故かアンインストール出来なかったのが、一つ。</p>
<ul>
<li>Microsoft Silverlight 1.0 SDK VisualStudio 2005 Template</li>
</ul>
<p>VS2005をアンインストールする前に削除しないと駄目なようです…。</p>
<p>続いて、VS2008のアンインストール。<strong>関連記事:</strong>
<ul class="similar-posts">
<li><a href="http://azurite.espel.jp/index.php/2010/05/11/vs2008uninstall/" rel="bookmark" title="2010/05/11">VisualStudio2008をアンインストール</a></li>
<li><a href="http://azurite.espel.jp/index.php/2010/05/12/vs2010install/" rel="bookmark" title="2010/05/12">VisualStudio2010をインストール</a></li>
<li><a href="http://azurite.espel.jp/index.php/2010/05/13/sqlserver2008r2install/" rel="bookmark" title="2010/05/13">SQL Server 2008 R2 Express Editionのインストール</a></li>
<li><a href="http://azurite.espel.jp/index.php/2009/05/28/vistasp2-install/" rel="bookmark" title="2009/05/28">WindowsVistaにSP2をインストール</a></li>
<li><a href="http://azurite.espel.jp/index.php/2009/05/26/wlxquicktimecontrolhostexe/" rel="bookmark" title="2009/05/26">WLXQuickTimeControlHost.exe</a></li>
</ul>
<p><!-- Similar Posts took 12.767 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://azurite.espel.jp/index.php/2010/05/11/visualstudio2005uninstall/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>コード737DでWindowsUpdateが失敗する</title>
		<link>http://azurite.espel.jp/index.php/2010/05/10/code737/</link>
		<comments>http://azurite.espel.jp/index.php/2010/05/10/code737/#comments</comments>
		<pubDate>Mon, 10 May 2010 07:33:53 +0000</pubDate>
		<dc:creator>azurite</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[SQLServer2005]]></category>
		<category><![CDATA[VAIO]]></category>
		<category><![CDATA[VISTA]]></category>

		<guid isPermaLink="false">http://azurite.espel.jp/?p=185</guid>
		<description><![CDATA[WindowsUpdateで、いつも失敗に終わるのが、SQL Server 2005 Service Pack 3 のセキュリティ更新プログラム(KB970892) 再起動しても駄目なので、あれこれ検索。 いくつか理由は [...]]]></description>
			<content:encoded><![CDATA[<p><a title="WinUpdate-01 by azurite2007, on Flickr" href="http://www.flickr.com/photos/azurite2007/4594856284/"><img src="http://farm2.static.flickr.com/1225/4594856284_1a50ab2df3.jpg" alt="WinUpdate-01" width="500" height="375" /></a><br />
WindowsUpdateで、いつも失敗に終わるのが、SQL Server 2005 Service Pack 3 のセキュリティ更新プログラム(KB970892)<br />
再起動しても駄目なので、あれこれ検索。<br />
いくつか理由はあるようだけど、VAIOの場合はレジストリの値を変更するといいらしいって事で試してみました。</p>
<ol>
<li>レジストリエディタで「」HKEY_LOCAL_MACHINE\SOFTWARE\MICROSOFT\MICROSOFT SQL  Server\MSSQL.1\Setup\Resume」の値を「1」から「0」に変える。</li>
<li>再起動する。</li>
<li>WindowsUpdateを行う。</li>
</ol>
<p>これで無事にインストールできました。<br />
<a title="WinUpdate-02 by azurite2007, on Flickr" href="http://www.flickr.com/photos/azurite2007/4594241095/"><img src="http://farm2.static.flickr.com/1374/4594241095_b550e68d61.jpg" alt="WinUpdate-02" width="500" height="375" /></a></p>
<p>参考サイト：<br />
<a href="http://social.answers.microsoft.com/Forums/ja-JP/vistaassistantja/thread/c9434cb7-1790-46fd-9079-f64748e7efd3" target="_blank">http://social.answers.microsoft.com/Forums/ja-JP/vistaassistantja/thread/c9434cb7-1790-46fd-9079-f64748e7efd3</a><strong>関連記事:</strong>
<ul class="similar-posts">
<li><a href="http://azurite.espel.jp/index.php/2009/05/26/wlxquicktimecontrolhostexe/" rel="bookmark" title="2009/05/26">WLXQuickTimeControlHost.exe</a></li>
<li><a href="http://azurite.espel.jp/index.php/2010/05/12/vs2010install/" rel="bookmark" title="2010/05/12">VisualStudio2010をインストール</a></li>
<li><a href="http://azurite.espel.jp/index.php/2009/05/28/vistasp2-install/" rel="bookmark" title="2009/05/28">WindowsVistaにSP2をインストール</a></li>
<li><a href="http://azurite.espel.jp/index.php/2010/05/11/visualstudio2005uninstall/" rel="bookmark" title="2010/05/11">VisualStudio2005をアンインストール</a></li>
<li><a href="http://azurite.espel.jp/index.php/2010/05/11/vs2008uninstall/" rel="bookmark" title="2010/05/11">VisualStudio2008をアンインストール</a></li>
</ul>
<p><!-- Similar Posts took 12.018 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://azurite.espel.jp/index.php/2010/05/10/code737/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WindowsVistaにSP2をインストール</title>
		<link>http://azurite.espel.jp/index.php/2009/05/28/vistasp2-install/</link>
		<comments>http://azurite.espel.jp/index.php/2009/05/28/vistasp2-install/#comments</comments>
		<pubDate>Thu, 28 May 2009 07:10:09 +0000</pubDate>
		<dc:creator>azurite</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[VGN-SZ93NS]]></category>
		<category><![CDATA[VISTA]]></category>

		<guid isPermaLink="false">http://azurite.espel.jp/?p=92</guid>
		<description><![CDATA[WindowsVistaのService Pack 2が公開されています。 あちこちで評判を見ると、Vistaの動作が軽快になったと言う人と、あまり変わらないと言う人と 二通りの様ですが、概ね軽くなったという人が多いよう [...]]]></description>
			<content:encoded><![CDATA[<p>WindowsVistaのService Pack 2が公開されています。</p>
<p>あちこちで評判を見ると、Vistaの動作が軽快になったと言う人と、あまり変わらないと言う人と</p>
<p>二通りの様ですが、概ね軽くなったという人が多いようです。</p>
<p>さっそくダウンロードして、最近動作が重い気がするvaio（VGN-SZ93NS）へインストールしてみました。<br />
<a title="vista-sp2 by azurite2007, on Flickr" href="http://www.flickr.com/photos/azurite2007/3572794876/"><img src="http://farm3.static.flickr.com/2300/3572794876_6baf90f64e.jpg" alt="vista-sp2" width="500" height="375" /></a></p>
<p>それほど時間もかからずにインストールはすんなり終了。</p>
<p>エクスプローラーでフォルダをダブルクリックすると、設定していないのに新しいウィンドウが開く</p>
<p>謎の現象と、IE8βをインストールしていた所為か、IE8で新しいタブが上手く開けない事があるのも無事に治ったようです。</p>
<p>特に問題は無いようですし、他の動作もたしかに軽くなっているような気もします。</p>
<p>Windows Server 2008 Service Pack 2 および Windows Vista Service Pack 2<br />
<a href="http://msdn.microsoft.com/ja-jp/windows/dd262148.aspx" target="_blank">http://msdn.microsoft.com/ja-jp/windows/dd262148.aspx</a><strong>関連記事:</strong>
<ul class="similar-posts">
<li><a href="http://azurite.espel.jp/index.php/2010/05/11/vs2008uninstall/" rel="bookmark" title="2010/05/11">VisualStudio2008をアンインストール</a></li>
<li><a href="http://azurite.espel.jp/index.php/2010/05/12/vs2010install/" rel="bookmark" title="2010/05/12">VisualStudio2010をインストール</a></li>
<li><a href="http://azurite.espel.jp/index.php/2010/05/10/code737/" rel="bookmark" title="2010/05/10">コード737DでWindowsUpdateが失敗する</a></li>
<li><a href="http://azurite.espel.jp/index.php/2010/05/11/visualstudio2005uninstall/" rel="bookmark" title="2010/05/11">VisualStudio2005をアンインストール</a></li>
<li><a href="http://azurite.espel.jp/index.php/2009/05/26/wlxquicktimecontrolhostexe/" rel="bookmark" title="2009/05/26">WLXQuickTimeControlHost.exe</a></li>
</ul>
<p><!-- Similar Posts took 12.246 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://azurite.espel.jp/index.php/2009/05/28/vistasp2-install/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WLXQuickTimeControlHost.exe</title>
		<link>http://azurite.espel.jp/index.php/2009/05/26/wlxquicktimecontrolhostexe/</link>
		<comments>http://azurite.espel.jp/index.php/2009/05/26/wlxquicktimecontrolhostexe/#comments</comments>
		<pubDate>Tue, 26 May 2009 07:09:28 +0000</pubDate>
		<dc:creator>azurite</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[VISTA]]></category>

		<guid isPermaLink="false">http://azurite.espel.jp/?p=85</guid>
		<description><![CDATA[謎のEXE、WLXQuickTimeControlHost.exe 信頼性とパフォーマンスモニタで誰がCPUを使っているのか眺めていたら、Windows Live QuickTime Control Hostという見慣れ [...]]]></description>
			<content:encoded><![CDATA[<h4></h4>
<h4>謎のEXE、WLXQuickTimeControlHost.exe</h4>
<p>信頼性とパフォーマンスモニタで誰がCPUを使っているのか眺めていたら、Windows Live QuickTime Control Hostという見慣れない物を発見。</p>
<p>実態はC:Program FilesWindows LivePhoto GalleryWLXQuickTimeControlHost.exeらしい。</p>
<p>WindowsLiveMessangerをアップデートした時に、WindowsLiveフォトギャラリーなんかもインストールしたような気がする。</p>
<p>WLXQuickTimeControlHost.exeが動いていると.mp4ファイルのリネームや削除が出来なくなったり</p>
<p>PCが重くなったりする事があるとか、そういえば時々そんな事が合った気がする。</p>
<h4>WindowsLiveフォトギャラリーをアンインストールするとWLXQuickTimeControlHost.exeも消える</h4>
<p>WindowsLiveフォトギャラリーなんて使わないのでアンインストール。</p>
<p>アンインストールすると、エクスプローラーで.mp4ファイルのサムネイル表示がされなくなる。</p>
<p>これはレジストリを変更すればいいらしい。</p>
<h4>エクスプローラーで.mp4サムネイル表示用レジストリ登録</h4>
<p>[HKEY_CLASSES_ROOT.mp4ShellEx{BB2E617C-0920-11d1-9A0B-00C04FC2D6C1}]<br />
@=&#8221;{c5a40261-cd64-4ccf-84cb-c394da41d590}&#8221;<br />
ちなみに、.mp4を他の拡張子に変えると、そのファイルもサムネイル表示される模様。</p>
<p>※.mp4はWindows Media Playeyと関連付ける事</p>
<p>参考サイト：</p>
<p>WLXQuickTimeControlHost.exe で　操作が固まる！？</p>
<p><a href="http://kaze88.exblog.jp/9969651/" target="_blank">http://kaze88.exblog.jp/9969651/</a></p>
<p><span class="singleposttitle">Xacti C6の動画のファイルのサムネールを表示する</span></p>
<p><span class="singleposttitle"><a href="http://blogs.shintak.info/archive/2006/07/28/28365.aspx" target="_blank">http://blogs.shintak.info/archive/2006/07/28/28365.aspx</a><br />
</span><strong>関連記事:</strong>
<ul class="similar-posts">
<li><a href="http://azurite.espel.jp/index.php/2009/05/28/vistasp2-install/" rel="bookmark" title="2009/05/28">WindowsVistaにSP2をインストール</a></li>
<li><a href="http://azurite.espel.jp/index.php/2010/05/10/code737/" rel="bookmark" title="2010/05/10">コード737DでWindowsUpdateが失敗する</a></li>
<li><a href="http://azurite.espel.jp/index.php/2010/05/13/sqlserver2008r2install/" rel="bookmark" title="2010/05/13">SQL Server 2008 R2 Express Editionのインストール</a></li>
<li><a href="http://azurite.espel.jp/index.php/2010/05/12/vs2010install/" rel="bookmark" title="2010/05/12">VisualStudio2010をインストール</a></li>
<li><a href="http://azurite.espel.jp/index.php/2010/05/11/visualstudio2005uninstall/" rel="bookmark" title="2010/05/11">VisualStudio2005をアンインストール</a></li>
</ul>
<p><!-- Similar Posts took 12.504 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://azurite.espel.jp/index.php/2009/05/26/wlxquicktimecontrolhostexe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

