<?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>右サイド -MigiSide-&#187; Programming</title>
	<atom:link href="http://www.migiside.net/category/programming/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.migiside.net</link>
	<description>ソフトドリンクとソフトウェア</description>
	<lastBuildDate>Wed, 01 Jan 2020 00:00:00 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Programming Memo -SecurityDescriptorについて-</title>
		<link>http://www.migiside.net/2011/06/27/programming-memo-securitydescriptor%e3%81%ab%e3%81%a4%e3%81%84%e3%81%a6/</link>
		<comments>http://www.migiside.net/2011/06/27/programming-memo-securitydescriptor%e3%81%ab%e3%81%a4%e3%81%84%e3%81%a6/#comments</comments>
		<pubDate>Mon, 27 Jun 2011 10:20:12 +0000</pubDate>
		<dc:creator>MigiSide</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[-SecurityDescriptor]]></category>
		<category><![CDATA[Memo]]></category>

		<guid isPermaLink="false">http://www.migiside.net/?p=1409</guid>
		<description><![CDATA[管理者権限でGetSecurityDescriptorの結果は取れるのだが、DACLを変更した後SetSecurityDescriptorをしてもエラー（戻り値が0以外 特にMSDNに書いてあるSetSecurityDe [...]
Related posts:<ol>
<li><a href='http://www.migiside.net/memo/' rel='bookmark' title='Memo'>Memo</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>管理者権限でGetSecurityDescriptorの結果は取れるのだが、DACLを変更した後SetSecurityDescriptorをしてもエラー（戻り値が0以外 特にMSDNに書いてあるSetSecurityDescriptorの戻り値以外のモノ）が出て変更されない<br />
そんなときは、Ownerを管理者にしてSetSecurityDescriptorをした後、DACLを変更してSetSecurityDescriptorをしてあげれば良い<br />
一度にできるかは確認していない<br />
ここで結構詰まったので、メモ<br />
参考になれば</p>
<p>Related posts:<ol>
<li><a href='http://www.migiside.net/memo/' rel='bookmark' title='Memo'>Memo</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.migiside.net/2011/06/27/programming-memo-securitydescriptor%e3%81%ab%e3%81%a4%e3%81%84%e3%81%a6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NetBeansのGUIビルダーみたいなのが使えなさすぎて泣いた</title>
		<link>http://www.migiside.net/2009/04/01/netbeans%e3%81%aegui%e3%83%93%e3%83%ab%e3%83%80%e3%83%bc%e3%81%bf%e3%81%9f%e3%81%84%e3%81%aa%e3%81%ae%e3%81%8c%e4%bd%bf%e3%81%88%e3%81%aa%e3%81%95%e3%81%99%e3%81%8e%e3%81%a6%e6%b3%a3%e3%81%84%e3%81%9f/</link>
		<comments>http://www.migiside.net/2009/04/01/netbeans%e3%81%aegui%e3%83%93%e3%83%ab%e3%83%80%e3%83%bc%e3%81%bf%e3%81%9f%e3%81%84%e3%81%aa%e3%81%ae%e3%81%8c%e4%bd%bf%e3%81%88%e3%81%aa%e3%81%95%e3%81%99%e3%81%8e%e3%81%a6%e6%b3%a3%e3%81%84%e3%81%9f/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 13:01:48 +0000</pubDate>
		<dc:creator>MigiSide</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[GUI]]></category>
		<category><![CDATA[NetBeans]]></category>
		<category><![CDATA[ビルダー]]></category>

		<guid isPermaLink="false">http://www.migiside.net/?p=460</guid>
		<description><![CDATA[今Eclipse+NetBeansでいろいろやってるんだけど NetBeansでGUIを作ってEclipseでコードを書くなんて方法をとっていた あるフォームを作りそれに動的にコントロールを追加するんだけど C#の場合  [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p>今Eclipse+NetBeansでいろいろやってるんだけど<br />
NetBeansでGUIを作ってEclipseでコードを書くなんて方法をとっていた<br />
あるフォームを作りそれに動的にコントロールを追加するんだけど</p>
<p>C#の場合<br />
Form form1=new Form();<br />
form1.Controls.add(コントロール);<br />
こんな感じ</p>
<p>Java Swingも同じように<br />
JFrame form1=new JFrame();<br />
form1.add(コントロール);</p>
<p>なのである　通常はこれで追加できるのだが<br />
NetBeansのGUIビルダーらしきものはなんだか内部で変なことをしているらしく<br />
addしても追加されない</p>
<p>仕方なくごりごり書くしかない<br />
まったく何という手間である(´･ω･｀)<br />
静的なフォームを作るのには良いかもね</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-1176210509749370";
/* 468x60, 作成済み 08/02/23 */
google_ad_slot = "2583930455";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.migiside.net/2009/04/01/netbeans%e3%81%aegui%e3%83%93%e3%83%ab%e3%83%80%e3%83%bc%e3%81%bf%e3%81%9f%e3%81%84%e3%81%aa%e3%81%ae%e3%81%8c%e4%bd%bf%e3%81%88%e3%81%aa%e3%81%95%e3%81%99%e3%81%8e%e3%81%a6%e6%b3%a3%e3%81%84%e3%81%9f/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>なぜ同じではないのか？</title>
		<link>http://www.migiside.net/2008/10/28/%e3%81%aa%e3%81%9c%e5%90%8c%e3%81%98%e3%81%a7%e3%81%af%e3%81%aa%e3%81%84%e3%81%ae%e3%81%8b%ef%bc%9f/</link>
		<comments>http://www.migiside.net/2008/10/28/%e3%81%aa%e3%81%9c%e5%90%8c%e3%81%98%e3%81%a7%e3%81%af%e3%81%aa%e3%81%84%e3%81%ae%e3%81%8b%ef%bc%9f/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 12:30:41 +0000</pubDate>
		<dc:creator>MigiSide</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.migiside.net/?p=300</guid>
		<description><![CDATA[ファイルを開くダイアログとフォルダを開くダイアログはユーザーインターフェースが全く違う ほとんど同じ操作なのになぜここまで違うのか？ フォルダを開くダイアログのチープさと言ったらありません これは困ったなー(´･ω･｀) [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p>ファイルを開くダイアログとフォルダを開くダイアログはユーザーインターフェースが全く違う<br />
ほとんど同じ操作なのになぜここまで違うのか？<br />
フォルダを開くダイアログのチープさと言ったらありません<br />
これは困ったなー(´･ω･｀)</p>
<p>それよりも蒟蒻畑がうまい<br />
もう一袋食べてしまった<br />
<script type="text/javascript"><!--
google_ad_client = "pub-1176210509749370";
/* 468x60, 作成済み 08/02/23 */
google_ad_slot = "2583930455";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.migiside.net/2008/10/28/%e3%81%aa%e3%81%9c%e5%90%8c%e3%81%98%e3%81%a7%e3%81%af%e3%81%aa%e3%81%84%e3%81%ae%e3%81%8b%ef%bc%9f/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

