<?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>Art Of Creation - Dynamics AX Blog &#187; Compiler</title>
	<atom:link href="http://www.artofcreation.be/tag/compiler/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.artofcreation.be</link>
	<description>The everyday life of a Dynamics AX developer</description>
	<lastBuildDate>Thu, 02 Feb 2012 12:20:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>Trivial: by in group by is optional</title>
		<link>http://www.artofcreation.be/2010/08/04/trivial-by-in-group-by-is-optional/</link>
		<comments>http://www.artofcreation.be/2010/08/04/trivial-by-in-group-by-is-optional/#comments</comments>
		<pubDate>Wed, 04 Aug 2010 16:11:45 +0000</pubDate>
		<dc:creator>Klaas Deforche</dc:creator>
				<category><![CDATA[Dynamics AX]]></category>
		<category><![CDATA[Compiler]]></category>
		<category><![CDATA[Job]]></category>
		<category><![CDATA[Syntax]]></category>
		<category><![CDATA[Trivial]]></category>
		<category><![CDATA[X++]]></category>

		<guid isPermaLink="false">http://www.artofcreation.be/?p=880</guid>
		<description><![CDATA[Here is something I did not know: apparently, the &#8216;by&#8217; in &#8216;group by&#8217; is optional. The following job compiles just fine, and outputs the correct result: static void KlForGroupBy&#40;Args _args&#41; &#123; &#160; &#160; InventTable inventTable; &#160; &#160; ; &#160; &#160; &#160; &#160; while select inventTable &#160; &#160; group by ItemGroupId &#160; &#160; &#123; &#160; &#160; [...]]]></description>
			<content:encoded><![CDATA[<p>Here is something I did not know: apparently, the &#8216;by&#8217; in &#8216;group by&#8217; is optional. </p>
<p>The following job compiles just fine, and outputs the correct result:</p>
<div class="codecolorer-container xpp default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="xpp codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #0000ff;">static</span> <span style="color: #0000ff;">void</span> KlForGroupBy<span style="color: #000000;">&#40;</span>Args _args<span style="color: #000000;">&#41;</span><br />
<span style="color: #000000;">&#123;</span><br />
&nbsp; &nbsp; InventTable inventTable;<br />
&nbsp; &nbsp; ;<br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; <span style="color: #0000ff;">while</span> <span style="color: #0000ff;">select</span> inventTable<br />
&nbsp; &nbsp; <span style="color: #0000ff;">group by</span> ItemGroupId<br />
&nbsp; &nbsp; <span style="color: #000000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; info<span style="color: #000000;">&#40;</span>inventTable.<span style="color: #000000;">ItemGroupId</span><span style="color: #000000;">&#41;</span>;<br />
&nbsp; &nbsp; <span style="color: #000000;">&#125;</span><br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; info<span style="color: #000000;">&#40;</span><span style="color: #ff0000;">'------'</span><span style="color: #000000;">&#41;</span>;<br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; <span style="color: #0000ff;">while</span> <span style="color: #0000ff;">select</span> inventTable<br />
&nbsp; &nbsp; group ItemGroupId <span style="color: #007f00;">// without by</span><br />
&nbsp; &nbsp; <span style="color: #000000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; info<span style="color: #000000;">&#40;</span>inventTable.<span style="color: #000000;">ItemGroupId</span><span style="color: #000000;">&#41;</span>;<br />
&nbsp; &nbsp; <span style="color: #000000;">&#125;</span><br />
<span style="color: #000000;">&#125;</span></div></div>
<p>It looks funny though :-). </p>
]]></content:encoded>
			<wfw:commentRss>http://www.artofcreation.be/2010/08/04/trivial-by-in-group-by-is-optional/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Creating a class, the best practice way</title>
		<link>http://www.artofcreation.be/2010/05/18/creating-a-class-the-best-practice-way/</link>
		<comments>http://www.artofcreation.be/2010/05/18/creating-a-class-the-best-practice-way/#comments</comments>
		<pubDate>Tue, 18 May 2010 11:40:20 +0000</pubDate>
		<dc:creator>Klaas Deforche</dc:creator>
				<category><![CDATA[Dynamics AX]]></category>
		<category><![CDATA[Best practices]]></category>
		<category><![CDATA[Compiler]]></category>
		<category><![CDATA[Patterns]]></category>

		<guid isPermaLink="false">http://www.artofcreation.be/?p=723</guid>
		<description><![CDATA[Hi all! Some time ago, I talked about the &#8216;construct&#8217; pattern that is use a lot in AX. Although I use it often, it&#8217;s not perfect because it violates some best practices. (Also, you could end up with a large class hierarchy of classes that extend each other, but I&#8217;ll discuss that in an other [...]]]></description>
			<content:encoded><![CDATA[<p>Hi all!</p>
<p>Some time ago, I talked about the &#8216;construct&#8217; pattern that is use a lot in AX. Although I use it often, it&#8217;s not perfect because it violates some best practices. (Also, you could end up with a large class hierarchy of classes that extend each other, but I&#8217;ll discuss that in an other post.)</p>
<p>First off, know that you can change the compiler level and the best practices the compiler checks.<br />
To do this, compile something so the compiler output window pops up. Then click the setup button, and adjust the settings.<br />
I used compiler level 4 and enabled all BP checks for this example. </p>
<p>So, let create a simple class. This class will simply print information of an InventTable record to the screen. </p>
<p><strong>1. ClassDeclaration</strong><br />
When we think about this class a bit, we immediately realize that we need to declare an InventTable record as a member of out class:</p>
<div class="codecolorer-container xpp default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="xpp codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #007f00;">/// &lt;summary&gt;</span><br />
<span style="color: #007f00;">/// Class written to test construct and new... patterns</span><br />
<span style="color: #007f00;">/// &lt;/summary&gt;</span><br />
<span style="color: #007f00;">/// &lt;remarks&gt;</span><br />
<span style="color: #007f00;">/// Delete this class when proven a point :)</span><br />
<span style="color: #007f00;">/// &lt;/remarks&gt;</span><br />
<span style="color: #0000ff;">class</span> KLFORTestBP<br />
<span style="color: #000000;">&#123;</span><br />
&nbsp; &nbsp; InventTable inventTable;<br />
<span style="color: #000000;">&#125;</span></div></div>
<p>Also note that I added documentation to this method. I will do so for other methods too. When you don&#8217;t, you&#8217;ll get a BP deviation warning. </p>
<p><strong>2. Parm method</strong><br />
One of the things that are important (or at least I find important), is using parm methods for your class variables. So, let&#8217;s create one:</p>
<div class="codecolorer-container xpp default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="xpp codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #007f00;">// use parm methods to access class variables</span><br />
<span style="color: #0000ff;">public</span> InventTable parmInventTable<span style="color: #000000;">&#40;</span>InventTable _inventTable <span style="color: #00007f;">=</span> inventTable<span style="color: #000000;">&#41;</span><br />
<span style="color: #000000;">&#123;</span><br />
&nbsp; &nbsp; ;<br />
&nbsp; &nbsp; inventTable <span style="color: #00007f;">=</span> _inventTable;<br />
<br />
&nbsp; &nbsp; <span style="color: #0000ff;">return</span> inventTable;<br />
<span style="color: #000000;">&#125;</span></div></div>
<p><strong>3. New method</strong><br />
You should never write code in the new method, or add parameters to it. On the contrary, you should always set this method to protected, and use a static construct() or a static new&#8230;() method instead.</p>
<div class="codecolorer-container xpp default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="xpp codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #007f00;">// a new method should be protected</span><br />
<span style="color: #007f00;">// use static new... or construct instead</span><br />
<span style="color: #0000ff;">protected</span> <span style="color: #0000ff;">void</span> <span style="color: #0000ff;">new</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />
<span style="color: #000000;">&#123;</span><br />
<span style="color: #000000;">&#125;</span></div></div>
<p><strong>4. Run method</strong><br />
The run method will be our method that contains our logic. Here, we print info to the screen</p>
<div class="codecolorer-container xpp default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="xpp codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #007f00;">/// &lt;summary&gt;</span><br />
<span style="color: #007f00;">/// Executes logic on the parameters of this class</span><br />
<span style="color: #007f00;">/// &lt;/summary&gt;</span><br />
<span style="color: #007f00;">/// &lt;remarks&gt;</span><br />
<span style="color: #007f00;">/// Just for demo purposes</span><br />
<span style="color: #007f00;">/// &lt;/remarks&gt;</span><br />
<span style="color: #0000ff;">public</span> <span style="color: #0000ff;">void</span> run<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />
<span style="color: #000000;">&#123;</span><br />
&nbsp; &nbsp; ;<br />
&nbsp; &nbsp; info<span style="color: #000000;">&#40;</span>this.<span style="color: #000000;">parmInventTable</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>.<span style="color: #000000;">NameAlias</span><span style="color: #000000;">&#41;</span>;<br />
<span style="color: #000000;">&#125;</span></div></div>
<p>Note that we are using the parm method instead of directly accessing the variable. </p>
<p><strong>5. Construct method</strong><br />
Because the new method is now protected, we will need a contruct method to be able to create an instance of this class.</p>
<div class="codecolorer-container xpp default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="xpp codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #0000ff;">private</span> <span style="color: #0000ff;">static</span> KLFORTestBP construct<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />
<span style="color: #000000;">&#123;</span><br />
&nbsp; &nbsp; ;<br />
&nbsp; &nbsp; <span style="color: #0000ff;">return</span> <span style="color: #0000ff;">new</span> KLFORTestBP<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;<br />
<span style="color: #000000;">&#125;</span></div></div>
<p>When a class doesn’t need parameters, you can leave out the &#8216;private&#8217;, but now, it is private because we plan on creating a new&#8230;() method that contains parameters. A construct method shouldn&#8217;t contain parameters, and should only be used to create a new instance of your class. It is also the only place in your application where you can call the new() method of your class. </p>
<p><strong>6. New&#8230;() method</strong><br />
As said earlier, because we need a parameter (an InventTable record), we use a new&#8230;() instead of the construct method to create an instance of our class. I will name it newFromInventTable() based on the parameter it has.<br />
In this method, we call the contruct() method to create an instance (instead of new()), set the parm method from the parameter and return the object.</p>
<div class="codecolorer-container xpp default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="xpp codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #007f00;">/// &lt;summary&gt;</span><br />
<span style="color: #007f00;">/// Creates a new KLFORTestBP object from an InventTable record</span><br />
<span style="color: #007f00;">/// &lt;/summary&gt;</span><br />
<span style="color: #007f00;">/// &lt;param name=&quot;_inventTable&quot;&gt;</span><br />
<span style="color: #007f00;">/// The InventTable used to create the object</span><br />
<span style="color: #007f00;">/// &lt;/param&gt;</span><br />
<span style="color: #007f00;">/// &lt;returns&gt;</span><br />
<span style="color: #007f00;">/// New instance of KLFORTestBP with the InventTable parameter set</span><br />
<span style="color: #007f00;">/// &lt;/returns&gt;</span><br />
<span style="color: #007f00;">/// &lt;remarks&gt;</span><br />
<span style="color: #007f00;">/// Use a new... method instead of the constuct method because it takes parameters/// A</span><br />
<span style="color: #007f00;">/// &lt;/remarks&gt;</span><br />
<span style="color: #0000ff;">public</span> <span style="color: #0000ff;">static</span> KLFORTestBP newFromInventTable<span style="color: #000000;">&#40;</span>InventTable _inventTable<span style="color: #000000;">&#41;</span><br />
<span style="color: #000000;">&#123;</span><br />
&nbsp; &nbsp; KLFORTestBP kLFORTestBP;<br />
&nbsp; &nbsp; ;<br />
<br />
&nbsp; &nbsp; kLFORTestBP <span style="color: #00007f;">=</span> KLFORTestBP<span style="color: #00007f;">::</span><span style="color: #000000;">construct</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;<br />
&nbsp; &nbsp; kLFORTestBP.<span style="color: #000000;">parmInventTable</span><span style="color: #000000;">&#40;</span>_inventTable<span style="color: #000000;">&#41;</span>;<br />
<br />
&nbsp; &nbsp; <span style="color: #0000ff;">return</span> kLFORTestBP;<br />
<span style="color: #000000;">&#125;</span></div></div>
<p>You could also create an init() method that initializes you class (we don&#8217;t need initialization now). The init() method should return a boolean if initialization can go wrong, so you can throw an error.<br />
It would look like this:</p>
<div class="codecolorer-container xpp default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="xpp codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #0000ff;">public</span> <span style="color: #0000ff;">static</span> KLFORTestBP newFromInventTable<span style="color: #000000;">&#40;</span>InventTable _inventTable<span style="color: #000000;">&#41;</span><br />
<span style="color: #000000;">&#123;</span><br />
&nbsp; &nbsp; KLFORTestBP kLFORTestBP;<br />
&nbsp; &nbsp; ;<br />
<br />
&nbsp; &nbsp; kLFORTestBP <span style="color: #00007f;">=</span> KLFORTestBP<span style="color: #00007f;">::</span><span style="color: #000000;">construct</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;<br />
&nbsp; &nbsp; kLFORTestBP.<span style="color: #000000;">parmInventTable</span><span style="color: #000000;">&#40;</span>_inventTable<span style="color: #000000;">&#41;</span>;<br />
<br />
&nbsp; &nbsp; <span style="color: #0000ff;">if</span><span style="color: #000000;">&#40;</span><span style="color: #00007f;">!</span>kLFORTestBP.<span style="color: #000000;">init</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span><br />
&nbsp; &nbsp; <span style="color: #000000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">throw</span> error<span style="color: #000000;">&#40;</span><span style="color: #ff0000;">&quot;Item record has no data&quot;</span><span style="color: #000000;">&#41;</span>; <span style="color: #007f00;">// todo: create label</span><br />
&nbsp; &nbsp; <span style="color: #000000;">&#125;</span><br />
<br />
&nbsp; &nbsp; <span style="color: #0000ff;">return</span> kLFORTestBP;<br />
<span style="color: #000000;">&#125;</span></div></div>
<p>Remember to create a label for the text string, or you will get a best practice error. </p>
<p><strong>7. Main method</strong><br />
Now, all we need more is a main method, so this class is runable (by pressing F5 or as a menu item).</p>
<div class="codecolorer-container xpp default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="xpp codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #0000ff;">server</span> <span style="color: #0000ff;">public</span> <span style="color: #0000ff;">static</span> <span style="color: #0000ff;">void</span> main<span style="color: #000000;">&#40;</span>Args _args<span style="color: #000000;">&#41;</span><br />
<span style="color: #000000;">&#123;</span><br />
&nbsp; &nbsp; KLFORTestBP kLFORTestBP;<br />
&nbsp; &nbsp; InventTable inventTable;<br />
&nbsp; &nbsp; ;<br />
<br />
&nbsp; &nbsp; <span style="color: #0000ff;">if</span><span style="color: #000000;">&#40;</span>_args <span style="color: #00007f;">&amp;&amp;</span> _args.<span style="color: #000000;">dataset</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #00007f;">==</span> <span style="color: #0000ff;">tablenum</span><span style="color: #000000;">&#40;</span>InventTable<span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span><br />
&nbsp; &nbsp; <span style="color: #000000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #007f00;">// a button was pressed on a InventTable datasource</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; inventTable <span style="color: #00007f;">=</span> _args.<span style="color: #000000;">record</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;<br />
&nbsp; &nbsp; <span style="color: #000000;">&#125;</span><br />
&nbsp; &nbsp; <span style="color: #0000ff;">else</span><br />
&nbsp; &nbsp; <span style="color: #000000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #007f00;">// for demo, simple select the first one</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">select</span> <span style="color: #0000ff;">firstonly</span> inventTable;<br />
&nbsp; &nbsp; <span style="color: #000000;">&#125;</span><br />
<br />
&nbsp; &nbsp; <span style="color: #007f00;">// display item information</span><br />
&nbsp; &nbsp; kLFORTestBP <span style="color: #00007f;">=</span> KLFORTestBP<span style="color: #00007f;">::</span><span style="color: #000000;">newFromInventTable</span><span style="color: #000000;">&#40;</span>inventTable<span style="color: #000000;">&#41;</span>;<br />
&nbsp; &nbsp; kLFORTestBP.<span style="color: #000000;">run</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;<br />
<span style="color: #000000;">&#125;</span></div></div>
<p>Normally, you will get the record from the args object, but for demo purposes, I added the &#8216;select firstonly&#8217; so you can run the class by pressing F5. As you can see, the new&#8230;() method is used to create an instance of the class, and then the run method is called. </p>
<p><strong>There you go, you now have a best practice deviation free class!</strong></p>
<p><strong>8. Using the class</strong><br />
Using the class as a menu item or in code couldn&#8217;t be easier. </p>
<p>You can drag/drop the class to the action menu item node in the AOT to create a menu item, and you will be able to use it on any form with the inventTable datasource. </p>
<p>From code, you can simple write this line (assuming there is a variable called inventTable):</p>
<div class="codecolorer-container xpp default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="xpp codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">KLFORTestBP<span style="color: #00007f;">::</span><span style="color: #000000;">newFromInventTable</span><span style="color: #000000;">&#40;</span>inventTable<span style="color: #000000;">&#41;</span>.<span style="color: #000000;">run</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;</div></div>
<p><strong>Conclusion:</strong><br />
When writing code that doesn&#8217;t contain any best practice deviations (especially when checking them all on compiler level 4), you quickly end up with a lot of methods in your class and wondering if the effort is worth it. It can be a bit painful to get your code best practice deviation free.</p>
<p>However, you&#8217;ll also realise that following the best practices has its advantages. Your code will be cleaner, easier to understand, easier to debug because of the parm, constuct and run methods, less subject to change, contain less errors and your class will be used in the way you intended when you wrote it. </p>
<p>More info on MSDN:<br />
<a href="http://msdn.microsoft.com/en-us/library/aa854210.aspx">Best practices for constructors</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.artofcreation.be/2010/05/18/creating-a-class-the-best-practice-way/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Check up on compilation status</title>
		<link>http://www.artofcreation.be/2009/10/30/check-up-on-compilation-status/</link>
		<comments>http://www.artofcreation.be/2009/10/30/check-up-on-compilation-status/#comments</comments>
		<pubDate>Fri, 30 Oct 2009 18:32:54 +0000</pubDate>
		<dc:creator>Klaas Deforche</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Compiler]]></category>
		<category><![CDATA[Debug]]></category>
		<category><![CDATA[Dynamics AX]]></category>

		<guid isPermaLink="false">http://www.artofcreation.be/?p=301</guid>
		<description><![CDATA[A (little) trick in between. I thought everyone was using this method, but I apparently I was wrong, so here you go. Doing a full compile takes a long time, and because of that, it&#8217;s handy to be able to check how much of the process is done and how much remains. Luckily, when doing [...]]]></description>
			<content:encoded><![CDATA[<p>A (little) trick in between. I thought everyone was using this method, but I apparently I was wrong, so here you go. </p>
<p>Doing a full compile takes a long time, and because of that, it&#8217;s handy to be able to check how much of the process is done and how much remains.<br />
Luckily, when doing a full compile, the Compiler Output form appears at the bottom of the screen where you can see what is currently being compiled.</p>
<p>The only problem is that most of the time, the AX client hangs and is not responsive during the compilation process, so you can’t see that information.</p>
<p>The solution to this is to press Crtl + Break.<br />
You will see a window that says:</p>
<blockquote><p>
Are you sure that you want to cancel this operation?<br />
To start the Debugger for Microsoft Dynamics, press and hold SHIFT while you click No.
</p></blockquote>
<p>While this screen is active, the Compiler Output form will update so you can check up on the status. When you’re done, be sure to click “No” to resume the full compile. Don&#8217;t click &#8220;Yes&#8221; because then the compilation will not resume and you&#8217;ll have to start again.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.artofcreation.be/2009/10/30/check-up-on-compilation-status/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

