<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>CkMun AX Blog</title>
	<atom:link href="http://ckmun.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ckmun.wordpress.com</link>
	<description>Dynamics AX Technical Corner</description>
	<lastBuildDate>Wed, 08 Jul 2009 16:59:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='ckmun.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>CkMun AX Blog</title>
		<link>http://ckmun.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://ckmun.wordpress.com/osd.xml" title="CkMun AX Blog" />
	<atom:link rel='hub' href='http://ckmun.wordpress.com/?pushpress=hub'/>
		<item>
		<title>ClearDynaLinks Method</title>
		<link>http://ckmun.wordpress.com/2009/07/08/cleardynalinks-method/</link>
		<comments>http://ckmun.wordpress.com/2009/07/08/cleardynalinks-method/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 16:55:05 +0000</pubDate>
		<dc:creator>ckmun</dc:creator>
				<category><![CDATA[Dynamics AX]]></category>
		<category><![CDATA[Technical Stuffs]]></category>

		<guid isPermaLink="false">http://ckmun.wordpress.com/?p=68</guid>
		<description><![CDATA[Here is something regarding the form datasource. I have two tables, BikeCustTable and BikeInvoice. The relationship for that two table is link through AccountNum. Assume there are some data in that two tables, please see the following screen. There are &#8230; <a href="http://ckmun.wordpress.com/2009/07/08/cleardynalinks-method/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ckmun.wordpress.com&amp;blog=7908283&amp;post=68&amp;subd=ckmun&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;text-align:justify;">Here is something regarding the form datasource. I have two tables, BikeCustTable and BikeInvoice. The relationship for that two table is link through AccountNum. Assume there are some data in that two tables, please see the following screen.</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;text-align:justify;">There are two forms (Form A and Form B), both of the forms require BikeCustTable as datasource. However, in Form B, it require extra datasource, which is BikeInvoice. In Form A, it consists of a grid and a menu item button. The grid datasource is Table A and consists of fields from Table A. Meanwhile, there is a menu item button, calling Form B. For this menu item button, we have to pass the current datasource to form B.</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;text-align:justify;">In Form B, there only consist of one grid, and a two datasource (BikeCustTable and BikeInvoice). The BikeCustTable datasource is inner join with BikeInvoice datasource. The grid in Form B consists of fields from two table.</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;text-align:justify;">The scenario is like following. When user open the Form A, it display on the screen. It works well and fine. When user click the menu item button, the Form B will be display. However, you will notice the only AccountNum 100 will be display only. Where is AccountNum 101? Why it never appear in Grid?</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;text-align:justify;">Imagine I have two forms, Form A and Form B. Both of the forms require BikeCustTable as a datasource. In form B, I have</div>
<p style="text-align:justify;">Here is something regarding the ClearDynaLinks method. Mostly you read many blogs, sites and so on that theoritically explain this method. Moreover, no further explaination or example is being provided. It is hard for new comer to catch up the idea.</p>
<p style="text-align:justify;">Before I explain how that method work, we have to know our &#8220;ingredient&#8221;. I have two tables, BikeCustTable and BikeInvoice. The relationship for that two table is link through AccountNum. Assume there are some data in that two tables, please see the following screen.</p>
<div class="mceTemp" style="text-align:justify;">
<dl class="wp-caption alignleft">
<dt class="wp-caption-dt"><a rel="attachment wp-att-71" href="http://ckmun.wordpress.com/2009/07/08/cleardynalinks-method/tables/"><img class="size-full wp-image-71" title="Tables" src="http://ckmun.files.wordpress.com/2009/07/tables.jpg?w=494&#038;h=316" alt="Tables" width="494" height="316" /></a></dt>
<dd class="wp-caption-dd">Tables</dd>
</dl>
</div>
<p style="text-align:justify;">
<p style="text-align:justify;">After review our &#8220;ingredient&#8221;, is time for us to prepare our meal. First, we need two forms, Form A and Form B, both of the forms require BikeCustTable as datasource. However, in Form B, it require extra datasource, which is BikeInvoice. Take a glimpse on the screen below.</p>
<div class="mceTemp" style="text-align:justify;">
<dl class="wp-caption alignleft">
<dt class="wp-caption-dt"><a rel="attachment wp-att-74" href="http://ckmun.wordpress.com/2009/07/08/cleardynalinks-method/formab/"><img class="size-full wp-image-74" title="FormAB" src="http://ckmun.files.wordpress.com/2009/07/formab.jpg?w=432&#038;h=627" alt="Datasource for Form A and B." width="432" height="627" /></a></dt>
<dd class="wp-caption-dd">Datasource for Form A and B.</dd>
</dl>
</div>
<p style="text-align:justify;">
<p style="text-align:justify;">In Form A, it consists of a grid and a menu item button. The grid datasource is Table A and consists of fields from Table A. Meanwhile, there is a menu item button, calling Form B. For this menu item button, we have to pass the current datasource to form B. See the screen below.</p>
<div id="attachment_77" class="wp-caption alignleft" style="width: 505px"><a rel="attachment wp-att-77" href="http://ckmun.wordpress.com/2009/07/08/cleardynalinks-method/forma_design/"><img class="size-full wp-image-77" title="FormA_Design" src="http://ckmun.files.wordpress.com/2009/07/forma_design.jpg?w=495&#038;h=354" alt="Form A Design" width="495" height="354" /></a><p class="wp-caption-text">Form A Design</p></div>
<p style="text-align:justify;">
<p style="text-align:justify;">In Form B, there only consist of one grid, and a two datasource (BikeCustTable and BikeInvoice). The BikeCustTable datasource is inner join with BikeInvoice datasource. The grid in Form B consists of fields from two table.</p>
<div id="attachment_78" class="wp-caption alignleft" style="width: 505px"><a rel="attachment wp-att-78" href="http://ckmun.wordpress.com/2009/07/08/cleardynalinks-method/formb_design/"><img class="size-full wp-image-78" title="FormB_Design" src="http://ckmun.files.wordpress.com/2009/07/formb_design.jpg?w=495&#038;h=358" alt="Form B Design" width="495" height="358" /></a><p class="wp-caption-text">Form B Design</p></div>
<p style="text-align:justify;">
<p style="text-align:justify;">The scenario is like following. When user open the Form A, it display on the screen. It works well and fine. When user click the menu item button, the Form B will be display. However, you will notice the only AccountNum 100 will be display only. Where is AccountNum 101? Why it never appear in Grid?</p>
<p style="text-align:justify;">
<div id="attachment_79" class="wp-caption alignleft" style="width: 505px"><a rel="attachment wp-att-79" href="http://ckmun.wordpress.com/2009/07/08/cleardynalinks-method/running_1/"><img class="size-full wp-image-79" title="Running_1" src="http://ckmun.files.wordpress.com/2009/07/running_1.jpg?w=495&#038;h=410" alt="Running 1" width="495" height="410" /></a><p class="wp-caption-text">Running 1</p></div>
<p style="text-align:justify;">
<p style="text-align:justify;">Notice when I select AccountNum 101 in Form A, it will cause changes on Form B. In Form B, only records that have the AccountNum 101 will be displayed. Other records will not be displayed.</p>
<p style="text-align:justify;">
<div id="attachment_86" class="wp-caption alignleft" style="width: 505px"><a rel="attachment wp-att-86" href="http://ckmun.wordpress.com/2009/07/08/cleardynalinks-method/running_2/"><img class="size-full wp-image-86" title="Running_2" src="http://ckmun.files.wordpress.com/2009/07/running_2.jpg?w=495&#038;h=361" alt="Running 2" width="495" height="361" /></a><p class="wp-caption-text">Running 2</p></div>
<p style="text-align:justify;">
<p style="text-align:justify;">Why happen to the program? Why AccountNum 101 not being displayed in Running 1, and why AccountNum 100 not being displayed at Running 2? Notice when I select the record in Form A, it will reflect the changes in Form B. Why this happen? The answer is if same datasource exists in both forms, AX will try to link it together by default. This is the fact.</p>
<p style="text-align:justify;">For disable the link, ClearDynaLinks method can be apply if you don&#8217;t want the linking to be carry forward to next form. Please look at the screen below to see the additional code that add under the datasource init method.</p>
<p style="text-align:justify;">
<div id="attachment_93" class="wp-caption alignleft" style="width: 505px"><a rel="attachment wp-att-93" href="http://ckmun.wordpress.com/2009/07/08/cleardynalinks-method/solution/"><img class="size-full wp-image-93" title="Solution" src="http://ckmun.files.wordpress.com/2009/07/solution.jpg?w=495&#038;h=256" alt="Solution" width="495" height="256" /></a><p class="wp-caption-text">Solution</p></div>
<p style="text-align:justify;">
<p style="text-align:justify;">By add in <span style="color:#ff0000;"><strong><span style="text-decoration:underline;">this.query().dataSourceTable(tablenum(BikeInvoice)).clearDynalinks();</span></strong></span> into the BikeInvoice data source init method to disable the linking. Doing so will broke the link and there will be two separate datasource in two forms. Hope after you go through this post, it will help you understand the the ClearDynaLinks method.</p>
<p style="text-align:justify;">
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ckmun.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ckmun.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ckmun.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ckmun.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ckmun.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ckmun.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ckmun.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ckmun.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ckmun.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ckmun.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ckmun.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ckmun.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ckmun.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ckmun.wordpress.com/68/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ckmun.wordpress.com&amp;blog=7908283&amp;post=68&amp;subd=ckmun&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ckmun.wordpress.com/2009/07/08/cleardynalinks-method/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7854d8d0b790f1ad833f4f94f93c9d06?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ckmun</media:title>
		</media:content>

		<media:content url="http://ckmun.files.wordpress.com/2009/07/tables.jpg" medium="image">
			<media:title type="html">Tables</media:title>
		</media:content>

		<media:content url="http://ckmun.files.wordpress.com/2009/07/formab.jpg" medium="image">
			<media:title type="html">FormAB</media:title>
		</media:content>

		<media:content url="http://ckmun.files.wordpress.com/2009/07/forma_design.jpg" medium="image">
			<media:title type="html">FormA_Design</media:title>
		</media:content>

		<media:content url="http://ckmun.files.wordpress.com/2009/07/formb_design.jpg" medium="image">
			<media:title type="html">FormB_Design</media:title>
		</media:content>

		<media:content url="http://ckmun.files.wordpress.com/2009/07/running_1.jpg" medium="image">
			<media:title type="html">Running_1</media:title>
		</media:content>

		<media:content url="http://ckmun.files.wordpress.com/2009/07/running_2.jpg" medium="image">
			<media:title type="html">Running_2</media:title>
		</media:content>

		<media:content url="http://ckmun.files.wordpress.com/2009/07/solution.jpg" medium="image">
			<media:title type="html">Solution</media:title>
		</media:content>
	</item>
		<item>
		<title>How to pass value from MenuItemButton to a Dialog Class?</title>
		<link>http://ckmun.wordpress.com/2009/05/28/how-to-pass-value-from-menuitembutton-to-a-dialog-class/</link>
		<comments>http://ckmun.wordpress.com/2009/05/28/how-to-pass-value-from-menuitembutton-to-a-dialog-class/#comments</comments>
		<pubDate>Thu, 28 May 2009 21:00:08 +0000</pubDate>
		<dc:creator>ckmun</dc:creator>
				<category><![CDATA[Technical Stuffs]]></category>

		<guid isPermaLink="false">http://ckmun.wordpress.com/?p=12</guid>
		<description><![CDATA[Hi everybody, as mentioned in my previos post, I will share the knowledge about dynamics AX on technical/functional perspectives. During your AX development, you will encounter different technical scenario. Although some of the scenario is able to obtain solution, but &#8230; <a href="http://ckmun.wordpress.com/2009/05/28/how-to-pass-value-from-menuitembutton-to-a-dialog-class/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ckmun.wordpress.com&amp;blog=7908283&amp;post=12&amp;subd=ckmun&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">Hi everybody, as mentioned in my previos post, I will share the knowledge about dynamics AX on technical/functional perspectives. During your AX development, you will encounter different technical scenario. Although some of the scenario is able to obtain solution, but we still seeking for the best solution.</p>
<p><img class="aligncenter size-full wp-image-44" title="Overview" src="http://ckmun.files.wordpress.com/2009/05/overview2.jpg?w=495&#038;h=309" alt="Overview" width="495" height="309" /></p>
<p style="text-align:justify;"> </p>
<p style="text-align:justify;">The lesson I would like to share with you is &#8220;How to pass value from MenuItemButton to a Dialog Class&#8221;. Imagine a situation you have a MenuItemButton on a form, and the MenuItemButton is calling a MenuItems (Action) and finally call the dialog class. For certain scenario, you would like to pass a value, perhaps a record, from the <strong>FORM</strong> to the <strong>DIALOG</strong> class, but you are constraint by the MenuItemButton. Possible to do it? Some of you might suggest you that MACRO can be applied here. However, apart from that, what other solution you can use? </p>
<p style="text-align:justify;"> </p>
<p style="text-align:justify;">Here, I introduce to cast the caller (mean the form) to ObjectRun type. Below are the steps that teach you how to achieve that.</p>
<p style="text-align:justify;"> </p>
<p style="text-align:justify;"><strong><span style="text-decoration:underline;">Step 1</span></strong>: Create a dialog class, call it as MyDialogClass and extend from RunBase. In the classDeclaration part, declare a global variable, objRun, type ObjectRun. Please see picture in the galery (Step1.jpg).</p>
<p style="text-align:justify;"><a rel="attachment wp-att-45" href="http://ckmun.wordpress.com/2009/05/28/how-to-pass-value-from-menuitembutton-to-a-dialog-class/step1/"><img class="aligncenter size-full wp-image-45" title="Step1" src="http://ckmun.files.wordpress.com/2009/05/step11.jpg?w=495&#038;h=309" alt="Step1" width="495" height="309" /></a></p>
<p style="text-align:justify;"><strong><span style="text-decoration:underline;">Step2</span></strong>: Declare a method to initialize the objRun create in Step 1. Here, I call it as initObject method with an input parameter Args. Please see Step2.jpg.</p>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:287px;width:1px;height:1px;">void initObject(Args args)</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:287px;width:1px;height:1px;">{</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:287px;width:1px;height:1px;"><span style="white-space:pre;"> </span>objRun = _args.caller();</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:287px;width:1px;height:1px;">}</div>
<p>                             void initObject(Args args)</p>
<p>                             {</p>
<p><span style="white-space:pre;"> </span>                                 objRun = _args.caller();</p>
<p>                             }</p>
<p><a rel="attachment wp-att-46" href="http://ckmun.wordpress.com/2009/05/28/how-to-pass-value-from-menuitembutton-to-a-dialog-class/step2/"><img class="aligncenter size-full wp-image-46" title="Step2" src="http://ckmun.files.wordpress.com/2009/05/step21.jpg?w=495&#038;h=309" alt="Step2" width="495" height="309" /></a></p>
<p><strong><span style="text-decoration:underline;">Step 3</span></strong>: Overwrite the dialog method. The code are like following. For details, you can refer to Step3.jpg.</p>
<p>                            protected Object dialog()</p>
<p>                           {</p>
<p><span style="white-space:pre;"> </span>                                    DialogRunBase dialog = super();</p>
<p><span style="white-space:pre;"> </span>                                    ;</p>
<p>                                   dialog.addText(&#8220;Output: &#8221; + objRun.args().parm());</p>
<p><span style="white-space:pre;"> </span>                                  return dialog;</p>
<p>                         }</p>
<p><a rel="attachment wp-att-47" href="http://ckmun.wordpress.com/2009/05/28/how-to-pass-value-from-menuitembutton-to-a-dialog-class/step3/"><img class="aligncenter size-full wp-image-47" title="Step3" src="http://ckmun.files.wordpress.com/2009/05/step31.jpg?w=495&#038;h=309" alt="Step3" width="495" height="309" /></a></p>
<p style="text-align:justify;"><strong><span style="text-decoration:underline;">Step 4</span></strong>: Create a main method for the class. The code is like following. Please refer to Step4.jpg as well. After finish the develop the class, please create an MenuItem, with an Action type.</p>
<p>                        public static void main(Args _args)</p>
<p>                       {</p>
<p><span style="white-space:pre;"> </span>                             MyDialogClass dlgCls = new MyDialogClass();</p>
<p><span style="white-space:pre;"> </span>                             dlgCls.initObject(_args);</p>
<p> <span style="white-space:pre;"> </span>                            dlgCls.prompt();</p>
<p>                         }</p>
<p><a rel="attachment wp-att-48" href="http://ckmun.wordpress.com/2009/05/28/how-to-pass-value-from-menuitembutton-to-a-dialog-class/step4/"><img class="aligncenter size-full wp-image-48" title="Step4" src="http://ckmun.files.wordpress.com/2009/05/step41.jpg?w=495&#038;h=309" alt="Step4" width="495" height="309" /></a></p>
<p style="text-align:justify;"><strong><span style="text-decoration:underline;">Step 5</span></strong>:  This is last step. Create a form, here I named it as MyInputForm. In the form, add a StaticText and MenuButtonItem. The StaticText (I named it as Input1) which used for us to enter the value we want to pass to the dialog class. For the details, please refer to Step5.jpg. Remember to associate the MenuButtonItem with the MenuItem create on step 4 in order when you click on the button, it will call the class. For the MenuButtonItem, overwrite the clicked event. The following code should allocate under this method:</p>
<p>                          void clicked()</p>
<p>                          {</p>
<p><span style="white-space:pre;"> </span>                               element.args().parm(input1.valueStr());</p>
<p><span style="white-space:pre;"> </span>                               super();</p>
<p>                          }</p>
<p><a rel="attachment wp-att-49" href="http://ckmun.wordpress.com/2009/05/28/how-to-pass-value-from-menuitembutton-to-a-dialog-class/step5/"><img class="aligncenter size-full wp-image-49" title="Step5" src="http://ckmun.files.wordpress.com/2009/05/step51.jpg?w=495&#038;h=309" alt="Step5" width="495" height="309" /></a></p>
<p>After complete step 5, compile all the code and you can having a test. Enter some of text into the input and click the MenuItemButton, you will able see the your input appear on the dialog. Hope this lesson will benefit you.</p>
<p><a rel="attachment wp-att-50" href="http://ckmun.wordpress.com/2009/05/28/how-to-pass-value-from-menuitembutton-to-a-dialog-class/result/"><img class="aligncenter size-full wp-image-50" title="Result" src="http://ckmun.files.wordpress.com/2009/05/result1.jpg?w=495&#038;h=309" alt="Result" width="495" height="309" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ckmun.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ckmun.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ckmun.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ckmun.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ckmun.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ckmun.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ckmun.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ckmun.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ckmun.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ckmun.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ckmun.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ckmun.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ckmun.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ckmun.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ckmun.wordpress.com&amp;blog=7908283&amp;post=12&amp;subd=ckmun&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ckmun.wordpress.com/2009/05/28/how-to-pass-value-from-menuitembutton-to-a-dialog-class/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7854d8d0b790f1ad833f4f94f93c9d06?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ckmun</media:title>
		</media:content>

		<media:content url="http://ckmun.files.wordpress.com/2009/05/overview2.jpg" medium="image">
			<media:title type="html">Overview</media:title>
		</media:content>

		<media:content url="http://ckmun.files.wordpress.com/2009/05/step11.jpg" medium="image">
			<media:title type="html">Step1</media:title>
		</media:content>

		<media:content url="http://ckmun.files.wordpress.com/2009/05/step21.jpg" medium="image">
			<media:title type="html">Step2</media:title>
		</media:content>

		<media:content url="http://ckmun.files.wordpress.com/2009/05/step31.jpg" medium="image">
			<media:title type="html">Step3</media:title>
		</media:content>

		<media:content url="http://ckmun.files.wordpress.com/2009/05/step41.jpg" medium="image">
			<media:title type="html">Step4</media:title>
		</media:content>

		<media:content url="http://ckmun.files.wordpress.com/2009/05/step51.jpg" medium="image">
			<media:title type="html">Step5</media:title>
		</media:content>

		<media:content url="http://ckmun.files.wordpress.com/2009/05/result1.jpg" medium="image">
			<media:title type="html">Result</media:title>
		</media:content>
	</item>
	</channel>
</rss>
