<?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>HOTSYSTEMS - BLOG - &#187; C#</title>
	<atom:link href="http://www.hotsystems.jp/blog/archives/category/c/feed" rel="self" type="application/rss+xml" />
	<link>http://www.hotsystems.jp/blog</link>
	<description>簡単で使いやすいシステム開発でみんなを笑顔に！</description>
	<lastBuildDate>Sat, 22 Oct 2011 16:26:59 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Windowsアプリのアイコン</title>
		<link>http://www.hotsystems.jp/blog/archives/61</link>
		<comments>http://www.hotsystems.jp/blog/archives/61#comments</comments>
		<pubDate>Thu, 28 Jun 2007 15:25:21 +0000</pubDate>
		<dc:creator>hot</dc:creator>
				<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://www.hotsystems.jp/blog/archives/61</guid>
		<description><![CDATA[Visual C#で作ったアプリのアイコンをオリジナルのものにしたくなった。調べて見るとこんなフリーソフトがあった。
IcoFX &#8211; The Free Icon Editor
英語版だけど特に問題なく使える。エフェクトも色々かけられるしWindows XP Vista用のも作れるらしい。Illustratorのデータをコピペすることもできる。早速作ってみた。
True Color(24bits)の32×32で作成。

ただ、実際にフォームのIconに入れて見ると綺麗でなかったりするのでチェックしながら修正して行くのがよしいようで。作り始めると結構ハマッて面白い。
]]></description>
		<wfw:commentRss>http://www.hotsystems.jp/blog/archives/61/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ClickOnceをApacheから行う</title>
		<link>http://www.hotsystems.jp/blog/archives/60</link>
		<comments>http://www.hotsystems.jp/blog/archives/60#comments</comments>
		<pubDate>Wed, 27 Jun 2007 18:19:25 +0000</pubDate>
		<dc:creator>hot</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[サーバ]]></category>

		<guid isPermaLink="false">http://www.hotsystems.jp/blog/archives/60</guid>
		<description><![CDATA[WindowsアプリをClickOnceでインストールしようとするとXMLが表示されてしまった。以前にもこれと同じことが起こったような気がする。暫くハマッたので忘れないうちにメモ。原因はサーバ側でMIMEタイプの設定がされていない為。ってことでサーバに.htaccessをアップ
.htaccess
AddType application/x-ms-application .application
AddType application/x-ms-manifest .manifest
AddType application/octet-stream .deploy
注意：ブラウザにキャッシュが残っている場合、新しいMIMEタイプを認識しないので一度キャッシュをクリアする
おお?無事にインストールできるようになった
]]></description>
		<wfw:commentRss>http://www.hotsystems.jp/blog/archives/60/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C# バイナリデータの保存と取得</title>
		<link>http://www.hotsystems.jp/blog/archives/59</link>
		<comments>http://www.hotsystems.jp/blog/archives/59#comments</comments>
		<pubDate>Wed, 27 Jun 2007 14:59:30 +0000</pubDate>
		<dc:creator>hot</dc:creator>
				<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://www.hotsystems.jp/blog/archives/59</guid>
		<description><![CDATA[byte[] bytes = new byte[] {0&#215;83, 0&#215;56, 0&#215;83, 0&#215;74};
FileStream fs= new FileStream(&#8220;filePath&#8221;, FileMode.OpenOrCreate);
fs.SetLength(0);
BinaryWriter bw= new BinaryWriter(fs);
bw.Seek(0, SeekOrigin.Begin);
bw.Write(bytes);
bw.Close();
fs.Close();
FileStream fs = new FileStream(&#8220;filePath&#8221;, FileMode.OpenOrCreate);
BinaryReader r = new BinaryReader(fs);
byte[] byteData= r.ReadBytes(100);
r.Close();
fs.Close();
最近なんだかただの覚書になってきてる。。。
]]></description>
		<wfw:commentRss>http://www.hotsystems.jp/blog/archives/59/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Windows Form内のコントロールにName属性でアクセス （C#）</title>
		<link>http://www.hotsystems.jp/blog/archives/58</link>
		<comments>http://www.hotsystems.jp/blog/archives/58#comments</comments>
		<pubDate>Tue, 26 Jun 2007 14:59:58 +0000</pubDate>
		<dc:creator>hot</dc:creator>
				<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://www.hotsystems.jp/blog/archives/58</guid>
		<description><![CDATA[Visual C#でWindows From内のコントロールにName属性でアクセスする方法の覚書
例）CheckBoxにアクセス
 Control[] controls = this.Controls.Find(&#8220;checkBox1&#8243;, true);
 CheckBox cbox = (CheckBox)controls [0];
これが便利なのは例えばCheckBoxが何十個とあった場合の処理
for(int i=1; i&#60;21; i++)
{
　Control[] controls = this.Controls.Find(&#8220;checkBox&#8221; + i, true);
　CheckBox cbox = (CheckBox)controls [0];
　cbox.checked = true;
}
てな感じでできる
]]></description>
		<wfw:commentRss>http://www.hotsystems.jp/blog/archives/58/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

