<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>

    <title>codebrothers.net ::  :: Matthias Denkmaier</title>

    <link>http://www.codebrothers.net/mdenkmaier/Blog.aspx</link>

    <description>This blog is managed and edited by Matthias Denkmaier!</description>

    <language>en-EN</language>

    <copyright>Copyright by Matthias Denkmaier, Peter Schneider, 2007</copyright>

    <image>

      <url></url>

      <title></title>

      <link></link>

    </image>


    <item>

    <pubDate>Tue, 01 Jun 2010 21:58:00 GMT</pubDate>

      <title>ASP.NET - Chart Control Download Links)</title>

        <description><![CDATA[<P>On popular request I wanted to share a simple list of download links with all the tools and installers needed to enable the usage of the ASP.NET Charting Controls&nbsp;out of Visual Studio 2008.<BR><BR>
<div style="padding-left:20px"><UL>
<LI><A href="http://www.microsoft.com/downloads/details.aspx?FamilyID=130f7986-bf49-4fe5-9ca8-910ae6ea442c&amp;DisplayLang=en" target=_blank>Download the free Microsoft Chart Controls</A> </LI>
<LI><A href="http://www.microsoft.com/downloads/details.aspx?familyid=1D69CE13-E1E5-4315-825C-F14D33A303E9&amp;displaylang=en" target=_blank>Download the VS 2008 Tool Support for the Chart Controls</A> </LI>
<LI><A href="http://code.msdn.microsoft.com/mschart/Release/ProjectReleases.aspx?ReleaseId=1591" target=_blank>Download the Microsoft Chart Controls Samples</A> </LI>
<LI><A href="http://www.microsoft.com/downloads/details.aspx?FamilyId=EE8F6F35-B087-4324-9DBA-6DD5E844FD9F&amp;displaylang=en" target=_blank>Download the Microsoft Chart Controls Documentation</A> </LI>
<LI><A href="http://social.msdn.microsoft.com/Forums/en-US/MSWinWebChart/threads/" target=_blank>Visit the Microsoft Chart Control Forum</A> </LI></UL>
</div>
<BR><BR>Be aware, that Visual Studio 2010 already has these controls integrated, so you do not have to install them seperately. 
<P></P>]]></description>

      <link>/mdenkmaier/archive/aspnet---chart-control-download-links/blogentry.aspx</link>

      <author>mdenkmaier</author>

    </item>
    <item>

    <pubDate>Mon, 12 Apr 2010 11:03:00 GMT</pubDate>

      <title>Calling WCF from Silverlight over SSL failes with error )</title>

        <description><![CDATA[<P>Just stumbled across a wired error when i tried to access a SSL secured WCF service from Silverlight (3.0).<BR><BR>When I first tried it I got the following error message back:<BR><BR><EM>...An error occurred while trying to make a request to URI ’https://xyz.com/SecureWebServices/AuthService.svc’. This could be due to attempting to access a service in a cross-domain way without a proper cross-domain policy in place, or a policy that is unsuitable for SOAP services. You may need to contact the owner of the service to publish a cross-domain policy file and to ensure it allows SOAP-related HTTP headers to be sent. This error may also be caused by using internal types in the web service proxy without using the InternalsVisibleToAttribute attribute. Please see the inner exception for more details...<BR><BR></EM>After&nbsp;some research&nbsp;I found the problem to be caused by my clientaccesspolicy.xml which looked like that:<BR><BR>&lt;?xml version="1.0" encoding="utf-8"?&gt; <BR>&lt;access-policy&gt; <BR>&nbsp;&nbsp;&nbsp; &lt;cross-domain-access&gt; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;policy&gt; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;allow-from http-request-headers="*"&gt; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;domain uri="*"/&gt; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/allow-from&gt; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;grant-to&gt; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;resource path="/" include-subpaths="true"/&gt; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/grant-to&gt; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/policy&gt; <BR>&nbsp;&nbsp;&nbsp; &lt;/cross-domain-access&gt; <BR>&lt;/access-policy&gt; <BR><BR>The problem is caused by the line:&nbsp; &lt;domain uri="*"/&gt; within the ’allow-from’ section.<BR>To resolve the problem I simpkle had to change my&nbsp;clientaccesspolicy.xml into: <BR><BR>&lt;?xml version="1.0" encoding="utf-8"?&gt; <BR>&lt;access-policy&gt; <BR>&nbsp;&nbsp;&nbsp; &lt;cross-domain-access&gt; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;policy&gt; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;allow-from http-request-headers="*"&gt; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;domain uri="http://*" /&gt; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;domain uri="https://*" /&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/allow-from&gt; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;grant-to&gt; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;resource path="/" include-subpaths="true"/&gt; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/grant-to&gt; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/policy&gt; <BR>&nbsp;&nbsp;&nbsp; &lt;/cross-domain-access&gt; <BR>&lt;/access-policy&gt; <BR><BR><BR></P>
<P>&nbsp;</P>]]></description>

      <link>/mdenkmaier/archive/calling-wcf-from-silverlight-over-ssl-failes-with-error/blogentry.aspx</link>

      <author>mdenkmaier</author>

    </item>
    <item>

    <pubDate>Mon, 28 Apr 2008 15:02:00 GMT</pubDate>

      <title>Event: MiX Essentials in Vienna, Austria)</title>

        <description><![CDATA[<P><IMG style="WIDTH: 109px; HEIGHT: 68px" alt="MiX Essentials" hspace=0 src="http://www.codebrothers.net/content/mdenkmaier/images/posts/mixessentials.jpg" align=top border=0><STRONG><FONT size=4>MiX Essentials</FONT></STRONG></P>
<P>Every developer located in Austria or nearby Vienna should hurry and register for the MiX Essentials event held in May in Vienna, Austria.</P>
<P>&nbsp;</P>
<P>The details:</P>
<P><SPAN class=timezone id=lblStartEndDate></SPAN>&nbsp;</P>
<P><SPAN class=timezone>Monday,&nbsp;May, 19th&nbsp;2008 09:00&nbsp;- Moday,&nbsp;May 19th&nbsp;2008 17:00</SPAN></P>
<P><SPAN class=timezone></SPAN>&nbsp;</P>
<P><SPAN>Siemensforum</SPAN> <BR><SPAN id=lblAddress1>Dietrichgasse 25<BR></SPAN><SPAN id=lblAddress4>Vienna</SPAN>&nbsp;<SPAN id=lblAddress6>1030<BR></SPAN><SPAN id=lblAddress7>Austria</SPAN>&nbsp;</P>
<P>&nbsp;</P>
<P>For registeration visit the <A href="https://msevents.microsoft.com/CUI/EventDetail.aspx?culture=de-AT&amp;EventID=1032377043">Event homepage of the Microsoft Austria Website</A>.</P>
<P>&nbsp;</P>]]></description>

      <link>/mdenkmaier/archive/event-mix-essentials-in-vienna-austria/blogentry.aspx</link>

      <author>mdenkmaier</author>

    </item>
    <item>
    <pubDate>Mon, 28 Apr 2008 15:01:59 GMT</pubDate>
      <title>Advertisment</title>
        <description><![CDATA[<a href="http://www.pheedo.com/click.phdo?x=e28339d613b94fd4ad14cfffd66a884c&u=cbnet_rss"><img src="http://www.pheedo.com/img.phdo?x=e28339d613b94fd4ad14cfffd66a884c&u=cbnet_rss" border="0"/></a>
]]></description>
      <link></link>
      <author></author>
    </item>
    <item>

    <pubDate>Wed, 13 Feb 2008 07:27:00 GMT</pubDate>

      <title>Tools: Must have Tabbed Windows Explorer AddOn)</title>

        <description><![CDATA[<P>I recently found on <A href="http://on10.net/">http://on10.net</A> the wunderful and "Must-Have" tool <A href="http://qttabbar.wikidot.com/qttabbar">QTTabBar</A>.</P>
<P>&nbsp;</P>
<P>The QTTabBar is a simple but powerful AddOn which gives you seamless integration of tabbed browsing of folders and directories right&nbsp;out of&nbsp;your standard Windows Explorer.</P>
<P>&nbsp;</P>
<P>It works on Windows XP (with installed .NET framework 2.0 ) and Windows Vista.</P>
<P>&nbsp;</P>
<P>And the best: it is absolutly free! Go and get it...</P>
<P>&nbsp;</P>]]></description>

      <link>/mdenkmaier/archive/tools-must-have-tabbed-windows-explorer-addon/blogentry.aspx</link>

      <author>mdenkmaier</author>

    </item>
    <item>

    <pubDate>Fri, 25 Jan 2008 07:58:00 GMT</pubDate>

      <title>Howto: Handle MouseWheel messages (WM_MOUSEWHEEL) manually)</title>

        <description><![CDATA[<P>Today i had to manually handle the mouse wheel functionality in a customer project and suppress the raising of the MouseWheel event as long as a specific condition returned false.</P>
<P>After some research i found a fairly simple solution:</P>
<P>&nbsp;</P><PRE class=code><SPAN style="COLOR: rgb(0,0,255)"><FONT face=Courier><FONT size=1><SPAN style="COLOR: rgb(0,0,255)">public</SPAN><FONT color=#000000> </FONT><SPAN style="COLOR: rgb(0,0,255)">const</SPAN><FONT color=#000000> </FONT><SPAN style="COLOR: rgb(0,0,255)">int</SPAN><FONT color=#000000> WM_MOUSEWHEEL = 0×020A;</FONT></FONT></FONT></SPAN></PRE><PRE class=code><SPAN style="COLOR: rgb(0,0,255)"></SPAN>&nbsp;</PRE><PRE class=code><SPAN style="COLOR: rgb(0,0,255)"></SPAN><FONT face=Courier><FONT size=1><SPAN style="COLOR: rgb(0,0,255)">protected</SPAN> <SPAN style="COLOR: rgb(0,0,255)">override</SPAN> <SPAN style="COLOR: rgb(0,0,255)">void</SPAN> WndProc(<SPAN style="COLOR: rgb(0,0,255)">ref</SPAN> <SPAN style="COLOR: rgb(43,145,175)">Message</SPAN> m) </FONT></FONT></PRE><PRE class=code><FONT face=Courier><FONT size=1>{</FONT></FONT></PRE><PRE class=code><FONT face=Courier><FONT size=1>     <SPAN style="COLOR: rgb(0,0,255)">if</SPAN> (m.HWnd != <SPAN style="COLOR: rgb(0,0,255)">this</SPAN>.Handle)       </FONT></FONT></PRE><PRE class=code><FONT face=Courier><FONT size=1>     {            </FONT></FONT></PRE><PRE class=code><FONT face=Courier><FONT size=1><SPAN style="COLOR: rgb(0,0,255)">            return</SPAN>;       </FONT></FONT></PRE><PRE class=code><FONT face=Courier><FONT size=1>     } </FONT></FONT></PRE><PRE class=code><FONT size=+0><FONT face=Courier size=1></FONT></FONT>&nbsp;</PRE><PRE class=code><FONT size=+0><FONT face=Courier size=1>      <SPAN style="COLOR: rgb(0,0,255)">switch</SPAN> (m.Msg)    </FONT></FONT></PRE><PRE class=code><FONT face=Courier size=1>      </FONT><FONT size=+0><FONT face=Courier size=1>{           </FONT></FONT></PRE><PRE class=code><FONT face=Courier size=1>            </FONT><FONT size=+0><FONT face=Courier size=1><SPAN style="COLOR: rgb(0,0,255)">case</SPAN> <SPAN style="COLOR: rgb(43,145,175)">Win32Messages</SPAN>.WM_MOUSEWHEEL:</FONT></FONT></PRE><PRE class=code><FONT face=Courier size=1>                  </FONT><FONT size=+0><FONT face=Courier size=1><SPAN style="COLOR: rgb(0,0,255)">if</SPAN>( ! &lt;your condition goes here&gt; )</FONT></FONT></PRE><PRE class=code><FONT face=Courier size=1>    </FONT><FONT size=+0><FONT size=1><FONT face=Courier>              {</FONT></FONT></FONT></PRE><PRE class=code><FONT face=Courier size=1>         </FONT><FONT size=+0><FONT size=1><FONT face=Courier>                <FONT color=#0000ff>return</FONT>;  </FONT></FONT></FONT></PRE><PRE class=code><FONT face=Courier size=1>     </FONT><FONT size=+0><FONT size=1><FONT face=Courier>             }</FONT></FONT></FONT><FONT size=+0><FONT size=1> <FONT face=Courier>              </FONT></FONT></FONT></PRE><PRE class=code><FONT face=Courier size=1>                  </FONT><FONT size=+0><FONT size=1><FONT face=Courier><SPAN style="COLOR: rgb(0,0,255)">break</SPAN>;           </FONT></FONT></FONT></PRE><PRE class=code><FONT face=Courier size=1>            </FONT><FONT size=+0><FONT size=1><FONT face=Courier><SPAN style="COLOR: rgb(0,0,255)">default</SPAN>:               </FONT></FONT></FONT></PRE><PRE class=code><FONT size=+0><FONT size=1><FONT face=Courier><SPAN style="COLOR: rgb(0,0,255)">                  break</SPAN>;       </FONT></FONT></FONT></PRE><PRE class=code><FONT size=+0><FONT size=1><FONT face=Courier>      }</FONT></FONT></FONT></PRE><PRE class=code><FONT face=Courier><FONT size=1>      <SPAN style="COLOR: rgb(0,0,255)">base</SPAN>.WndProc(<SPAN style="COLOR: rgb(0,0,255)">ref</SPAN> m);  </FONT></FONT></PRE><PRE class=code><FONT face=Courier><FONT size=1>}</FONT></FONT></PRE><PRE class=code><FONT face=Courier size=1></FONT>&nbsp;</PRE><PRE class=code>&nbsp;</PRE>
<P>Hope this helps! </P>
<P>&nbsp;</P>]]></description>

      <link>/mdenkmaier/archive/howto-handle-mousewheel-messages-wm_mousewheel-manually/blogentry.aspx</link>

      <author>mdenkmaier</author>

    </item>
    <item>

    <pubDate>Tue, 22 Jan 2008 22:48:00 GMT</pubDate>

      <title>Howto: Fixing Word 2007 Crash on Exit)</title>

        <description><![CDATA[<P>After several weeks living with a really bad bug in Microsoft Office 2007 wich leads to big problems when i tried to close my Word 2007 application and hours of searching for a possible solution i finally found one:</P>
<P>&nbsp;</P>
<DIV class=vcard><SPAN class=fn><A href="http://joeon.net/">Joe Stagner </A>from Microsoft had the same problem and found a solution in newsgroup and <A href="http://joeon.net/post/2008/01/Fixing-Word-2007-Crash-on-Exit-amp%3b-Broken-Mouse-Support!.aspx">posted the solution here</A>!</SPAN></DIV>
<DIV class=vcard><SPAN class=fn></SPAN>&nbsp;</DIV>
<DIV class=vcard><SPAN class=fn>Once again the community with their unpayable work done in uncountable newgroups and forum-threads saved my life! Thank you!!!</SPAN></DIV>
<DIV class=vcard><SPAN class=fn></SPAN>&nbsp;</DIV>
<DIV class=vcard><SPAN class=fn></SPAN>&nbsp;</DIV>
<DIV class=vcard><SPAN class=fn></SPAN>&nbsp;</DIV>
<DIV class=vcard><SPAN class=fn>Hope this helps!</SPAN></DIV>
<DIV class=vcard><SPAN class=fn></SPAN>&nbsp;</DIV>
<DIV class=vcard><SPAN class=fn></SPAN>&nbsp;</DIV>]]></description>

      <link>/mdenkmaier/archive/howto-fixing-word-2007-crash-on-exit/blogentry.aspx</link>

      <author>mdenkmaier</author>

    </item>
    <item>

    <pubDate>Thu, 06 Dec 2007 20:04:00 GMT</pubDate>

      <title>Silverlight Snow Effect)</title>

        <description><![CDATA[<P>Ever wanted snow on your screen?</P>
<P>&nbsp;</P>
<P>My good friend <A href="http://weblogs.asp.net/pschneider/">Peter Schneider</A> has just posted an old but nice effect made with Silverlight.</P>
<P>&nbsp;</P>
<P>Check it out <A href="http://weblogs.asp.net/pschneider/archive/2007/12/06/silverlight-snow-effect.aspx">here</A>! (Note: the source code can be found as attachment of the post!)</P>
<P>&nbsp;</P>
<P>&nbsp;</P>
<P>&nbsp;</P>]]></description>

      <link>/mdenkmaier/archive/silverlight-snow-effect/blogentry.aspx</link>

      <author>mdenkmaier</author>

    </item>
    <item>

    <pubDate>Mon, 03 Dec 2007 06:23:00 GMT</pubDate>

      <title>How To: Add a Copy/Move to Folder shortcut to explorer menu)</title>

        <description><![CDATA[<P>A major time saving extension for the standard windows eplorer menu is this "Copy/Move to Folder" explorer context menu shortcut.´</P>
<P>&nbsp;</P>
<P>Just save the following script to a file called SaveToFolderHack.reg:</P><FONT color=#0000ff size=2>
<P><FONT color=#0000ff size=2>Windows Registry Editor Version 5.00</FONT></P>
<P><FONT color=#800000 size=2>[HKEY_CLASSES_ROOT\AllFilesystemObjects\shellex\ContextMenuHandlers\{C2FBB630-2971-11D1-A18C-00C04FD75D13}]</P>
<P>[HKEY_CLASSES_ROOT\AllFilesystemObjects\shellex\ContextMenuHandlers\{C2FBB631-2971-11D1-A18C-00C04FD75D13}]</FONT></P>
<P>&nbsp;</P>
<P><STRONG>Note:</STRONG> <EM>The text should only be three lines so remove any line break before executing the script!</EM></P>
<P>&nbsp;</P>
<P>The result is shown below:</P>
<P>&nbsp;</P>
<P><IMG alt="" hspace=0 src="http://www.codebrothers.net/content/mdenkmaier/images/posts/copytoreghack.jpg" align=baseline border=0></P>
<P><EM>The new context menu items ("Copy to Folder.." and "Move to Folder...")</EM></P>
<P>&nbsp;</P>
<P><IMG alt="" hspace=0 src="http://www.codebrothers.net/content/mdenkmaier/images/posts/copytoreghack2.jpg" align=baseline border=0></P>
<P><EM>When you click on&nbsp;one of the items you will be prompted with a "Folder Choose Dialog" to choose the target destination.</EM></P>
<P>&nbsp;</P>
<P>Hope this helps...</P>
<P>&nbsp;</P></FONT>]]></description>

      <link>/mdenkmaier/archive/how-to-add-a-copymove-to-folder-shortcut-to-explorer-menu/blogentry.aspx</link>

      <author>mdenkmaier</author>

    </item>
    <item>

    <pubDate>Wed, 28 Nov 2007 06:46:00 GMT</pubDate>

      <title>Is the Visual Studio 2008 Javascript debugger crippled? )</title>

        <description><![CDATA[<P><A href="http://weblogs.asp.net/kdente">Kevin Dente</A> is discussing a little but annoying <A href="http://weblogs.asp.net/kdente/archive/2007/11/27/is-the-visual-studio-2008-javascript-debugger-crippled.aspx">problem regarding to the Javascript debugger</A> in the new Visual Studio 2008! </P>
<P>&nbsp;</P>
<P>Share this discussion...</P>
<P>&nbsp;</P>
<P>&nbsp;</P>]]></description>

      <link>/mdenkmaier/archive/is-the-visual-studio-2008-javascript-debugger-crippled/blogentry.aspx</link>

      <author>mdenkmaier</author>

    </item>
    <item>

    <pubDate>Mon, 19 Nov 2007 08:23:00 GMT</pubDate>

      <title>News: Microsoft Visual Studio 2008 available soon)</title>

        <description><![CDATA[<P>According to reports on the <A href="http://blogs.msdn.com/msdnsubscriptions/archive/2007/11/16/look-for-visual-studio-2008-downloads-on-top-subscriber-downloads-early-next-week.aspx">official MSDN Subscriptions Weblog</A> Microsoft will release Visual Studio 2008 this week.</P>
<P>&nbsp;</P>
<P>It will first be made available to MSDN Subscribers all others will follow...</P>
<P>&nbsp;</P>
<P><STRONG>UPDATE</STRONG>: Visual Studio was just released today! You just have to get it from MSDN and get started!</P>
<P>&nbsp;</P>]]></description>

      <link>/mdenkmaier/archive/news-microsoft-visual-studio-2008-available-soon/blogentry.aspx</link>

      <author>mdenkmaier</author>

    </item>
    <item>

    <pubDate>Tue, 06 Nov 2007 07:36:00 GMT</pubDate>

      <title>News: Powershell 2.0 CTP is out!)</title>

        <description><![CDATA[<P>The first CTP of Microsoft Powershell 2.0 is out right now!</P>
<P>&nbsp;</P>
<P>You can get your version here: <A href="http://www.microsoft.com/downloads/details.aspx?FamilyID=60deac2b-975b-41e6-9fa0-c2fd6aa6bc89&amp;displaylang=en">Powershell 2.0 CTP</A> </P>
<P>&nbsp;</P>
<P>Some of the features in this release:</P>
<P>&nbsp;</P>
<P>•&nbsp; PowerShell Remoting </P>
<P>•&nbsp; Graphical PowerShell </P>
<P>•&nbsp; ScriptCmdlets </P>
<P>•&nbsp; Restricted Runspaces </P>
<P>•&nbsp; RunspacePools </P>
<P>•&nbsp; Background Jobs </P>
<P>•&nbsp; Data Language </P>
<P>•&nbsp; Script Internationalization </P>
<P>•&nbsp; Script Debugging </P>
<P>•&nbsp; 24 New Cmdlets </P>
<P>•&nbsp; Parser Tokenizer API </P>
<P>•&nbsp; New PowerShell Hosting APIs </P>
<P>•&nbsp; Metadata APIs for Command and Parameters </P>
<P>&nbsp;</P>
<P>Some of the features mentioned require special settings on your maschine so please pay attention to the following posts:</P>
<P><BR><A href="http://blogs.msdn.com/powershell/archive/2007/11/06/what-s-new-in-ctp-of-powershell-2-0.aspx">What´s new? </A><BR><A href="http://blogs.msdn.com/powershell/archive/2007/11/02/ctp-versioning.aspx">Requirements <BR>Versioning</A></P>
<P>&nbsp;</P>
<P>Hope this helps!</P>
<P>&nbsp;</P>
<P>&nbsp;</P>]]></description>

      <link>/mdenkmaier/archive/news-powershell-20-ctp-is-out/blogentry.aspx</link>

      <author>mdenkmaier</author>

    </item>
    <item>

    <pubDate>Sun, 14 Oct 2007 09:34:00 GMT</pubDate>

      <title>How To: Resolving unexpected behavior and errors using SQL Server views)</title>

        <description><![CDATA[<P>Sometimes you have to create views which are based on other views or tables.</P>
<P>But there are some limitations and pitfalls when it comes to making changes in the structure of the underlying tables/views:</P>
<P>&nbsp;</P>
<P>- If a view depends on a table or view that was dropped, the Database Engine produces an error message when anyone tries to use the view. </P>
<P>- If a new table or view is created and the table structure does not change from the previous base table to replace the one dropped, the view again becomes usable. </P>
<P>- If the new table or view structure changes, the view must be dropped and re-created</P>
<P>- Instead of dropping and recreating the view you can also run sp_refreshview specifying the view name</P>
<P>&nbsp;</P>
<P>Syntax for sp_refreshview:</P>
<P>&nbsp;</P>
<P>sp_refreshview ’[your_viewname]’ </P>
<P>&nbsp;</P>
<P>Hope this helps!</P>
<P>&nbsp;</P>]]></description>

      <link>/mdenkmaier/archive/how-to-resolving-unexpected-behavior-and-errors-using-sql-server-views/blogentry.aspx</link>

      <author>mdenkmaier</author>

    </item>
    <item>

    <pubDate>Mon, 08 Oct 2007 06:58:00 GMT</pubDate>

      <title>How to: Display current database and object size)</title>

        <description><![CDATA[<P>I am often asked how to determine the current database size from SQL code.</P>
<P>&nbsp;</P>
<P>SQL Server gives you the system stored procedure <STRONG>sp_spaceused</STRONG>&nbsp;which does exactly this.</P>
<P>&nbsp;</P>
<P>To retrieve the current size of your database you could execute</P>
<P>&nbsp;</P><FONT color=#0000ff size=2>
<P>exec</FONT><FONT size=2> </FONT><FONT color=#800000 size=2>sp_spaceused</P></FONT>
<P>&nbsp;</P>
<P>in SQL Server Management studio or in the SQL Server console and you should get a resultset containing the current total rows count, the reserved disk space, the current space used by data and the space used by indexes.</P>
<P>&nbsp;</P>
<P>If you want to know the facts about a specific database object like a table you could execute the statemenmt:</P><FONT color=#0000ff size=2>
<P>&nbsp;</P>
<P>exec</FONT><FONT size=2> </FONT><FONT color=#800000 size=2>sp_spaceused ’&lt;your_tabgle_name&gt;’</P></FONT>
<P>&nbsp;</P>
<P>where &lt;your_table_name&gt; is the common table name of the&nbsp;desired table.</P>
<P>&nbsp;</P>
<P>The resultset will contain only facts about the specified database object.</P>
<P>&nbsp;</P>
<P>You could use the information to automatically shrink or expand your database disk files (if your sql server is not&nbsp;configured to do it itself yet!)&nbsp;&nbsp;or you could also hunt possible "space wasters" in you database!</P>
<P>&nbsp;</P>
<P>Hope this helps!</P>
<P>&nbsp;</P>
<P>&nbsp;</P>]]></description>

      <link>/mdenkmaier/archive/how-to-display-current-database-and-object-size/blogentry.aspx</link>

      <author>mdenkmaier</author>

    </item>
    <item>

    <pubDate>Tue, 25 Sep 2007 08:24:00 GMT</pubDate>

      <title>Welcome HALO 3!)</title>

        <description><![CDATA[<P>Halo 3 was published today in the US and will be released tomorrow in Europe!</P>
<P>Can you already see the ring (world)? ;-)</P>
<P>&nbsp;</P>
<P>&nbsp;</P>]]></description>

      <link>/mdenkmaier/archive/welcome-halo-3/blogentry.aspx</link>

      <author>mdenkmaier</author>

    </item>
    <item>

    <pubDate>Tue, 04 Sep 2007 08:18:00 GMT</pubDate>

      <title>Videos: Visual Studio 2008 Training Videos)</title>

        <description><![CDATA[<P>Microsoft is publishing tutorial videos on Visual Studio 2008 at <A href="http://msdn2.microsoft.com/en-us/vstudio/bb655906.aspx">http://msdn2.microsoft.com/en-us/vstudio/bb655906.aspx</A>&nbsp;!</P> <P>Watch Scott Guthrie and other Microsoft guys teaching the essentials to get up to speed with Visual Studio 2008.</P> <P>The site will be updated frequently so keep watching....</P> <P>&nbsp;</P>]]></description>

      <link>/mdenkmaier/archive/videos-visual-studio-2008-training-videos/blogentry.aspx</link>

      <author>mdenkmaier</author>

    </item>
    <item>

    <pubDate>Wed, 22 Aug 2007 06:25:00 GMT</pubDate>

      <title>How to: Getting a working Silverlight 1.1 Alpha development environment)</title>

        <description><![CDATA[<P>If you are new to Silverlight development or want to switch from Silverlight version 1.0 to 1.1 you should exactly follow these steps to ensure a working environment:</P> <P>&nbsp;</P> <P>1. Ensure that you have a clean <STRONG>VS.NET 2008 BETA2 build VPC</STRONG>/Installation. </P> <P>&nbsp;</P> <P>The VPC image can be found here: <A href="http://www.microsoft.com/downloads/details.aspx?FamilyId=3B72271C-E996-4989-898D-72D684966CE6&amp;displaylang=en">http://www.microsoft.com/downloads/details.aspx?FamilyId=3B72271C-E996-4989-898D-72D684966CE6&amp;displaylang=en</A></P> <P>&nbsp;</P> <P><STRONG>Remember: </STRONG>You also need the Visual Studio Code Name Orcas Base Image from&nbsp;<A href="http://download.microsoft.com/download/5/4/9/5499b008-8ae7-46f0-89ae-aeeb18df67ae/VSCTPBase.exe">here</A> in order to run the VPC.</P> <P>&nbsp;</P> <P>2. Download and install the <STRONG>Silverlight 1.1 runtime components</STRONG> from <A href="http://www.microsoft.com/silverlight/license-win-dev.aspx#2_10">http://www.microsoft.com/silverlight/license-win-dev.aspx#2_10</A></P> <P>&nbsp;</P> <P>3. Download and install the <STRONG>Microsoft Silverlight Tools Alpha Refresh for Visual Studio (July 2007)</STRONG> from <A href="http://www.microsoft.com/downloads/details.aspx?FamilyId=B52AEB39-1F10-49A6-85FC-A0A19CAC99AF&amp;displaylang=en">http://www.microsoft.com/downloads/details.aspx?FamilyId=B52AEB39-1F10-49A6-85FC-A0A19CAC99AF&amp;displaylang=en</A></P> <P>&nbsp;</P> <P><EM>Additionally you can install:</EM></P> <P>&nbsp;</P> <P>4. Download and the <STRONG>Microsoft Silverlight 1.1 Software Development Kit (SDK) for Alpha Refresh</STRONG> from <A href="http://msdn.microsoft.com/vstudio/eula.aspx?id=c8bf88e7-841c-43fd-c63d-379943617f36">http://msdn.microsoft.com/vstudio/eula.aspx?id=c8bf88e7-841c-43fd-c63d-379943617f36</A> </P> <P>&nbsp;</P> <P>5. Download and install <STRONG>Expression Blend 2 August Preview</STRONG> from <A href="http://www.microsoft.com/downloads/details.aspx?FamilyId=69540337-B619-4A47-AC27-52D8AF3A7830&amp;displaylang=en">http://www.microsoft.com/downloads/details.aspx?FamilyId=69540337-B619-4A47-AC27-52D8AF3A7830&amp;displaylang=en</A> </P> <P>&nbsp;</P> <P>6. <STRONG>Microsoft Expression Media Encoder Preview Update</STRONG>&nbsp; from <A href="http://go.microsoft.com/fwlink/?LinkID=89148&amp;clcid=0x409">http://go.microsoft.com/fwlink/?LinkID=89148&amp;clcid=0x409</A></P> <P>&nbsp;</P> <P>7. <STRONG>Microsoft Expression Design</STRONG> from <A href="http://go.microsoft.com/fwlink/?LinkID=79077&amp;clcid=0x409">http://go.microsoft.com/fwlink/?LinkID=79077&amp;clcid=0x409</A></P> <P>&nbsp;</P> <P><STRONG>NOTE:</STRONG> </P> <P>If you are not installing the runtime and tools in the given order you will experience several strange issues like the one described <A href="http://silverlight.net/forums/p/3491/10037.aspx">here</A>!</A></P> <P>&nbsp;</P> <P>If you experience any problems feel free to post a comment.</P> <P>&nbsp;</P> <P>&nbsp;</P>]]></description>

      <link>/mdenkmaier/archive/how-to-getting-a-working-silverlight-11-alpha-development-environment/blogentry.aspx</link>

      <author>mdenkmaier</author>

    </item>
    <item>

    <pubDate>Fri, 10 Aug 2007 08:49:00 GMT</pubDate>

      <title>How to: Hunting SQL Server Deadlocks and logging them to file)</title>

        <description><![CDATA[<P>The following describes the possible ways and the steps needed the get more details about SQL Server dead locks.</P>
<P><BR>The engine saves the information by default to the SQL Server error logs.</P>
<P>&nbsp;</P>
<P><STRONG>1. Use the deadlock graph</STRONG></P>
<P><STRONG><BR></STRONG>&nbsp;&nbsp; You can use the SQL server Profiler and enable the deadlock graph monitoring for a new profiling session.</P>
<P>&nbsp;</P>
<P><STRONG>2. Enable trace flags</STRONG></P>
<P><STRONG><BR></STRONG>&nbsp;&nbsp; By using trace flags SQL Server enables you to output more detailed data about some of the system events.<BR>&nbsp;&nbsp; When using the trace flag <STRONG>1204</STRONG> you will get detailed information about deadlocks in a more textual way.<BR>&nbsp;&nbsp; The trace flag <STRONG>1222</STRONG> gets you the same data but in a simple, but not XDS schema compatible XML way. </P>
<P>&nbsp;</P>
<P><BR>&nbsp;&nbsp;&nbsp;<BR>&nbsp;&nbsp; To enable a trace flag on SQL Server you could start the engine using the /T paramater to define the flag to be set to true.<BR>&nbsp;&nbsp; or you could execute the follwoing command: "<STRONG>DBCC TRACEON(1204)</STRONG>"</P>
<P><BR>&nbsp;&nbsp;&nbsp;<BR>&nbsp;&nbsp; To verify the current status of a specific trace flag you could execute the statement: "<STRONG>DBCC TRACESTATUS (xxx)</STRONG>".</P>
<P><BR>&nbsp;&nbsp; The statement "<STRONG>DBCC TRACESTATUS (1204)</STRONG>" would return the current value of the deadlock trace flag.</P>
<P>&nbsp;</P>
<P>&nbsp;</P>]]></description>

      <link>/mdenkmaier/archive/how-to-hunting-sql-server-deadlocks-and-logging-them-to-file/blogentry.aspx</link>

      <author>mdenkmaier</author>

    </item>
    <item>

    <pubDate>Wed, 27 Jun 2007 03:50:00 GMT</pubDate>

      <title>IIS7 on Windows Server 2008 Core)</title>

        <description><![CDATA[<P>Microsoft just released a new build of IIS7 and Windows 2008 Server which available for testing by Beta testers.&nbsp; </P>
<P>&nbsp;</P>
<P>This build includes updates and fixes made since the Beta 3 release earlier this year, and also includes the previously announced IIS7 on Server Core configuration.</P>
<P>&nbsp;</P>
<P>There is also a <A href="http://blogs.iis.net/metegokt/archive/2007/06/26/administering-iis7-on-server-core-installations-of-windows-server-2008.aspx">great article available </A>describing the steps needed to get IIS7 started on Windows Server Core.</P>
<P><STRONG></STRONG>&nbsp;</P>
<P><STRONG>UPDATE:</STRONG></P>
<P>&nbsp;</P>
<P>Currently there is no support for ASP.NET&nbsp;when using&nbsp;IIS7 on Windows Server Core because the .NET framework is not supported at all. </P>
<P>&nbsp;</P>
<P>Keep that in mind when thinking about using this II7 option!</P>
<P>&nbsp;</P>]]></description>

      <link>/mdenkmaier/archive/iis7-on-windows-server-2008-core/blogentry.aspx</link>

      <author>mdenkmaier</author>

    </item>
    <item>

    <pubDate>Wed, 13 Jun 2007 19:04:26 GMT</pubDate>

      <title>Whitepaper for IIS7 developers)</title>

        <description><![CDATA[<P><A href="http://blogs.catalystss.com/blogs/scott_seely/archive/2007/06/12/128.aspx">Scott Seely</A> just published a 30 page whitepaper on IIS7 which includes a great overview of many of the new IIS7 features and architecture details.</P>
<P>&nbsp;</P>
<P>Along with lots of great code samples for .NET developers this is especially helpful for developers who seek for information about .NET integration with IIS7 and how to take advantage of the new integrated HTTP pipeline.</P>
<P>&nbsp;</P>
<P>Get the whitepaper directly from here: <A href="http://www.catalystss.com/Articles/Advanced Development on IIS7.pdf">http://www.catalystss.com/Articles/Advanced Development on IIS7.pdf</A>&nbsp;or read about the <A href="http://www.iis.net/articles/view.aspx/IIS7/Hosting-Web-Applications/ASP-NET/ASP-NET-Integration-with-IIS7">ASP.NET Integration with IIS7</A> <BR>&nbsp; </P>
<P>&nbsp;</P>]]></description>

      <link>/mdenkmaier/archive/whitepaper-for-iis7-developers/blogentry.aspx</link>

      <author>mdenkmaier</author>

    </item>
    <item>

    <pubDate>Wed, 13 Jun 2007 06:56:00 GMT</pubDate>

      <title>Book Tip: Free Windows PowerShell Book )</title>

        <description><![CDATA[<P>A PowerShell book written by Microsoft Technology Advisor Frank Koch is now available for free.<BR>You are allowed to share it with friends and colleagues as long as you leave the book as it is.<BR>The book gives you a short introduction to the PowerShell basics and also the interactive part of Windows PowerShell as well as some hints how to use other objects like WMI, .NET or COM objects.</P>
<P>You can download your free copy here: <A href="http://download.microsoft.com/download/a/9/4/a94270c7-ed16-4c72-8280-658c66315719/Windows%20Powershell%20-%20EN.zip">http://download.microsoft.com/download/a/9/4/a94270c7-ed16-4c72-8280-658c66315719/Windows Powershell - EN.zip</A></P>]]></description>

      <link>/mdenkmaier/archive/book-tip-free-windows-powershell-book/blogentry.aspx</link>

      <author>mdenkmaier</author>

    </item>
 </channel>

</rss>
